/* ============================================================
   NANDA CA — EXACT BRAND LUXURY DESIGN SYSTEM
   Deep Navy + Metallic Gold + Soft White
   Fully Responsive Architecture (Mobile 320px -> 4K Desktop)
   ============================================================ */

:root {
  /* Exact Primary Navy Palette */
  --navy-primary: #02172D;   /* rgb(2, 23, 45) - Main Background */
  --navy-dark: #021526;      /* Cards, elevated components */
  --navy-deep: #011121;      /* Header on scroll, dark sections, footer */
  --navy-very-dark: #010C19; /* CTA zones, deepest overlays */

  /* Metallic Gold Palette (Strictly Metallic, Never Pure Yellow) */
  --gold-primary: #C9A45C;    /* Main metallic gold */
  --gold-champagne: #E2C98A;  /* Light champagne gold */
  --gold-dark: #8C6A32;       /* Dark metallic bronze/gold */
  --gold-highlight: #F0D99A;  /* Warm gold highlight */
  --gold-sheen: #FFF2D1;      /* High-reflective specular metallic gold */
  --gold-bronze: #684E1E;     /* Deep metallic shadow */
  
  /* WhatsApp Official Brand Color */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Metallic Gold Multi-Stop Gradients */
  --gold-gradient: linear-gradient(135deg, #FFF2D1 0%, #E2C98A 25%, #C9A45C 55%, #8C6A32 85%, #E2C98A 100%);
  --gold-gradient-subtle: linear-gradient(135deg, #F0D99A 0%, #C9A45C 50%, #8C6A32 100%);
  --gold-gradient-horizontal: linear-gradient(90deg, #8C6A32 0%, #C9A45C 25%, #FFF2D1 50%, #C9A45C 75%, #8C6A32 100%);
  --gold-border-metallic: linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 65%, #8C6A32 90%, #E2C98A 100%);
  --gold-glow: 0 0 22px rgba(201, 164, 92, 0.4);
  --gold-glow-intense: 0 0 30px rgba(240, 217, 154, 0.55);
  --gold-border-subtle: rgba(201, 164, 92, 0.28);
  --gold-border-focus: rgba(226, 201, 138, 0.7);

  /* Exact Text Colours */
  --text-white: #FFFFFF;
  --text-soft: #F5F5F2;
  --text-secondary: #D5D8DC;
  --text-muted: #AEB6BF;

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

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-primary);
  color: var(--text-soft);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  background-color: var(--navy-primary);
  color: var(--text-soft);
  line-height: 1.65;
  overflow-x: clip;
  position: relative;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2.5rem);
  padding-right: clamp(1rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-very-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Table Responsive Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

/* ============================================================
   TYPOGRAPHY & HEADINGS (Fluid & Balanced)
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

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

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 2.6vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0.04em, 0.1vw, 0.1em);
  color: var(--gold-champagne);
  background: linear-gradient(rgba(2, 23, 45, 0.9), rgba(2, 23, 45, 0.9)) padding-box,
              linear-gradient(135deg, rgba(255, 242, 209, 0.6) 0%, rgba(201, 164, 92, 0.8) 50%, rgba(140, 106, 50, 0.4) 100%) border-box;
  border: 1px solid transparent;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(1, 12, 25, 0.5);
}

.section-label span {
  white-space: nowrap;
}

.section-label i {
  color: var(--gold-highlight);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.65rem, 3.2vw, 2.9rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.section-desc {
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ============================================================
   BUTTONS (Full Mobile Protection: No Awkward Breaks)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Primary Button: High-End Metallic Gold with Specular Highlight */
.btn-primary {
  background: linear-gradient(135deg, #FFF2D1 0%, #F0D99A 25%, #C9A45C 60%, #8C6A32 100%);
  color: #02172D;
  border: 1px solid rgba(255, 242, 209, 0.75);
  box-shadow: 0 4px 18px rgba(201, 164, 92, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 25%, #E2C98A 60%, #C9A45C 100%);
  border-color: #FFFFFF;
  box-shadow: 0 0 25px rgba(201, 164, 92, 0.55), 0 4px 15px rgba(1, 12, 25, 0.6);
  transform: translateY(-2px);
  color: var(--navy-deep);
}

/* Secondary Button: Metallic Gradient Border on Navy */
.btn-secondary {
  background: linear-gradient(rgba(2, 23, 45, 0.85), rgba(2, 23, 45, 0.85)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 60%, #8C6A32 90%, #E2C98A 100%) border-box;
  border: 1px solid transparent;
  color: var(--gold-champagne);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(1, 12, 25, 0.5);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 25%, #E2C98A 60%, #C9A45C 100%) !important;
  border: 1px solid #FFF2D1 !important;
  color: #011121 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(201, 164, 92, 0.45);
  transform: translateY(-2px);
}

.btn-secondary:hover i {
  color: #011121 !important;
}

/* Hero & Services Secondary Buttons (Call Now, View All Services, Explore, Category Filters): 
   Pulse Effect on Hover without Color Shift — Icons and Text STAY Radiant Gold (NEVER turn black) */
.hero-btn-services,
.hero-btn-call,
.hero-btn-explore,
.hero-actions .btn-secondary,
.services-hero-actions .btn-secondary,
#services .btn-secondary,
.services-category-nav .btn-secondary,
.btn-explore-services,
.btn-pulse {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.hero-btn-services:hover,
.hero-btn-call:hover,
.hero-btn-explore:hover,
.hero-actions .btn-secondary:hover,
.services-hero-actions .btn-secondary:hover,
#services .btn-secondary:hover,
.services-category-nav .btn-secondary:hover,
.btn-explore-services:hover,
.btn-pulse:hover {
  /* Maintain luxury navy background and gold border: no disruptive color shift */
  background: linear-gradient(rgba(2, 23, 45, 0.88), rgba(2, 23, 45, 0.88)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 60%, #8C6A32 90%, #E2C98A 100%) border-box !important;
  color: var(--gold-champagne) !important;
  border: 1px solid transparent !important;
  transform: translateY(-2px);
  animation: goldPulseGlow 1.6s infinite ease-in-out;
}

/* Explicitly prevent icons from turning black on hover in Hero and Services buttons */
.hero-btn-services:hover i,
.hero-btn-call:hover i,
.hero-btn-explore:hover i,
.hero-actions .btn-secondary:hover i,
.services-hero-actions .btn-secondary:hover i,
#services .btn-secondary:hover i,
.services-category-nav .btn-secondary:hover i,
.btn-explore-services:hover i,
.btn-pulse:hover i {
  color: var(--gold-champagne) !important;
}

@keyframes goldPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.7), 0 4px 15px rgba(1, 12, 25, 0.6);
  }
  50% {
    box-shadow: 0 0 16px 4px rgba(226, 201, 138, 0.65), 0 4px 22px rgba(201, 164, 92, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 164, 92, 0), 0 4px 15px rgba(1, 12, 25, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 164, 92, 0), 0 4px 15px rgba(1, 12, 25, 0.6);
  }
}

/* Single-Line Mobile Heading Enforcement */
.nowrap-phrase {
  white-space: nowrap;
  display: inline;
}

@media (max-width: 540px) {
  .section-title .nowrap-phrase {
    white-space: nowrap !important;
    display: inline-block;
    font-size: clamp(1.15rem, 4.8vw, 1.55rem);
    line-height: 1.25;
  }
}

@media (max-width: 360px) {
  .section-title .nowrap-phrase {
    white-space: nowrap !important;
    display: inline-block;
    font-size: clamp(1.02rem, 4.5vw, 1.22rem);
    letter-spacing: -0.01em;
  }
}


/* WhatsApp Dedicated Action Button */
.btn-whatsapp-brand {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-brand:hover {
  background: #1eb956;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* Call Dedicated Action Button beside Category in services.html along with WhatsApp:
   On hover, text colour and icon change to dark (#011121) on top of glowing metallic gold gradient */
.btn-call-brand {
  background: linear-gradient(rgba(2, 23, 45, 0.9), rgba(2, 23, 45, 0.9)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  color: var(--gold-champagne);
  transition: all var(--transition-fast);
}

.btn-call-brand:hover,
.category-header-actions .btn-call-brand:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 25%, #E2C98A 60%, #C9A45C 100%) !important;
  border: 1px solid #FFF2D1 !important;
  color: #011121 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(201, 164, 92, 0.55), 0 4px 15px rgba(1, 12, 25, 0.6);
  transform: translateY(-2px);
}

.btn-call-brand:hover i,
.category-header-actions .btn-call-brand:hover i {
  color: #011121 !important;
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.8rem;
  min-height: 40px;
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-bar {
  background-color: var(--navy-very-dark);
  border-bottom: 1px solid rgba(201, 164, 92, 0.15);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item i {
  color: var(--gold-primary);
  font-size: 0.82rem;
}

.top-bar-item a:hover {
  color: var(--gold-champagne);
}

.badge-firm {
  background: rgba(201, 164, 92, 0.15);
  color: var(--gold-champagne);
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.72rem;
  border: 1px solid rgba(201, 164, 92, 0.3);
  white-space: nowrap;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--navy-primary);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background-color: var(--navy-deep);
  border-bottom-color: rgba(201, 164, 92, 0.3);
  box-shadow: 0 10px 30px rgba(1, 12, 25, 0.85);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: height var(--transition-smooth);
}
.site-header.scrolled .logo-img {
  height: 50px;
}
.site-footer .logo-img {
  height: 62px;
}


/* Hide duplicate text brand name when logo image is present */
.site-logo .logo-img + .logo-text-group {
  display: none;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 15%, #E2C98A 35%, #C9A45C 58%, #F0D99A 78%, #8C6A32 92%, #C9A45C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-champagne); /* Fallback */
  line-height: 1.15;
  white-space: nowrap;
  filter: drop-shadow(0 2px 8px rgba(201, 164, 92, 0.45));
  transition: all var(--transition-fast);
  display: inline-block;
}

.site-logo:hover .logo-title {
  filter: drop-shadow(0 2px 16px rgba(240, 217, 154, 0.8));
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #E2C98A 0%, #FFF2D1 40%, #C9A45C 75%, #8C6A32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-champagne); /* Fallback */
  white-space: nowrap;
  opacity: 0.95;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: var(--gold-champagne);
}

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

.nav-link.active {
  color: var(--gold-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border-subtle);
  color: var(--gold-champagne);
  padding: 0.5rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  min-width: 44px;
  min-height: 44px;
}

/* ============================================================
   HERO SECTION (Clean video + Ambient Gold Particles)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-primary);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--navy-primary);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

/* Deep Navy Multi-Stop Overlay - Tuned for greater video visibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(2, 23, 45, 0.78) 0%,
    rgba(2, 21, 38, 0.72) 45%,
    rgba(1, 17, 33, 0.82) 75%,
    rgba(1, 12, 25, 0.88) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(rgba(2, 21, 38, 0.92), rgba(2, 21, 38, 0.92)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 60%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  border-left: 3px solid var(--gold-highlight);
  padding: 0.36rem 0.75rem;
  border-radius: 4px;
  font-size: clamp(0.55rem, 2.6vw, 0.8rem);
  font-weight: 600;
  letter-spacing: clamp(0.02em, 0.08vw, 0.06em);
  color: var(--gold-champagne);
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 20px rgba(1, 12, 25, 0.6), 0 0 12px rgba(201, 164, 92, 0.18);
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-badge span {
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(1.75rem, 5.2vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.35rem;
  line-height: 1.2;
}

/* Radiant Metallic Gold Headline with Luminous Sheen */
.hero-title .text-gold-gradient {
  background: linear-gradient(
    120deg,
    #E2C98A 0%,
    #FFF8E7 20%,
    #C9A45C 40%,
    #FFF2D1 60%,
    #F0D99A 80%,
    #E2C98A 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(201, 164, 92, 0.45));
  animation: metallicGoldShine 6s linear infinite;
  display: inline-block;
}

@keyframes metallicGoldShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(1, 12, 25, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

/* Centered Stats Bar on Desktop & Mobile */
.hero-stats-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 164, 92, 0.22);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-divider {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(201, 164, 92, 0.05) 0%, rgba(201, 164, 92, 0.65) 50%, rgba(201, 164, 92, 0.05) 100%);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.15;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(0.74rem, 1.1vw, 0.82rem);
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

/* ============================================================
   GOLD WAVE SECTION DIVIDERS
   ============================================================ */
.gold-divider-wrapper {
  position: relative;
  width: 100%;
  height: 48px;
  overflow: hidden;
  z-index: 5;
  margin-top: -24px;
  margin-bottom: -24px;
  pointer-events: none;
}

.gold-divider-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   SECTIONS & ELEVATIONS
   ============================================================ */
.section-dark-primary {
  background-color: var(--navy-primary);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-deep-navy {
  background-color: var(--navy-deep);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-very-dark {
  background-color: var(--navy-very-dark);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

/* Feature Pillars */
.feature-pillar-card {
  background: var(--navy-dark);
  border: 1px solid var(--gold-border-subtle);
  border-left: 4px solid var(--gold-primary);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.feature-pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(4px);
  background: rgba(2, 21, 38, 0.95);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-highlight);
  margin-bottom: 0.4rem;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-white);
  margin-bottom: 0.45rem;
}

.pillar-desc {
  font-size: clamp(0.85rem, 1.1vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   EXPANDED SERVICE CARDS WITH IMAGES & DIRECT BOOKING
   ============================================================ */
.service-card-luxury {
  background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
              linear-gradient(135deg, rgba(255, 242, 209, 0.35) 0%, rgba(201, 164, 92, 0.28) 40%, rgba(140, 106, 50, 0.18) 75%, rgba(226, 201, 138, 0.35) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 25px rgba(1, 12, 25, 0.6);
  box-sizing: border-box;
}

.service-card-luxury:hover {
  transform: translateY(-5px);
  background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  box-shadow: 0 20px 40px rgba(1, 12, 25, 0.85), 0 0 22px rgba(201, 164, 92, 0.25);
}

.service-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-luxury:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(2, 23, 45, 0.9);
  border: 1px solid var(--gold-primary);
  color: var(--gold-highlight);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.service-card-body {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid var(--gold-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--gold-champagne);
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Comprehensive Sub-services Checklist with Ticks */
.sub-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 0.95rem;
  background: rgba(1, 17, 33, 0.6);
  border-radius: 6px;
  border: 1px solid rgba(201, 164, 92, 0.12);
  flex-grow: 1;
}

.sub-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.sub-service-item i {
  color: var(--gold-primary);
  font-size: 0.82rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Service Card Action Buttons (Responsive 2-Col + Stacked Inquire) */
.card-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.card-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.65rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.card-btn-whatsapp:hover {
  background: #1eb956;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.card-btn-call {
  background: linear-gradient(var(--navy-primary), var(--navy-primary)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  color: var(--gold-champagne);
  border-radius: 4px;
  padding: 0.65rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  box-sizing: border-box;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(1, 12, 25, 0.4);
}

.card-btn-call:hover {
  background: linear-gradient(rgba(2, 21, 38, 0.92), rgba(2, 21, 38, 0.92)) padding-box,
              linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 30%, #E2C98A 70%, #C9A45C 100%) border-box !important;
  border: 1px solid transparent !important;
  color: var(--gold-champagne) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 16px rgba(201, 164, 92, 0.55), 0 4px 15px rgba(1, 12, 25, 0.6);
  transform: translateY(-2px);
}

.card-btn-call:hover i {
  color: var(--gold-champagne) !important;
}

.card-btn-inquire {
  grid-column: 1 / -1;
  background: linear-gradient(rgba(2, 21, 38, 0.8), rgba(2, 21, 38, 0.8)) padding-box,
              linear-gradient(135deg, rgba(255, 242, 209, 0.4) 0%, rgba(201, 164, 92, 0.6) 50%, rgba(140, 106, 50, 0.3) 100%) border-box;
  border: 1px solid transparent;
  color: var(--text-secondary);
  border-radius: 4px;
  padding: 0.65rem 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  min-height: 42px;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.card-btn-inquire:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 30%, #E2C98A 70%, #C9A45C 100%) !important;
  border: 1px solid #FFF2D1 !important;
  color: #011121 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 16px rgba(201, 164, 92, 0.4);
}

.card-btn-inquire:hover i {
  color: #011121 !important;
}

/* Dedicated Action Container for Services.html */
.service-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

/* Quick-Jump Category Navigation Bar */
.category-nav-wrapper {
  position: sticky;
  top: 68px;
  z-index: 900;
  background: rgba(1, 17, 33, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border-subtle);
  padding: 0.65rem 0;
  box-shadow: 0 10px 30px rgba(1, 12, 25, 0.9);
}

.category-nav-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.2rem 0.2rem;
  -webkit-overflow-scrolling: touch;
}

.category-nav-bar::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(rgba(2, 21, 38, 0.9), rgba(2, 21, 38, 0.9)) padding-box,
              linear-gradient(135deg, rgba(255, 242, 209, 0.4) 0%, rgba(201, 164, 92, 0.55) 50%, rgba(140, 106, 50, 0.3) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-pill:hover,
.cat-pill.active {
  background: linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 70%, #8C6A32 100%) padding-box,
              linear-gradient(135deg, #FFFFFF 0%, #FFF2D1 50%, #E2C98A 100%) border-box;
  border: 1px solid transparent;
  color: #02172D;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201, 164, 92, 0.45);
  transform: translateY(-1px);
}

.cat-pill i {
  font-size: 0.75rem;
}

/* Category Section Header */
.category-section-header {
  margin-bottom: 2rem;
}

.category-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.category-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* Sub-service Grid for Multi-Card Presentation */
.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sub-service-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: rgba(2, 21, 38, 0.85);
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.sub-service-card-item:hover {
  border-color: var(--gold-primary);
  background: rgba(2, 21, 38, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 12, 25, 0.6);
}

.sub-service-card-item i {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sub-service-card-item span {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Construction Highlights */
.feature-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.85rem 0 1.25rem 0;
}

.feature-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feature-highlight-item i {
  color: var(--gold-champagne);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ============================================================
   LIGHT SECTION (#F5F5F2 / White)
   ============================================================ */
.section-light {
  background-color: var(--text-soft);
  color: #1A2530;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-light .section-label {
  background: rgba(2, 23, 45, 0.07);
  border-color: rgba(201, 164, 92, 0.4);
  color: var(--navy-primary);
}

.section-light .section-label i {
  color: var(--gold-dark);
}

.section-light .section-title {
  color: var(--navy-primary);
}

.section-light .text-gold-gradient {
  background: linear-gradient(135deg, #02172D 0%, #8C6A32 50%, #C9A45C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-light .section-desc {
  color: #4A5568;
}

.testimonial-card-light {
  background: #FFFFFF;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 8px;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 10px 30px rgba(2, 23, 45, 0.06);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card-light:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(2, 23, 45, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.testimonial-quote {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 1.7;
  color: #2D3748;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-primary);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--gold-primary);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-primary);
  line-height: 1.2;
}

.author-role {
  font-size: 0.8rem;
  color: #718096;
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: center;
}

/* ============================================================
   INTERACTIVE ESTIMATOR: REAL ESTATE & CONSTRUCTION
   ============================================================ */
.calculator-box {
  background: var(--navy-dark);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 10px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(1, 12, 25, 0.8);
  box-sizing: border-box;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-champagne);
  margin-bottom: 0.5rem;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--navy-deep);
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 4px;
  color: var(--text-white);
  font-size: 16px; /* Prevents auto-zoom in iOS Safari */
  box-sizing: border-box;
  transition: border-color var(--transition-fast);
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--gold-champagne);
  box-shadow: 0 0 10px rgba(201, 164, 92, 0.3);
}

.calc-results-card {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 8px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.15);
  font-size: 0.9rem;
  gap: 0.75rem;
}

.calc-result-row:last-child {
  border-bottom: none;
}

.calc-result-label {
  color: var(--text-secondary);
}

.calc-result-val {
  font-weight: 700;
  color: var(--gold-champagne);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-align: right;
}

/* ============================================================
   CTA SECTION (Very Dark Navy #010C19)
   ============================================================ */
.section-cta {
  background: var(--navy-very-dark);
  border-top: 1px solid rgba(201, 164, 92, 0.25);
  border-bottom: 1px solid rgba(201, 164, 92, 0.25);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-box {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--navy-dark);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(201, 164, 92, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.6rem);
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  box-sizing: border-box;
}

.faq-question:hover {
  color: var(--gold-champagne);
}

.faq-icon {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 clamp(1rem, 3vw, 1.6rem) clamp(1rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.6rem);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  display: none;
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================================
   FOOTER (Deep Navy #011121)
   ============================================================ */
.site-footer {
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem 0;
  position: relative;
  font-size: 0.9rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.85rem;
  max-width: 320px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-champagne);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.footer-links a:hover {
  color: var(--gold-highlight);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.footer-contact-item i {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 92, 0.12);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-disclaimer {
  background: rgba(1, 12, 25, 0.6);
  border: 1px solid rgba(201, 164, 92, 0.1);
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2rem;
}

/* ============================================================
   FIXED MOBILE BOTTOM BAR (Exact requirement)
   Deep Navy background #02172D
   Gold borders/accents
   Gold primary WhatsApp CTA
   White/gold Call CTA
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--navy-primary);
  border-top: 2px solid var(--gold-primary);
  padding: 0.65rem 0.85rem;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(1, 12, 25, 0.9);
  box-sizing: border-box;
}

.mobile-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.45rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 46px;
  white-space: nowrap;
  box-sizing: border-box;
}

.mobile-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-btn-call {
  background: linear-gradient(rgba(2, 21, 38, 0.96), rgba(2, 21, 38, 0.96)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  color: var(--gold-champagne);
  box-shadow: 0 2px 10px rgba(1, 12, 25, 0.6);
}

/* ============================================================
   CONSULTATION MODAL (FIXED HEIGHT & FULL SCROLLABILITY)
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1, 12, 25, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: linear-gradient(var(--navy-primary), var(--navy-primary)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh; /* Fixed height for small screens */
  overflow-y: auto; /* Full vertical scrollability */
  padding: clamp(1.25rem, 3.5vw, 2.25rem);
  position: relative;
  box-shadow: 0 25px 60px rgba(1, 12, 25, 0.95), var(--gold-glow);
  box-sizing: border-box;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: rgba(2, 21, 38, 0.8);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 50%;
  color: var(--text-soft);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-highlight);
  border-color: var(--gold-primary);
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS & COMPLETE MOBILE AUDIT FIXES
   ============================================================ */

/* 1. Tablet Landscape / Medium Screens (<= 1024px) */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 2.25rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* 2. Tablet Portrait / Large Phones (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 75px; /* Offset for fixed mobile bottom bar */
  }

  .top-bar {
    display: none;
  }

  .site-header .header-container {
    height: 70px;
  }

  /* Full Screen Safe Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: var(--navy-deep);
    border-bottom: 1px solid var(--gold-border-subtle);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem 5rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(1, 12, 25, 0.95);
    z-index: 999;
    box-sizing: border-box;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn {
    display: none;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .service-detail-section .grid-2 > div {
    order: unset !important;
  }

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

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

  /* Mobile Hero Action Buttons: Hide WhatsApp & Call Now in hero (accessible via sticky footer bottom bar) */
  .hero-actions .hero-btn-whatsapp,
  .hero-actions .hero-btn-call,
  .services-hero-actions .hero-btn-whatsapp,
  .services-hero-actions .hero-btn-call {
    display: none !important;
  }

  .hero-actions .hero-btn-services,
  .services-hero-actions .hero-btn-explore {
    width: 100%;
    margin-bottom: 0.5rem;
  }

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

/* 3. Medium Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: nowrap;
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cta-actions .btn {
    width: 100%;
    white-space: nowrap;
  }

  .service-detail-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .service-detail-actions .btn {
    width: 100%;
    white-space: nowrap;
  }
}

/* 4. Standard Mobile Devices (<= 540px) */
@media (max-width: 540px) {
  .calc-result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .calc-result-val {
    text-align: left;
    font-size: 1.05rem;
  }

  .calc-results-card > div:last-child {
    flex-direction: column;
    display: flex;
    gap: 0.5rem;
  }

  .calc-results-card > div:last-child .btn {
    width: 100%;
  }

  .card-actions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .card-btn-whatsapp, .card-btn-call {
    font-size: 0.74rem;
    padding: 0.65rem 0.35rem;
    gap: 0.35rem;
  }

  .card-btn-inquire {
    font-size: 0.74rem;
    padding: 0.65rem 0.4rem;
  }
}

/* 5. Narrow Mobile Devices (<= 480px, e.g. iPhone SE, Pixel, Galaxy) */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .logo-title {
    font-size: 1.12rem;
    letter-spacing: 0.05em;
  }

  .logo-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .logo-img {
    height: 48px;
  }

  .hero-badge,
  .hero-badge span,
  .section-label,
  .section-label span {
    white-space: nowrap !important;
  }

  .hero-badge {
    font-size: clamp(0.56rem, 2.7vw, 0.74rem) !important;
    padding: 0.32rem 0.65rem !important;
    gap: 0.4rem !important;
  }

  .section-label {
    font-size: clamp(0.58rem, 2.7vw, 0.72rem) !important;
    padding: 0.28rem 0.65rem !important;
    gap: 0.4rem !important;
  }

  .modal-card {
    padding: 1.25rem 1rem;
    max-height: 85vh;
  }
}

/* 6. Ultra-Compact Mobile Devices (<= 360px, e.g. iPhone SE 1st gen, 320px screens) */
@media (max-width: 360px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .logo-title {
    font-size: 1.02rem;
    letter-spacing: 0.03em;
  }

  .logo-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .logo-img {
    height: 44px;
  }

  .hero-badge,
  .hero-badge span,
  .section-label,
  .section-label span {
    white-space: nowrap !important;
  }

  .hero-badge {
    font-size: clamp(0.5rem, 2.45vw, 0.64rem) !important;
    padding: 0.26rem 0.45rem !important;
    gap: 0.3rem !important;
    letter-spacing: 0.01em !important;
  }

  .section-label {
    font-size: clamp(0.52rem, 2.5vw, 0.64rem) !important;
    padding: 0.25rem 0.45rem !important;
    gap: 0.3rem !important;
    letter-spacing: 0.02em !important;
  }

  .card-actions-grid {
    grid-template-columns: 1fr;
  }

  .card-btn-whatsapp, .card-btn-call {
    width: 100%;
  }

  .mobile-bar-btn {
    font-size: 0.72rem;
    padding: 0.65rem 0.25rem;
    letter-spacing: 0.02em;
  }
}


/* ============================================================
   LIVE INTERACTIVE SERVICES SEARCH BAR
   ============================================================ */
.service-search-container {
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.service-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  box-shadow: 0 8px 25px rgba(1, 12, 25, 0.75), 0 0 15px rgba(201, 164, 92, 0.15);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-search-box:focus-within {
  box-shadow: 0 10px 35px rgba(1, 12, 25, 0.9), 0 0 25px rgba(201, 164, 92, 0.45);
  border-color: #FFF2D1;
}

.service-search-icon {
  color: var(--gold-highlight);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-search-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 500;
  outline: none;
}

.service-search-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-clear-btn {
  background: rgba(201, 164, 92, 0.15);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 50%;
  color: var(--gold-champagne);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.search-clear-btn:hover {
  background: var(--gold-primary);
  color: #011121;
}

.search-results-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(2, 21, 38, 0.95);
  border: 1px solid var(--gold-border-subtle);
  color: var(--gold-champagne);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.85rem;
  box-shadow: 0 4px 15px rgba(1, 12, 25, 0.5);
}

.search-highlight {
  outline: 2px solid var(--gold-highlight) !important;
  box-shadow: 0 0 25px rgba(201, 164, 92, 0.45) !important;
  animation: searchCardPulse 1s ease-in-out;
}

@keyframes searchCardPulse {
  0% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ============================================================
   CONSULTANT SECTION — G NANDINI
   ============================================================ */
.founder-section {
  background: var(--navy-dark);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.founder-card {
  background: linear-gradient(var(--navy-deep), var(--navy-deep)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 30%, #C9A45C 60%, #8C6A32 100%) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  box-shadow: 0 25px 60px rgba(1, 12, 25, 0.9), 0 0 25px rgba(201, 164, 92, 0.15);
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.founder-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.founder-photo-frame {
  position: relative;
  background: linear-gradient(var(--navy-primary), var(--navy-primary)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(1, 12, 25, 0.95), 0 0 20px rgba(201, 164, 92, 0.25);
  aspect-ratio: 4 / 5;
}

.founder-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(1, 17, 33, 0.88) 0%, rgba(1, 17, 33, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.founder-photo-frame:hover .founder-photo {
  transform: scale(1.03);
}

.founder-photo-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1.15rem;
  background: rgba(2, 21, 38, 0.94);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  color: var(--gold-champagne);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75), 0 0 15px rgba(201, 164, 92, 0.3);
  backdrop-filter: blur(8px);
  z-index: 3;
  pointer-events: none;
}

.founder-photo-badge i {
  color: var(--gold-primary);
  font-size: 0.82rem;
}

.founder-bio-group {
  display: flex;
  flex-direction: column;
}

.founder-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: var(--text-white);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.founder-role {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.founder-role-primary {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  color: var(--gold-champagne);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-role-sub {
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  font-weight: 600;
  color: var(--gold-highlight);
  letter-spacing: 0.02em;
}

.founder-role-practice {
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.founder-quote {
  background: rgba(2, 23, 45, 0.6);
  border-left: 3px solid var(--gold-primary);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--gold-highlight);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.founder-desc {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.founder-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.founder-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.founder-cred-item i {
  color: var(--gold-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo-wrapper {
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
  .founder-role {
    align-items: center;
  }
  .founder-quote {
    text-align: left;
  }
  .founder-credentials-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .founder-actions {
    justify-content: center;
  }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--navy-primary);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.gallery-card {
  background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
              linear-gradient(135deg, rgba(255, 242, 209, 0.4) 0%, rgba(201, 164, 92, 0.3) 50%, rgba(140, 106, 50, 0.15) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(1, 12, 25, 0.6);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 40%, #C9A45C 80%, #8C6A32 100%) border-box;
  box-shadow: 0 20px 40px rgba(1, 12, 25, 0.85), 0 0 20px rgba(201, 164, 92, 0.25);
}

.gallery-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(2, 23, 45, 0.92);
  border: 1px solid var(--gold-primary);
  color: var(--gold-highlight);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.gallery-body {
  padding: 1.35rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-champagne);
  margin-bottom: 0.45rem;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Purge any legacy typewriter cursors or blinking pipes */
.typewriter-cursor,
.typewriter-cursor::after,
.typewriter-cursor::before {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}


/* ============================================================
   ABOUT SECTION LAYOUT & IMAGE FRAME
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.about-image-frame {
  position: relative;
  background: linear-gradient(var(--navy-primary), var(--navy-primary)) padding-box,
              linear-gradient(135deg, #FFF2D1 0%, #E2C98A 35%, #C9A45C 70%, #8C6A32 100%) border-box;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(1, 12, 25, 0.95), 0 0 25px rgba(201, 164, 92, 0.2);
  aspect-ratio: 1 / 1;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about-image-wrapper {
    max-width: 520px;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}
