/* ==========================================================================
   NIKKUNJ SHARRMA - LUXURY CRO VASTU CONSULTING DESIGN SYSTEM
   Apple-meets-Luxury Consulting Palette: White, Warm Cream, Soft Gold, Deep Forest Green, Charcoal
   ========================================================================== */

:root {
  /* Core Luxury Palette */
  --bg-main: #FAF8F5;
  /* Warm Ivory / Off-White */
  --bg-surface: #FFFFFF;
  /* Pure White */
  --bg-cream: #F3ECE2;
  /* Warm Beige Accent */
  --bg-cream-light: #F8F4ED;
  /* Ultra-soft Beige */
  --bg-dark: #0E1612;
  /* Deep Obsidian Slate */
  --bg-dark-surface: #141E1A;
  /* Rich Dark Surface */
  --bg-emerald-deep: #0D281D;
  /* Deep Forest Green (Luxury Trust) */
  --bg-emerald-light: rgba(13, 40, 29, 0.04);

  /* Typography Colors */
  --text-primary: #121816;
  /* Deep Charcoal */
  --text-secondary: #4A5550;
  /* Muted Slate Gray */
  --text-muted: #7E8C85;
  /* Subdued Caption */
  --text-light: #F7FAF8;
  /* Crisp White for Dark Surfaces */
  --text-light-muted: #A3B5AC;
  /* Muted White for Dark Surfaces */

  /* Luxury Gold Accents */
  --gold-primary: #C5A059;
  /* Signature Rich Gold */
  --gold-light: #E0C283;
  /* Soft Shimmer Gold */
  --gold-dark: #9A7730;
  /* Deep Antique Gold */
  --gold-gradient: linear-gradient(135deg, #DFBA73 0%, #C5A059 50%, #A88133 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(223, 186, 115, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
  --gold-glow: 0 10px 30px rgba(197, 160, 89, 0.28);
  --gold-glow-subtle: 0 4px 20px rgba(197, 160, 89, 0.12);

  /* Emerald Accents */
  --emerald-accent: #1C4D39;
  --emerald-gradient: linear-gradient(135deg, #13392A 0%, #0A2117 100%);

  /* Border & Glass Tokens */
  --border-light: rgba(18, 24, 22, 0.08);
  --border-subtle: rgba(18, 24, 22, 0.05);
  --border-gold: rgba(197, 160, 89, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-dark: rgba(14, 22, 18, 0.85);

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 12px 36px rgba(18, 24, 22, 0.05);
  --shadow-card-hover: 0 22px 50px rgba(18, 24, 22, 0.1);
  --shadow-elevated: 0 30px 70px rgba(18, 24, 22, 0.12);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-luxury);
  --transition-normal: 0.4s var(--ease-luxury);
  --transition-slow: 0.8s var(--ease-luxury);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Sacred Architecture Subtle Pattern Watermark */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.025) 0%, transparent 60%),
    radial-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  pointer-events: none;
  z-index: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
}

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

h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.68;
}

p.lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
  background: rgba(197, 160, 89, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.eyebrow i {
  font-size: 0.9em;
}


/* footer text color */

#footer-text-color {
  color: var(--text-secondary);
}


/* ==========================================================================
   CONTAINERS & STRUCTURAL UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

section {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.bg-cream {
  background-color: var(--bg-cream-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--text-light);
}

.bg-dark p {
  color: var(--text-light-muted);
}

/* ==========================================================================
   GLASSMORPHISM & LUXURY CARDS
   ========================================================================== */
.luxury-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(197, 160, 89, 0.3);
}

.luxury-card:hover::before {
  opacity: 1;
}

/* ==========================================================================
   BUTTONS & CTAs (CRO OPTIMIZED)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn i {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 80%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(197, 160, 89, 0.4);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background: #FAF8F5;
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.38);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #1C2722;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.08rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.top-bar-links a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #648983;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  padding: 5px 0;
}

.header.scrolled {
  padding: 10px 0;
  background: #648983;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-wrap:hover .logo-img {
  transform: scale(1.02);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 1.00rem;
  font-weight: 500;
  color: white;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-primary);
}

/* ==========================================================================
   HERO SECTION (CRO OPTIMIZED)
   ========================================================================== */
.hero-section {
  padding: var(--space-3xl) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}

/* Ambient Glow Orbs */
.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(13, 40, 29, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  margin-bottom: var(--space-md);
}

.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 580px;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-lg);
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-bullet i {
  color: var(--gold-primary);
  width: 17px;
  height: 17px;
}

