/* 
==============================================
   BUREAU LAHJIRA - CSS DESIGN SYSTEM
============================================== 
*/

:root {
  /* Colors */
  --primary-gold: #B8956A;
  --accent-gold: #D4AF77;
  --dark-gold: #9D7A52;
  --light-cream: #F5F3EE;
  --grad-cream: #FAF8F3;
  --dark-brown: #4A3F35;
  --white: #FFFFFF;
  --muted-gray: #8B8B8B;
  
  /* Typography */
  --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-norm: all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.18);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  
  /* Container Widths */
  --max-width: 1280px;
  --nav-height: 70px;
}

/* ================== BASE RESET ================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height); /* For sticky navbar */
  font-size: 16px; /* 1rem = 16px */
}

body {
  font-family: var(--font-body);
  color: var(--dark-brown);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-norm);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================== TYPOGRAPHY ================== */
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
p { font-size: 1.125rem; }

.small-text { font-size: 0.875rem; }
.gold-text { color: var(--primary-gold); }
.white-text { color: var(--white); }
.text-muted { color: var(--muted-gray); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ================== LAYOUT UTILS ================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--grad-cream) 100%);
}

.full-width { width: 100%; }
.d-block { display: block; }
.hide { display: none !important; }

/* ================== BUTTONS ================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  border: border;
  transition: var(--transition-norm);
  background: transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--white);
  border: 1px solid var(--primary-gold);
  box-shadow: 0 4px 10px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(184, 149, 106, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-gold);
  border: none;
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn.large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-outline-small {
  padding: 8px 16px;
  font-size: 0.875rem;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  border-radius: var(--radius-sm);
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-norm);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: block;
  transition: var(--transition-norm);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-placeholder-icon {
  height: 45px;
  width: 120px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-brown);
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
}

.nav-menu .nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: rgba(74, 63, 53, 0.8);
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--dark-brown);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-norm);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.95rem;
  padding: 10px 20px;
}

.menu-toggle {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--dark-brown);
  cursor: pointer;
}

/* ================== MOBILE MENU ================== */
.mobile-only { display: none; }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100%;
  background-color: var(--white);
  padding: 60px 30px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.open .mobile-menu-panel {
  right: 0;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--dark-brown);
  cursor: pointer;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark-brown);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-bottom: 40px;
}

/* ================== HERO SECTION ================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--grad-cream) 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-gold) 1px, transparent 1px),
                    radial-gradient(var(--primary-gold) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0.05;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-gold);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 0; left: -50px; animation-duration: 14s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.eyebrow {
  display: block;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-subheadline {
  color: rgba(74, 63, 53, 0.8);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(74, 63, 53, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-visual {
  padding-left: 40px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
}

.placeholder-graphic {
  text-align: center;
  color: var(--primary-gold);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* ================== GENERAL SECTIONS ================== */
.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: block;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.125rem;
  color: rgba(74, 63, 53, 0.8);
  margin-top: 16px;
}

/* ================== PROBLEM SECTION ================== */
.problem-section {
  padding: 100px 20px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-norm);
  border: 1px solid rgba(0,0,0,0.03);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.problem-card p {
  font-size: 1rem;
  color: rgba(74, 63, 53, 0.8);
}

.transition-element {
  margin-top: 60px;
  text-align: center;
}

.gold-line {
  width: 100px;
  height: 2px;
  background: var(--primary-gold);
  margin: 0 auto 16px;
}

.transition-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary-gold);
}

/* ================== SERVICES SECTION ================== */
.services-section {
  padding: 120px 20px;
}

.services-grid {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  flex: 1;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--primary-gold);
  position: relative;
  transition: var(--transition-norm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-badge, .price-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-subtitle {
  font-size: 1rem;
  color: var(--primary-gold);
  font-style: italic;
  margin-bottom: 24px;
}

.service-desc {
  font-size: 1rem;
  color: rgba(74, 63, 53, 0.85);
  margin-bottom: 32px;
}

.check-list {
  margin-bottom: 32px;
}

.check-list li, .check-list-gold li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(74, 63, 53, 0.85);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.1em;
}

.pricing-preview {
  background: var(--light-cream);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  text-align: center;
}

.pricing-preview p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.inline-link {
  color: var(--primary-gold);
  font-size: 0.95rem;
  font-weight: 500;
}
.inline-link:hover { text-decoration: underline; }

.combi-banner {
  background: var(--grad-cream);
  padding: 24px;
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  border: 1px solid rgba(184, 149, 106, 0.2);
}

.combi-banner h4 { margin: 12px 0 8px; font-size: 1.125rem; }
.combi-badge { font-size: 0.875rem; color: var(--primary-gold); font-weight: 600; }

/* ================== ADDITIONAL SERVICES ================== */
.additional-services-section {
  padding: 100px 20px;
  background: var(--white);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.coming-card {
  background: var(--white);
  padding: 40px;
  border: 2px dashed var(--primary-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  opacity: 0.85;
  position: relative;
  transition: var(--transition-norm);
}

.coming-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.coming-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.coming-card p {
  font-size: 0.95rem;
  color: rgba(74, 63, 53, 0.8);
  margin-bottom: 20px;
}

.hover-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-norm);
  width: 100%;
}
.coming-card:hover .hover-btn {
  opacity: 1;
  transform: translateY(0);
}

