/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --deep-wine: #6B1D3A;
  --wine-light: #8B2D52;
  --marigold: #F5A623;
  --marigold-soft: #FCEABB;
  --hot-pink: #E8447A;
  --cream: #FFF8F0;
  --ivory: #FFFFFF;
  --charcoal: #1A1A1A;
  --deep-teal: #1B6B5F;
  --gold: #C5973E;
  --gold-soft: #E7D2A0;
  --soft-pink: #FDE8EF;
  --text-primary: #2D2D2D;
  --text-muted: rgba(45, 45, 45, 0.65);
  --line: rgba(45, 45, 45, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Dancing Script', cursive;
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--cream);
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--deep-wine);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--marigold);
  font-weight: 600;
  font-family: var(--font-body);
}

.section-title {
  margin-bottom: 20px;
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
}

/* ==========================================================================
   2. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: var(--marigold);
  color: var(--charcoal);
  border-color: var(--marigold);
}

.btn-primary:hover {
  background-color: var(--deep-wine);
  color: var(--ivory);
  border-color: var(--deep-wine);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 29, 58, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: var(--deep-wine);
  border-color: var(--deep-wine);
}

.btn-ghost:hover {
  background-color: var(--deep-wine);
  color: var(--ivory);
  transform: translateY(-3px);
}

.btn-ghost-light {
  background-color: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background-color: var(--ivory);
  color: var(--deep-wine);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  border-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   3. Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #FDF4ED;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background-color: #FDF4ED;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(15px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.nav-brand img {
  height: clamp(55px, 6vw, 80px);
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--deep-wine);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nav-brand-text {
    display: none;
  }
}

.nav-links {
  display: none;
  gap: clamp(12px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.7;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--marigold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
  padding: 12px 28px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--cream);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 18px clamp(20px, 5vw, 60px);
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color 0.2s;
}

.mobile-menu a:hover {
  background-color: var(--soft-pink);
}

/* ==========================================================================
   4. Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--deep-wine);
  text-align: center;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B1D3A 0%, #4A1228 40%, #2D0A18 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Particle variations */
.particle:nth-child(1) { width: 8px; height: 8px; background: rgba(245, 166, 35, 0.6); left: 10%; animation: float-up 12s linear infinite; animation-delay: 0s; }
.particle:nth-child(2) { width: 12px; height: 12px; background: rgba(232, 68, 122, 0.4); left: 20%; animation: float-up-left 15s linear infinite; animation-delay: 2s; }
.particle:nth-child(3) { width: 6px; height: 6px; background: rgba(231, 210, 160, 0.5); left: 30%; animation: float-up 10s linear infinite; animation-delay: 1s; }
.particle:nth-child(4) { width: 10px; height: 10px; background: rgba(245, 166, 35, 0.6); left: 40%; animation: float-up-right 18s linear infinite; animation-delay: 4s; }
.particle:nth-child(5) { width: 4px; height: 4px; background: rgba(232, 68, 122, 0.4); left: 50%; animation: float-up 11s linear infinite; animation-delay: 0.5s; }
.particle:nth-child(6) { width: 9px; height: 9px; background: rgba(231, 210, 160, 0.5); left: 60%; animation: float-up-left 16s linear infinite; animation-delay: 3s; }
.particle:nth-child(7) { width: 11px; height: 11px; background: rgba(245, 166, 35, 0.6); left: 70%; animation: float-up 14s linear infinite; animation-delay: 2.5s; }
.particle:nth-child(8) { width: 5px; height: 5px; background: rgba(232, 68, 122, 0.4); left: 80%; animation: float-up-right 13s linear infinite; animation-delay: 1.5s; }
.particle:nth-child(9) { width: 7px; height: 7px; background: rgba(231, 210, 160, 0.5); left: 90%; animation: float-up 17s linear infinite; animation-delay: 5s; }
.particle:nth-child(10) { width: 12px; height: 12px; background: rgba(245, 166, 35, 0.6); left: 15%; animation: float-up-left 20s linear infinite; animation-delay: 6s; }
.particle:nth-child(11) { width: 6px; height: 6px; background: rgba(232, 68, 122, 0.4); left: 25%; animation: float-up 9s linear infinite; animation-delay: 0.2s; }
.particle:nth-child(12) { width: 10px; height: 10px; background: rgba(231, 210, 160, 0.5); left: 35%; animation: float-up-right 14s linear infinite; animation-delay: 3.5s; }
.particle:nth-child(13) { width: 8px; height: 8px; background: rgba(245, 166, 35, 0.6); left: 45%; animation: float-up 11s linear infinite; animation-delay: 1.2s; }
.particle:nth-child(14) { width: 5px; height: 5px; background: rgba(232, 68, 122, 0.4); left: 55%; animation: float-up-left 19s linear infinite; animation-delay: 4.5s; }
.particle:nth-child(15) { width: 11px; height: 11px; background: rgba(231, 210, 160, 0.5); left: 65%; animation: float-up 12s linear infinite; animation-delay: 2.2s; }
.particle:nth-child(16) { width: 7px; height: 7px; background: rgba(245, 166, 35, 0.6); left: 75%; animation: float-up-right 16s linear infinite; animation-delay: 5.5s; }
.particle:nth-child(17) { width: 9px; height: 9px; background: rgba(232, 68, 122, 0.4); left: 85%; animation: float-up 10s linear infinite; animation-delay: 0.8s; }
.particle:nth-child(18) { width: 4px; height: 4px; background: rgba(231, 210, 160, 0.5); left: 95%; animation: float-up-left 15s linear infinite; animation-delay: 3.8s; }
.particle:nth-child(19) { width: 10px; height: 10px; background: rgba(245, 166, 35, 0.6); left: 5%; animation: float-up 18s linear infinite; animation-delay: 7s; }
.particle:nth-child(20) { width: 6px; height: 6px; background: rgba(232, 68, 122, 0.4); left: 50%; animation: float-up-right 13s linear infinite; animation-delay: 2.8s; }