/* Hero Premium Portrait Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -10px rgba(18, 24, 22, 0.16),
    0 0 0 1px rgba(197, 160, 89, 0.4),
    0 0 45px rgba(223, 186, 115, 0.28),
    0 0 80px rgba(197, 160, 89, 0.15);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background: var(--bg-cream);
}

.hero-image-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 32px 75px -10px rgba(18, 24, 22, 0.22),
    0 0 0 1px rgba(197, 160, 89, 0.55),
    0 0 55px rgba(223, 186, 115, 0.38),
    0 0 95px rgba(197, 160, 89, 0.22);
}

.hero-expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 28px;
  transition: transform 0.8s var(--ease-luxury);
}

.hero-image-frame:hover .hero-expert-img {
  transform: scale(1.03);
}

/* Subtle Dark Gradient Overlay at Bottom for Depth */
.hero-image-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(to top,
      rgba(14, 22, 18, 0.82) 0%,
      rgba(14, 22, 18, 0.45) 45%,
      rgba(14, 22, 18, 0.1) 75%,
      transparent 100%);
  pointer-events: none;
  border-radius: 0 0 28px 28px;
}

.hero-image-caption {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  z-index: 3;
  pointer-events: none;
}

.caption-glass {
  background: rgba(14, 22, 18, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
}

.caption-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.caption-sub {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ==========================================================================
   TRUST STRIP (CREDIBILITY SECTION)
   ========================================================================== */
.trust-strip-section {
  padding: var(--space-xl) 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-metric-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-right: 1px solid var(--border-light);
}

.trust-metric-item:last-child {
  border-right: none;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-cream-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow-subtle);
}

.trust-text h4 {
  font-size: 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 3px;
}

.trust-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ==========================================================================
   PAIN POINTS ("ARE YOU FACING THESE PROBLEMS?")
   ========================================================================== */
.problems-section {
  background: var(--bg-cream-light);
  position: relative;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.problem-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 0;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.problem-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-cream);
}

.problem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-normal);
}

.problem-card:hover .problem-img {
  transform: scale(1.04);
}