.early-access-box {
  background: var(--light-cream);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 600px;
  margin: 60px auto 0;
  text-align: center;
}

.early-access-subbox {
  font-size: 0.95rem;
  color: rgba(74, 63, 53, 0.8);
  margin-bottom: 24px;
}

.early-access-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.early-access-form input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.early-access-form input:focus { border-color: var(--primary-gold); box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.1); }

.disclaimer-small { font-size: 0.75rem; color: rgba(74, 63, 53, 0.6); }

.section-disclaimer {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(74, 63, 53, 0.7);
}

/* ================== HOW IT WORKS ================== */
.howitworks-section {
  padding: 120px 20px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--primary-gold);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  text-align: center;
  max-width: 300px;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--light-cream);
}

.timeline-step p {
  font-size: 0.95rem;
  color: rgba(74, 63, 53, 0.85);
  margin-bottom: 16px;
}

.duration-badge {
  background: var(--grad-cream);
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* ================== TRUST SECTION ================== */
.trust-section { padding: 100px 20px; }

.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-col {
  transition: var(--transition-norm);
}
.trust-col:hover { transform: translateY(-8px); }
.trust-col p { font-size: 1rem; color: rgba(74, 63, 53, 0.85); }

.testimonials { margin-top: 80px; }
.testimonials-heading { text-align: center; margin-bottom: 40px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-placeholder {
  background: var(--light-cream);
  border: 2px dashed rgba(184, 149, 106, 0.4);
  padding: 30px;
  border-radius: var(--radius-md);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.t-placeholder-title { font-size: 1.125rem; font-style: italic; color: rgba(74, 63, 53, 0.6); margin-top: 16px; }
.t-placeholder-sub { font-size: 0.875rem; color: rgba(74, 63, 53, 0.5); margin-top: 8px; }

/* ================== PRICING SECTION ================== */
.pricing-section { padding: 120px 20px; }

.pricing-container {
  display: flex;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.divider-or {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10;
}

.price-card {
  flex: 1;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-norm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.price-header { text-align: center; margin-bottom: 24px; }
.price-display { margin-top: 16px; }
.amount { font-size: 3.5rem; color: var(--primary-gold); font-weight: 700; line-height: 1; }
.period { font-size: 1.25rem; color: rgba(74, 63, 53, 0.7); margin-left: 8px; }
.price-label { font-size: 0.875rem; color: rgba(74, 63, 53, 0.6); margin-top: 8px; }

.price-divider {
  width: 60px;
  height: 2px;
  background: var(--primary-gold);
  margin: 24px auto;
}

.sec-price { text-align: center; }
.sec-main { font-size: 1.125rem; font-weight: 600; }
.sec-amount { font-size: 1rem; color: rgba(74, 63, 53, 0.8); }
.sec-disclaimer { font-size: 0.75rem; color: rgba(74, 63, 53, 0.6); font-style: italic; margin-top: 4px; }

.price-features h4 { font-size: 1rem; margin-bottom: 16px; }
.check-list-gold li::before { content: '✓'; color: var(--primary-gold); position: absolute; left: 0; font-weight: bold; }

.guarantee-box {
  background: var(--grad-cream);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-gold);
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee-box p { font-size: 0.95rem; line-height: 1.5; }

.addon-list li {
  font-size: 0.875rem;
  color: rgba(74, 63, 53, 0.7);
  margin-bottom: 6px;
}
.inline-link-gold { color: var(--primary-gold); font-size: 0.875rem; font-weight: 500; }
.inline-link-gold:hover { text-decoration: underline; }
.bottom-note { font-size: 0.75rem; color: rgba(74, 63, 53, 0.6); font-style: italic; text-align: center; margin-top: 16px; }

.combi-deal-box {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.combi-left { flex: 0 0 60%; color: var(--white); }
.combi-heading { font-size: 1.75rem; margin-bottom: 12px; }
.combi-desc { font-size: 1rem; opacity: 0.95; margin-bottom: 16px; }
.combi-prices p { margin-bottom: 4px; }
.c-p1 { font-size: 1.125rem; font-weight: 600; }
.c-p2 { font-size: 1.125rem; font-weight: 600; }
.strikethrough { text-decoration: line-through; opacity: 0.7; font-weight: 400; margin-right: 8px; }
.c-p3 { font-size: 0.95rem; opacity: 0.85; }
.c-benefit { font-size: 0.875rem; opacity: 0.8; font-style: italic; margin-top: 12px; }
.combi-right { flex: 0 0 calc(40% - 40px); display: flex; justify-content: flex-end; }

/* ================== CONTACT SECTION ================== */
.contact-section {
  background-color: var(--dark-brown);
  position: relative;
  padding: 100px 20px;
  color: var(--white);
}

.contact-texture {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.contact-content-wrap { position: relative; z-index: 1; max-width: 1000px; }

.contact-eyebrow { color: var(--accent-gold); text-transform: uppercase; font-size: 0.875rem; letter-spacing: 2px; font-weight: 600; display: block; margin-bottom: 16px; }
.contact-h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-p { font-size: 1.125rem; opacity: 0.9; margin: 0 auto 50px; max-width: 700px; }

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition-norm);
}
.contact-glass-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-4px); }

.white-p { font-size: 0.95rem; opacity: 0.85; }
.tel-link { font-size: 1.5rem; font-weight: 600; color: var(--accent-gold); }
.tel-link:hover { color: var(--white); }
.divider-text { font-size: 0.875rem; opacity: 0.7; }
.mail-link { font-size: 1.125rem; color: var(--white); opacity: 0.9; }
.mail-link:hover { color: var(--accent-gold); }

.contact-trust-elements {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
.ct-element {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ================== FOOTER ================== */
.main-footer {
  background-color: var(--light-cream);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 35% 25% 40%;
  gap: 40px;
}

.footer-logo-placeholder {
  width: 200px;
  height: 60px;
  background: rgba(184, 149, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--primary-gold);
  border: 1px dashed rgba(184, 149, 106, 0.4);
}

.f-tagline { font-size: 1rem; color: rgba(74, 63, 53, 0.8); }
.f-socials { display: flex; gap: 16px; margin-top: 24px; }
.f-socials a:hover svg path { opacity: 0.8; }

.f-heading { font-size: 1rem; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.f-links li { margin-bottom: 12px; }
.f-links a { font-size: 0.95rem; color: rgba(74, 63, 53, 0.8); }
.f-links a:hover { color: var(--primary-gold); padding-left: 4px; }

.f-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(74, 63, 53, 0.85);
}
.f-contact-list a:hover { color: var(--primary-gold); }
.f-hours { font-size: 0.875rem; color: rgba(74, 63, 53, 0.7); }

.f-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(74, 63, 53, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-copy, .f-legal a { font-size: 0.875rem; color: rgba(74, 63, 53, 0.7); }
.f-legal a:hover { color: var(--primary-gold); }

/* ================== COMPONENTS ================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 990;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background-color: var(--dark-gold); transform: translateY(-4px); }

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 3000;
  display: flex;
  justify-content: center;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-width);
  width: 100%;
}
.cookie-content p { font-size: 0.9rem; flex: 1; }
.cookie-btns { display: flex; align-items: center; gap: 16px; }
.cookie-link { font-size: 0.875rem; text-decoration: underline; }
.cookie-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted-gray); }

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  width: 90%; max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.loader-wrapper {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(184, 149, 106, 0.2);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================== SCROLL ANIMATIONS ================== */
.scroll-anim { opacity: 0; transition: var(--transition-slow); }
.scroll-anim.fade-in { opacity: 0; }
.scroll-anim.slide-up { transform: translateY(30px); }
.scroll-anim.in-view.fade-in { opacity: 1; }
.scroll-anim.in-view.slide-up { transform: translateY(0); }

/* Initial load animations */
.animate-fade-in { animation: fadeIn 0.8s ease forwards; opacity: 0; }
.animate-fade-slide-up { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(30px); }
.animate-fade-slide-right { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateX(30px); }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideRight { to { opacity: 1; transform: translateX(0); } }

/* ================== RESPONSIVE (MEDIA QUERIES) ================== */
/* Tablets & Large Mobile (Under 1024px) */
@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subheadline { margin: 20px auto; }
  .hero-buttons { justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-visual { padding-left: 0; margin-top: 40px; }
  
  .problem-grid, .testimonials-grid, .additional-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .pricing-container { flex-direction: column; }
  .trust-features { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile (Under 768px) */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 2rem; }
  
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
  
  .hero-section { padding-top: 100px; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons btn { width: 100%; }
  
  .problem-grid, .testimonials-grid, .additional-grid { grid-template-columns: 1fr; }
  
  .timeline { flex-direction: column; align-items: flex-start; padding-left: 20px; }
  .timeline-line { top: 0; bottom: 0; left: 40px; width: 2px; height: auto; border-top: none; border-left: 2px dashed var(--primary-gold); }
  .timeline-step { text-align: left; max-width: 100%; margin-bottom: 40px; display: flex; flex-direction: column; align-items: flex-start; }
  .timeline-step .icon-wrapper { margin-left: 0; }
  
  .combi-deal-box { flex-direction: column; align-items: flex-start; }
  .combi-right { justify-content: flex-start; width: 100%; }
  
  .contact-options { grid-template-columns: 1fr; }
  .contact-trust-elements { flex-direction: column; align-items: center; gap: 20px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .f-bottom { flex-direction: column; gap: 20px; }
  
  .sticky-cta { display: block !important; }
  
  .cookie-content { flex-direction: column; text-align: center; gap: 16px; min-width: unset; }
  .cookie-btns { margin: 0 auto; }
}