@keyframes float-up {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

@keyframes float-up-left {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(-30px); opacity: 0; }
}

@keyframes float-up-right {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero .eyebrow {
  color: var(--marigold-soft);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  color: var(--ivory);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--marigold);
  font-family: var(--font-accent);
  font-style: normal;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   5. Trust Strip
   ========================================================================== */
.trust-strip {
  background-color: var(--charcoal);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.trust-track {
  display: inline-block;
  animation: scroll-left 25s linear infinite;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.trust-track span {
  margin: 0 32px;
  opacity: 0.9;
}

.trust-track .highlight {
  color: var(--marigold);
  font-weight: 600;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   6. About Section
   ========================================================================== */
.about {
  background-color: var(--cream);
}

.about-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
  }
}

.about-devanagari {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.85;
  text-align: center;
}

@media (min-width: 900px) {
  .about-devanagari {
    text-align: left;
  }
}

.about-text .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 560px;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-accent {
  color: var(--deep-teal);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15em;
}

/* ==========================================================================
   7. Services
   ========================================================================== */
.services {
  background-color: var(--soft-pink);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--marigold), var(--hot-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--soft-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background-color: var(--marigold);
  color: var(--ivory);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--deep-wine);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.service-card .tagline {
  font-family: var(--font-accent);
  color: var(--deep-teal);
  font-size: 1rem;
  display: block;
  margin-bottom: 16px;
}

/* ==========================================================================
   8. Stats
   ========================================================================== */
.stats {
  background-color: var(--deep-wine);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-header h2 {
  color: var(--ivory);
}

.stats-header .eyebrow {
  color: var(--marigold-soft);
}

.stats-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--marigold);
  display: block;
  line-height: 1.1;
}

.stat-number .suffix {
  font-size: 0.7em;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  display: block;
}

.stat-item {
  position: relative;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* ==========================================================================
   9. Testimonials
   ========================================================================== */
.testimonials {
  background-color: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px 40px;
  text-align: center;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--marigold);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
  font-family: serif;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  max-width: 580px;
  margin: 0 auto 24px;
}

.testimonial-card .stars {
  color: var(--marigold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
  font-size: 1.1rem;
}

.testimonial-card .author {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--line);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active {
  background-color: var(--marigold);
  transform: scale(1.3);
}

/* ==========================================================================
   10. Process / How It Works
   ========================================================================== */
.process {
  background-color: var(--soft-pink);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-timeline {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--deep-wine);
  color: var(--marigold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background-color: var(--line);
    z-index: 1;
  }
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq {
  background-color: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--marigold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-question {
  color: var(--deep-wine);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   12. Contact
   ========================================================================== */
.contact {
  background-color: var(--soft-pink);
  color: var(--text-primary);
}

.contact-header {
  margin-bottom: 50px;
}

.contact-header .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--deep-wine);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* Left Column: Stacked Info Cards with Circular Icon Badges */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card-link:hover {
  transform: translateX(6px);
}

.info-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px; /* Changed from 50% to rounded square */
  background-color: var(--marigold-soft);
  color: var(--deep-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.2);
}

.info-card-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-wine);
  margin-bottom: 4px;
}

.info-card-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card-text a {
  color: var(--deep-wine);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-card-text a:hover {
  color: var(--marigold);
}

/* Right Column: Clean White Form Container Card */
.contact-form-card {
  background-color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107, 29, 58, 0.08);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  background-color: var(--cream);
  border: 1px solid rgba(45, 45, 45, 0.15);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--marigold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Custom Select & Date Picker inside White Card */
.custom-select-trigger,
.custom-date-trigger {
  background-color: var(--cream);
  border: 1px solid rgba(45, 45, 45, 0.15);
  border-radius: 16px;
  color: var(--text-primary);
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.custom-select-trigger:hover,
.custom-date-trigger:hover,
.custom-select-trigger:focus,
.custom-date-trigger:focus {
  border-color: var(--marigold);
  background-color: #ffffff;
}

.custom-select-value.placeholder,
.custom-date-value.placeholder {
  color: var(--text-muted);
}

.custom-select-value,
.custom-date-value {
  color: var(--text-primary);
}

.custom-select-arrow,
.custom-date-icon {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Premium Dropdown Styles */
.custom-select {
  position: relative;
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: var(--ivory);
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.custom-select.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-select-option:hover {
  background-color: var(--soft-pink);
  color: var(--deep-wine);
}

.custom-select-option.selected {
  background-color: rgba(107, 29, 58, 0.05);
  font-weight: 600;
  color: var(--deep-wine);
}

/* Premium Calendar Styles */
.custom-datepicker {
  position: relative;
}

.custom-calendar {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 40px);
  background-color: var(--ivory);
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-datepicker.open .custom-calendar {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-nav {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-nav:hover {
  background-color: var(--soft-pink);
  color: var(--deep-wine);
}

.calendar-month-year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--deep-wine);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  background: none;
  border: none;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}

.calendar-day:hover:not(.other-month) {
  background-color: var(--soft-pink);
  color: var(--deep-wine);
}

.calendar-day.other-month {
  color: rgba(45, 45, 45, 0.3);
  cursor: default;
}

.calendar-day.today {
  font-weight: 700;
  color: var(--marigold);
  border: 1px solid var(--marigold);
}

.calendar-day.selected {
  background-color: var(--marigold);
  color: var(--ivory);
  font-weight: 600;
  border: none;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.calendar-clear,
.calendar-today {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}

.calendar-today {
  color: var(--deep-wine);
}

.calendar-clear:hover,
.calendar-today:hover {
  color: var(--marigold);
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.site-footer {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 32px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 50px;
  }
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav-list a:hover {
  color: var(--marigold);
}

.reach-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.reach-icon {
  flex-shrink: 0;
  color: var(--marigold);
  margin-top: 3px;
}

.reach-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.reach-item a:hover {
  color: var(--marigold);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--marigold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   13.5 Sticky WhatsApp Button
   ========================================================================== */
.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.sticky-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #25D366;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sticky-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   14. Reveal Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   15. Focus styles
   ========================================================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
}

/* ==========================================================================
   16. Utility
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--deep-teal);
}