.problem-card-body {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.problem-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(223, 186, 115, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.problem-card h4 {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.problem-symptom-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #B91C1C;
  background: rgba(239, 68, 68, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.problems-cta-banner {
  background: var(--bg-emerald-deep);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.problems-cta-banner h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.problems-cta-banner p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin: 0;
}

.banner-action {
  flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE NIKKUNJ SHARMA (APPROACH & BENEFITS)
   ========================================================================== */
.why-us-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.why-card {
  background: linear-gradient(135deg, #DFBA73 0%, #C5A059 50%, #A88133 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  text-align: left;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card-hover);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-cream-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION (ELEGANT CARDS)
   ========================================================================== */
.services-section {
  background: var(--bg-cream-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.service-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-cream-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: var(--space-xs);
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-features li i {
  color: var(--gold-primary);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
}

.service-consult-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TRANSFORMATION (BEFORE VS AFTER)
   ========================================================================== */
.transformation-section {
  position: relative;
  background: #FFFFFF;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.trans-card {
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.trans-before {
  background: #FAF5F5;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.trans-after {
  background: #F4FAF6;
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  box-shadow: var(--shadow-card);
}

.trans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trans-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.tag-before {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.tag-after {
  background: rgba(34, 197, 94, 0.15);
  color: #16A34A;
}

.trans-list {
  list-style: none;
}

.trans-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 14px;
}

.trans-before .trans-list li {
  color: #6B7280;
}

.trans-before .trans-list li i {
  color: #EF4444;
  flex-shrink: 0;
}

.trans-after .trans-list li {
  color: var(--text-primary);
  font-weight: 500;
}

.trans-after .trans-list li i {
  color: #16A34A;
  flex-shrink: 0;
}

.trans-arrow-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-emerald-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow-subtle);
  margin: 0 auto;
}

/* ==========================================================================
   HOW IT WORKS (4-STEP TIMELINE)
   ========================================================================== */
.process-section {
  background: var(--bg-cream-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  margin-top: var(--space-xl);
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--border-light));
  z-index: 0;
}

.process-step {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card-hover);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-emerald-deep);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--gold-glow-subtle);
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   VIDEO INSIGHTS (REELS)
   ========================================================================== */
.reels-section {
  background: #FFFFFF;
  overflow: hidden;
}

.reels-swiper {
  padding: var(--space-lg) 0 var(--space-2xl) !important;
}

.reel-card {
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.reel-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
}

.reel-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-primary) !important;
  background: #FFFFFF !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid var(--border-light) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem !important;
  font-weight: bold;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: var(--bg-cream-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-emerald-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.client-details h4 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.client-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: normal;
  flex-grow: 1;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--space-md);
  align-self: flex-start;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(197, 160, 89, 0.45);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: var(--space-md);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  border: 1px solid var(--border-light);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-secondary);
}

/* ==========================================================================
   BOOKING FORM & FINAL CTA SECTION (HIGH CONVERSION)
   ========================================================================== */
.booking-section {
  background: #648983;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.booking-info h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.booking-info p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.booking-features-list {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.booking-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.booking-features-list li i {
  color: var(--gold-light);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.direct-connect-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.direct-connect-box h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.direct-channels {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.channel-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
}

/* Booking Form */
.booking-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--text-primary);
}

.form-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-header h3 {
  font-size: 1.55rem;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: #FFFFFF;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg2+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5550' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

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

.form-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xs);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.form-reassurance i {
  color: var(--gold-primary);
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: var(--space-xl);
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-success-msg h4 {
  color: #15803D;
  margin-bottom: var(--space-xs);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #ffffff;
  color: var(--text-light-muted);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo-img,
.footer-logo-img {
  height: 120px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: var(--space-md);
  display: block;
  transition: transform var(--transition-fast);
}

.footer-brand a:hover .footer-logo-img,
.footer-brand a:hover .logo-img {
  transform: scale(1.02);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

/* ==========================================================================
   FLOATING & MOBILE STICKY CTAS (CRO ESSENTIALS)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
}

.whatsapp-bubble {
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  position: relative;
}

.whatsapp-bubble:hover {
  transform: scale(1.08) translateY(-2px);
}

.floating-btn-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
  transition: transform var(--transition-fast);
  border-radius: 50%;
}

.whatsapp-bubble:hover .floating-btn-img {
  transform: scale(1.04);
}

.whatsapp-bubble .chat-icon-close {
  background: #FFFFFF;
  color: var(--text-primary, #121816);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #FFFFFF;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* 5s Auto-Greeting Popup Bubble */
.floating-greeting-bubble {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: #FFFFFF;
  color: var(--text-primary, #121816);
  padding: 10px 14px 10px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 24, 22, 0.16), 0 0 0 1px rgba(197, 160, 89, 0.35);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  pointer-events: none;
}

.floating-greeting-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.greeting-text {
  color: var(--text-primary, #121816);
  line-height: 1.2;
}

.greeting-arrow {
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-right: 1px solid rgba(197, 160, 89, 0.35);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

.greeting-close-btn {
  background: rgba(18, 24, 22, 0.06);
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary, #4A5550);
  padding: 0;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.greeting-close-btn:hover {
  background: rgba(18, 24, 22, 0.14);
  color: var(--text-primary, #121816);
}

.greeting-close-btn i {
  width: 12px;
  height: 12px;
}

/* Subtle Floating Button Attention Shake */
@keyframes buttonAttentionShake {
  0% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.08) rotate(-6deg); }
  30% { transform: scale(1.08) rotate(6deg); }
  45% { transform: scale(1.06) rotate(-4deg); }
  60% { transform: scale(1.04) rotate(4deg); }
  75% { transform: scale(1.02) rotate(-2deg); }
  90% { transform: scale(1.01) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.whatsapp-bubble.attention-shake {
  animation: buttonAttentionShake 0.75s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ==========================================================================
   PREMIUM LEAD-COLLECTION CHATBOT MODAL
   ========================================================================== */
.chatbot-panel {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 130px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(14, 22, 18, 0.22), 0 0 0 1px rgba(197, 160, 89, 0.35);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  pointer-events: none;
}

.chatbot-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  background: var(--bg-emerald-deep, #0D281D);
  color: #FFFFFF;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold-light, #E0C283);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.chatbot-avatar i {
  width: 20px;
  height: 20px;
}

.chatbot-status-dot {
  width: 9px;
  height: 9px;
  background-color: #22C55E;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid var(--bg-emerald-deep, #0D281D);
}

.chatbot-header-info h4 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.chatbot-status-text {
  font-size: 0.76rem;
  color: var(--gold-light, #E0C283);
  margin: 2px 0 0;
  letter-spacing: 0.02em;
}

.chatbot-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chatbot-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

.chatbot-close-btn i {
  width: 18px;
  height: 18px;
}

.chatbot-body {
  padding: 16px;
  background: #FAF8F5;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.chat-message-row {
  display: flex;
  width: 100%;
}

.chat-message-row.bot-message {
  justify-content: flex-start;
}

.chat-bubble {
  background: #FFFFFF;
  border: 1px solid var(--border-light, rgba(18, 24, 22, 0.08));
  border-radius: 14px 14px 14px 2px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 90%;
}

.chat-bubble p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-primary, #121816);
  margin: 0;
}

.chatbot-form-wrapper {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow: var(--shadow-subtle, 0 4px 20px rgba(0, 0, 0, 0.03));
}

.chatbot-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-form-group {
  position: relative;
}

.chat-form-control {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.88rem;
  border-radius: 8px;
  border: 1.5px solid var(--border-light, rgba(18, 24, 22, 0.08));
  background: #FAF8F5;
  color: var(--text-primary, #121816);
  outline: none;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.chat-form-control:focus {
  background: #FFFFFF;
  border-color: var(--gold-primary, #C5A059);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.18);
}

select.chat-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234A5550' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}

.chat-submit-btn {
  padding: 12px 18px;
  font-size: 0.92rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.chat-submit-btn i {
  width: 16px;
  height: 16px;
}

.chatbot-success-state {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: var(--shadow-subtle, 0 4px 20px rgba(0, 0, 0, 0.03));
}

.chat-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.chat-success-icon i {
  width: 26px;
  height: 26px;
}

.chatbot-success-state h4 {
  color: #15803D;
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.chat-success-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.chat-success-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.chat-success-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chat-success-meta i {
  color: var(--gold-primary);
  width: 13px;
  height: 13px;
}

.whatsapp-bubble {
  cursor: pointer;
  border: none;
  outline: none;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 10px var(--space-md);
  z-index: 98;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}

/* ==========================================================================
   ANIMATIONS & PERFORMANCE
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST TUNING)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-metric-item:nth-child(2) {
    border-right: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Carousel Pagination (Hidden on Desktop) */
.carousel-pagination {
  display: none;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-3xl) 0;
  }

  .top-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .trans-arrow-circle {
    transform: rotate(90deg);
    margin: var(--space-xs) auto;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-metric-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
  }

  .trust-metric-item:last-child {
    border-bottom: none;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .floating-whatsapp {
    bottom: 74px;
    right: 18px;
  }
}

/* ==========================================================================
   MOBILE-SPECIFIC ENHANCEMENTS (STRICTLY 320px - 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* Prevent Any Horizontal Overflow */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
  }

  .container {
    padding: 0 var(--space-md) !important;
    overflow: hidden;
  }

  /* ------------------------------------------------------------------------
     Hero Section Mobile Order (H1 -> Image -> Remaining Content)
     ------------------------------------------------------------------------ */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .hero-content {
    display: contents !important;
  }

  .hero-content .eyebrow {
    order: 1 !important;
    align-self: flex-start;
    margin-bottom: var(--space-sm) !important;
  }

  .hero-content .hero-headline {
    order: 2 !important;
    margin-bottom: var(--space-lg) !important;
  }

  .hero-image-wrapper {
    order: 3 !important;
    width: 100% !important;
    margin: 0 0 var(--space-xl) 0 !important;
  }

  .hero-image-frame {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px !important;
  }

  .hero-content .hero-subhead {
    order: 4 !important;
    margin-bottom: var(--space-lg) !important;
  }

  .hero-content .hero-cta-box {
    order: 5 !important;
    margin-bottom: var(--space-xl) !important;
  }

  .hero-content .hero-trust-bullets {
    order: 6 !important;
    width: 100% !important;
  }

  /* ------------------------------------------------------------------------
     1. Unseen Space Imbalances (.problems-grid) &
     2. The Modern Consulting Standard (.why-grid) &
     4. Client Experiences (.testimonials-grid)
     Horizontal 1-Card Carousel Sliders with Smooth Infinite Transition
     ------------------------------------------------------------------------ */
  .problems-grid,
  .why-grid,
  .testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: var(--space-md) !important;
    padding: 4px 0 10px 0 !important;
    gap: 0 !important;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    position: relative !important;
  }

  .problems-grid .problem-card,
  .why-grid .why-card,
  .testimonials-grid .testimonial-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
    opacity: 1 !important;
  }

  .problem-card-body {
    padding: var(--space-lg) var(--space-md) !important;
  }

  .problems-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-lg) !important;
  }

  .why-card {
    padding: var(--space-xl) var(--space-lg) !important;
  }

  .testimonial-card {
    padding: var(--space-xl) var(--space-lg) !important;
  }

  /* ------------------------------------------------------------------------
     3. Simple & Seamless (.process-grid)
     1-Card Carousel with Smooth Popup-Style (Scale / Fade / Subtle Slide) Transition
     ------------------------------------------------------------------------ */
  .process-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 220px;
    overflow: hidden !important;
    margin-bottom: var(--space-md) !important;
    padding: 4px 0 10px 0 !important;
    touch-action: pan-y pinch-zoom;
    gap: 0 !important;
  }

  .process-grid::before {
    display: none !important;
  }

  .process-grid .process-step {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: var(--space-xl) var(--space-lg) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.92) translateY(12px) !important;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s !important;
    pointer-events: none !important;
    z-index: 1;
  }

  .process-grid .process-step.carousel-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) translateY(0) !important;
    position: relative !important;
    pointer-events: auto !important;
    z-index: 2 !important;
  }

  /* ------------------------------------------------------------------------
     Luxury Carousel Pagination Dots (Mobile Only)
     ------------------------------------------------------------------------ */
  .carousel-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto var(--space-xl);
    padding: 4px 0;
    position: relative;
    z-index: 5;
    width: 100%;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.28);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .carousel-dot.active {
    width: 26px;
    border-radius: 6px;
    background: var(--gold-primary);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.4);
  }

  /* ------------------------------------------------------------------------
     5. Direct Advisory Section (.booking-section) Mobile Optimization
     ------------------------------------------------------------------------ */
  .booking-section {
    padding: var(--space-3xl) 0 !important;
  }

  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
  }

  .booking-info h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem) !important;
    line-height: 1.22 !important;
    margin-bottom: var(--space-sm);
    word-break: break-word;
  }

  .booking-info p {
    font-size: 0.96rem !important;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }

  .booking-features-list {
    margin-bottom: var(--space-xl);
    padding: 0;
  }

  .booking-features-list li {
    font-size: 0.92rem;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
  }

  .booking-features-list li i {
    margin-top: 3px;
    flex-shrink: 0;
  }

  .direct-connect-box {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
  }

  .direct-connect-box h4 {
    font-size: 0.95rem;
  }

  .direct-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: var(--space-sm);
  }

  .channel-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.88rem;
    box-sizing: border-box;
  }

  .booking-form-card {
    padding: 24px 18px !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-elevated);
    width: 100%;
    box-sizing: border-box;
  }

  .form-header {
    margin-bottom: var(--space-md);
  }

  .form-header h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }

  .form-header p {
    font-size: 0.84rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .form-control {
    padding: 12px 14px;
    font-size: 16px;
    /* 16px prevents iOS Safari auto-zoom on focus */
    border-radius: var(--radius-xs);
    box-sizing: border-box;
    width: 100%;
  }

  .booking-form .btn-primary {
    padding: 14px 16px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    width: 100%;
  }

  .form-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    font-size: 0.74rem;
    text-align: center;
    margin-top: var(--space-xs);
  }

  .form-reassurance span {
    white-space: nowrap;
  }

  /* ------------------------------------------------------------------------
     6. Footer Section Mobile Optimization
     Hide Direct Advisory and Client Services on mobile
     ------------------------------------------------------------------------ */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl) !important;
  }

  .footer-col-services,
  .footer-col-advisory {
    display: none !important;
  }

  /* ------------------------------------------------------------------------
     7. Mobile Lead-Collection Chatbot Modal & Greeting Bubble
     ------------------------------------------------------------------------ */
  .chatbot-panel {
    bottom: 142px !important;
    right: 14px !important;
    left: 14px !important;
    width: auto !important;
    max-width: calc(100vw - 28px) !important;
    max-height: calc(100vh - 155px) !important;
    border-radius: 18px !important;
  }

  .chat-form-control {
    font-size: 16px !important;
    /* 16px prevents iOS Safari auto-zoom on focus */
    padding: 11px 12px !important;
  }

  .floating-greeting-bubble {
    bottom: 72px !important;
    right: 0 !important;
    max-width: calc(100vw - 36px) !important;
    font-size: 0.86rem !important;
    padding: 9px 12px 9px 14px !important;
  }
}

@media (max-width: 360px) {
  .chatbot-panel {
    right: 8px !important;
    left: 8px !important;
    max-width: calc(100vw - 16px) !important;
  }

  .chatbot-body {
    padding: 12px !important;
  }

  .chatbot-form-wrapper {
    padding: 10px !important;
  }
}