/* ==========================================================================
   ND ASSOCIATES — PREMIER FINANCIAL ADVISORY & AUDIT STYLESHEET
   Aesthetics: Elite Corporate Midnight & Sapphire Blue with Champagne Gold Accents
   Typography: 'Plus Jakarta Sans' (Modern Clean UI) & 'Playfair Display' (Editorial Luxury)
   ========================================================================== */

/* ── 1. DESIGN TOKENS & ROOT VARIABLES ───────────────────────────────────── */
:root {
  /* Primary Corporate Palette */
  --blue-primary:      #1E5F96;
  --blue-hover:        #154b77;
  --blue-deep:         #0E3354;
  --blue-light:        #EBF3FA;
  --blue-glow:         rgba(30, 95, 150, 0.28);

  /* Elite Midnight & Navy Accents */
  --midnight-deep:     #07101C;
  --midnight-surface:  #0C192C;
  --midnight-card:     #12223B;
  --navy-dark:         #0A1728;

  /* Luxury Champagne Gold Accents */
  --gold-primary:      #D4AF37;
  --gold-light:        #F6E7B4;
  --gold-dark:         #B89223;
  --gold-glow:         rgba(212, 175, 55, 0.35);

  /* Light Canvas & Neutrals */
  --bg-page:           #F8FAFD;
  --bg-surface:        #FFFFFF;
  --bg-subtle:         #EDF3FA;
  --bg-dark-section:   #091424;

  /* Text Colors */
  --text-main:         #111A29;
  --text-body:         #455468;
  --text-muted:        #687B94;
  --text-white:        #FFFFFF;
  --text-white-dim:    rgba(255, 255, 255, 0.76);

  /* Micro Borders & Shadows */
  --border-subtle:     rgba(30, 95, 150, 0.12);
  --border-medium:     rgba(30, 95, 150, 0.22);
  --border-gold:       rgba(212, 175, 55, 0.35);
  --border-glass:      rgba(255, 255, 255, 0.14);

  --shadow-xs:         0 1px 3px rgba(11, 25, 44, 0.04);
  --shadow-sm:         0 4px 12px rgba(11, 25, 44, 0.06);
  --shadow-md:         0 10px 30px rgba(11, 25, 44, 0.09);
  --shadow-lg:         0 20px 50px rgba(11, 25, 44, 0.14);
  --shadow-gold:       0 10px 30px rgba(212, 175, 55, 0.20);
  --shadow-blue:       0 10px 25px rgba(30, 95, 150, 0.30);

  /* Border Radii */
  --radius-xs:         6px;
  --radius-sm:         10px;
  --radius-md:         16px;
  --radius-lg:         22px;
  --radius-pill:       999px;

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. GLOBAL RESET & BASE RULES ────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main, section, header, footer, aside {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
  background: #A0B9D1;
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-primary);
}

::selection {
  background: var(--blue-primary);
  color: #ffffff;
}

/* Container Utility */
.section-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* ── 3. TOP ANNOUNCEMENT BAR ─────────────────────────────────────────────── */
.top-announcement-bar {
  background: linear-gradient(90deg, #091322 0%, #0E223D 50%, #091322 100%);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 1001;
}

.announcement-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-badge span {
  display: inline-block;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.4px;
}

.announcement-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
}

.announcement-text strong {
  color: #ffffff;
}

.announcement-link {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.announcement-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .top-announcement-bar {
    display: none !important;
  }
}

/* ── 4. SITE HEADER & NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), height var(--transition-normal);
  box-shadow: 0 2px 16px rgba(11, 25, 44, 0.05);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 28px rgba(11, 25, 44, 0.10);
}

.header-inner {
  max-width: 100%;
  padding: 0 36px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.brand-link:hover .header-logo {
  transform: scale(1.02);
}

/* Main Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 14px;
  flex-shrink: 0;
  width: auto;
}

.main-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

.main-nav a.active {
  color: var(--blue-primary);
  background: var(--blue-light);
  font-weight: 700;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2.5px;
  background: var(--blue-primary);
  border-radius: var(--radius-pill);
}

/* Header Right Actions */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.social-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
}

.social-btn:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

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

/* CTA Button */
.btn-cta {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-hover) 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 95, 150, 0.45);
  background: linear-gradient(135deg, #236ca9 0%, #154b77 100%);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta-icon {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--transition-fast);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--midnight-deep);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Breakpoint */
@media (max-width: 992px) {
  .header-inner {
    height: 74px;
    padding: 0 20px;
  }
  .header-logo {
    height: 46px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    gap: 8px;
  }
  .main-nav.open {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
  }
  .main-nav a {
    padding: 12px 18px;
    font-size: 15.5px;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .social-icons {
    display: none;
  }
  .btn-cta {
    padding: 8px 16px;
    font-size: 13.5px;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 5. HERO SECTION / SLIDER ────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.15);
  transform: scale(1.05);
  transition: transform 8s ease;
  user-select: none;
}

.hero-slide.active .hero-img {
  transform: scale(1);
}

/* Gradient Mesh Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(30, 95, 150, 0.45) 0%, rgba(7, 16, 28, 0.85) 70%, #07101C 100%),
              linear-gradient(180deg, rgba(7, 16, 28, 0.3) 0%, #07101C 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.pulse-point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-location-pill {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5.2vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  color: rgba(255, 255, 255, 0.84);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #154B77 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30, 95, 150, 0.45);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 95, 150, 0.60);
  background: linear-gradient(135deg, #246faa 0%, #144975 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Metrics Pill Strip below Hero */
.hero-metrics-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(12, 25, 44, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  max-width: 800px;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
}

.metric-item strong {
  color: var(--gold-light);
}

.metric-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* Arrows and Dots */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  width: 32px;
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

@media (max-width: 768px) {
  .hero { min-height: 540px; }
  .hero-content { padding: 60px 18px 40px; }
  .hero-arrow { display: none; }
  .hero-metrics-pill { gap: 12px; padding: 10px 16px; }
  .metric-sep { display: none; }
}

/* ── 6. TRUST METRICS BAR ────────────────────────────────────────────────── */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 30;
}

.trust-bar-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.trust-stat:hover {
  background: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-icon-wrap {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.trust-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}

.trust-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
}

/* ── 7. REUSABLE SECTION HEADERS & LABELS ────────────────────────────────── */
.section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(30, 95, 150, 0.08);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 95, 150, 0.16);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--midnight-deep);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue-primary);
}

.section-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
}

.divider-center {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
  border-radius: var(--radius-pill);
  margin: 16px auto 22px;
}

.divider {
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
  border-radius: var(--radius-pill);
  margin: 18px 0 24px;
}

/* ── 8. ABOUT SECTION ────────────────────────────────────────────────────── */
.about-section {
  padding: 90px 0;
  background: var(--bg-page);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.about-story-header {
  margin-bottom: 20px;
}

.story-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
}

.about-story-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--midnight-deep);
  margin-top: 4px;
}

.about-text-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.pillar {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.pillar:hover {
  background: #ffffff;
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

.pillar-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--midnight-deep);
}

.pillar-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
  margin-bottom: 0;
}

/* Right Stack Cards */
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.info-card.featured {
  border-left: 4px solid var(--gold-primary);
  background: linear-gradient(135deg, #ffffff 0%, #FAFBFD 100%);
}

.info-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.card-kicker {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-primary);
  display: block;
  margin-bottom: 2px;
}

.info-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight-deep);
}

.info-card-body p {
  font-size: 13px;
  color: var(--text-body);
  margin-top: 3px;
}

.about-cta-banner {
  background: linear-gradient(135deg, var(--midnight-surface) 0%, var(--midnight-card) 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 8px;
}

.banner-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--gold-light);
}

.banner-text span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-secondary {
  background: var(--gold-primary);
  color: var(--midnight-deep);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .about-pillars { grid-template-columns: 1fr; }
  .about-text-card { padding: 24px 20px; }
  .about-cta-banner { flex-direction: column; align-items: flex-start; }
}

/* ── 9. SERVICES SECTION ─────────────────────────────────────────────────── */
.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--border-subtle);
}

/* Filter Tabs */
.services-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-tab {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.filter-tab:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

.filter-tab.active {
  background: var(--blue-primary);
  color: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-blue);
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Service Card Component */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

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

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--blue-light);
  color: var(--blue-primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.service-badge.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Fixed Image Frame - Zero Filter Invert Bug */
.service-photo-frame {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  background: var(--bg-page);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.service-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-photo-frame {
  border-color: var(--blue-primary);
  transform: scale(1.05);
}

.service-card:hover .service-photo-frame img {
  transform: scale(1.12);
}

.service-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--midnight-deep);
  line-height: 1.4;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 12px;
}

.service-features li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.service-features li::before {
  content: '✓';
  color: var(--blue-primary);
  font-weight: 800;
}

.service-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.service-action-btn {
  background: none;
  border: none;
  color: var(--blue-primary);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.service-action-btn:hover {
  color: var(--blue-hover);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── 10. PROCESS SECTION ─────────────────────────────────────────────────── */
.process-section {
  padding: 90px 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary) 0%, var(--gold-primary) 100%);
  z-index: 1;
  opacity: 0.3;
}

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

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px #ffffff, var(--shadow-blue);
}

.process-step:nth-child(2) .step-badge { background: #1B5282; }
.process-step:nth-child(3) .step-badge { background: #15456E; }
.process-step:nth-child(4) .step-badge { background: var(--gold-dark); color: #ffffff; }

.step-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition-fast);
  min-height: 210px;
}

.step-card:hover {
  background: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight-deep);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
}
@media (max-width: 600px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ── 11. WHY CHOOSE US / WE SERVE SECTION ────────────────────────────────── */
.serve-section {
  padding: 90px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.serve-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.serve-narrative p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.serve-cta-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--blue-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.cta-box-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight-deep);
}

.cta-box-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 0;
}

.serve-promises-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.promise-item:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.promise-icon-box {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--midnight-deep);
}

.promise-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .serve-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 12. TESTIMONIALS SECTION ────────────────────────────────────────────── */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  background: #ffffff;
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-rating {
  color: var(--gold-primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--midnight-deep);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── 13. CLIENT LOGOS CAROUSEL ───────────────────────────────────────────── */
.clients-section {
  background: var(--bg-subtle);
  padding: 70px 0 60px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.clients-header {
  margin-bottom: 32px;
}

.clients-slider-wrap {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.clients-slider-wrap::before,
.clients-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.clients-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-subtle), transparent);
}

.clients-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-subtle), transparent);
}

.slide-track {
  display: flex;
  animation: scrollLogos 28s linear infinite;
  width: max-content;
  align-items: center;
}

.clients-slider-wrap:hover .slide-track {
  animation-play-state: paused;
}

.client-slide {
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
}

.client-slide img {
  max-width: 130px;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.70;
  filter: grayscale(40%);
  transition: all var(--transition-fast);
}

.client-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 14. FAQ ACCORDION SECTION ───────────────────────────────────────────── */
.faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--blue-primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--midnight-deep);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--blue-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 14px;
}

/* ── 15. LOCATION & MAP ──────────────────────────────────────────────────── */
.location-section {
  padding: 40px 0 90px;
  background: #ffffff;
}

.location-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  box-shadow: var(--shadow-sm);
}

.location-details {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-primary);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.location-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--midnight-deep);
  margin-bottom: 12px;
}

.location-details address {
  font-style: normal;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-timings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 14.5px;
  transition: all var(--transition-fast);
}

.btn-directions:hover {
  color: var(--blue-hover);
  transform: translateX(4px);
}

.location-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .location-card { grid-template-columns: 1fr; }
  .location-map-wrap { height: 280px; }
}

/* ── 16. SITE FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #07101C 0%, #0C192C 100%);
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  border-top: 2px solid rgba(212, 175, 55, 0.4);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 22px;
}

.footer-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cred-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-btn svg {
  transition: transform var(--transition-fast);
}

.footer-social-btn:hover {
  transform: translateY(-3px);
}

.footer-social-btn:hover svg {
  transform: scale(1.1);
}

.footer-social-btn.instagram-btn:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.whatsapp-color:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: all var(--transition-fast);
  display: inline-block;
}

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

.footer-address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 20px;
}

.footer-address strong {
  color: #ffffff;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.contact-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-line a {
  color: rgba(255, 255, 255, 0.72);
  display: block;
}

.contact-line a:hover {
  color: var(--gold-light);
}

.call-btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-primary), #154B77);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(30, 95, 150, 0.4);
  transition: all var(--transition-fast);
}

.call-btn-footer:hover {
  background: linear-gradient(135deg, #246faa, #144975);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 95, 150, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  background: #050C15;
}

.footer-bottom-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.san-network-link {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.san-network-link strong {
  color: var(--gold-light);
  transition: all var(--transition-fast);
}

.san-network-link:hover strong {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

@media (max-width: 992px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ── 17. POPUP MODAL FORM ────────────────────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 28, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.open {
  display: block;
  opacity: 1;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  width: min(560px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  z-index: 1200;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(30, 95, 150, 0.12);
  opacity: 0;
  transition: transform var(--transition-bounce), opacity var(--transition-normal);
}

.popup.open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition-fast);
}

.popup-close:hover {
  background: var(--midnight-deep);
  color: #ffffff;
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.popup-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.popup-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--midnight-deep);
  font-weight: 700;
}

.popup-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--midnight-deep);
}

.form-group .required {
  color: #E53E3E;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 1.5px solid #CBD7E2;
  background: #FAFCFE;
  color: var(--text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}

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

.form-trust-note {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.popup-submit {
  width: 100%;
  padding: 13px 20px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--midnight-deep);
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-fast);
}

.popup-submit:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .popup { padding: 28px 20px; }
}

/* ── 18. FLOATING WIDGETS ────────────────────────────────────────────────── */
.floating-widget-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 990;
}

.floating-whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 13.5px;
  position: relative;
  transition: all var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  border: 2px solid #25D366;
  animation: ringPulse 2s infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.back-to-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--midnight-deep);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  display: flex;
}

.back-to-top-btn:hover {
  background: var(--blue-primary);
  transform: translateY(-3px);
}



/* ── Mobile Navigation Drawer Footer Buttons ────────────────────────────── */
.mobile-nav-footer {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-btn {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.mobile-nav-btn.call {
  background: linear-gradient(135deg, var(--blue-primary), #154B77);
  color: #ffffff !important;
}

.mobile-nav-btn.whatsapp {
  background: #25D366;
  color: #ffffff !important;
}

.mobile-nav-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .mobile-nav-footer {
    display: flex;
  }
}

/* ── Comprehensive Universal Percentage-Based Mobile Optimizations ──────── */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  /* Header Optimization */
  .header-inner {
    width: 100%;
    height: 64px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
  }

  .header-logo {
    height: 36px;
    max-width: 135px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .social-icons {
    display: none !important;
  }

  .btn-cta {
    padding: 6px 11px;
    font-size: 11.5px;
    gap: 4px;
    border-radius: var(--radius-pill);
    box-shadow: none;
  }

  .btn-cta-icon svg {
    width: 13px;
    height: 13px;
  }

  .btn-cta-text {
    font-size: 11px;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    padding: 6px;
    gap: 4px;
    flex-shrink: 0;
  }

  /* Container Spacing */
  .section-container {
    width: 100%;
    max-width: 100%;
    padding: 0 4.5%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.28;
  }

  .section-desc {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.65;
    max-width: 100%;
  }

  /* Hero Banner & Action Buttons */
  .hero {
    width: 100%;
    min-height: 520px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 40px 16px 28px;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(24px, 6.8vw, 36px);
    line-height: 1.22;
    width: 100%;
  }

  .hero-subtitle {
    font-size: clamp(13px, 3.4vw, 14.5px);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-actions {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
  }

  .hero-metrics-pill {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .metric-item {
    font-size: 12px;
    gap: 6px;
  }

  /* Floating WhatsApp Icon Button */
  .floating-widget-group {
    bottom: 18px;
    right: 14px;
    gap: 8px;
    z-index: 999;
  }

  .floating-label {
    display: none !important;
  }

  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }

  .floating-whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top-btn {
    width: 38px;
    height: 38px;
  }

  /* Trust Bar */
  .trust-bar-inner {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 5% 4%;
    gap: 3%;
    box-sizing: border-box;
  }

  .trust-stat {
    width: 100%;
    padding: 4% 4%;
    gap: 3%;
    box-sizing: border-box;
  }

  .stat-icon-wrap {
    font-size: clamp(20px, 5vw, 24px);
  }

  .trust-stat .number {
    font-size: clamp(22px, 5.5vw, 26px);
  }

  .trust-stat .label {
    font-size: clamp(10.5px, 2.8vw, 12px);
  }

  /* Services Layout */
  .services-filter-tabs {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 6px 14px 14px;
    gap: 8px;
    margin-bottom: 24px;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .services-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
  }

  .services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    box-sizing: border-box;
  }

  .service-card {
    width: 100%;
    padding: 22px 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
  }

  .service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .service-icon-frame {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .service-content h3 {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .service-features {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
  }

  .service-features li {
    font-size: 12.5px;
    padding: 4px 0;
  }

  .service-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }

  /* Sections Spacing */
  .about-section, .services-section, .process-section, .serve-section, .faq-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
  }

  .about-grid, .serve-layout, .location-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    box-sizing: border-box;
  }

  .about-text-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 24px 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .about-pillars {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
    box-sizing: border-box;
  }

  .pillar {
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: var(--radius-sm);
  }

  .pillar-icon {
    font-size: 22px;
    flex-shrink: 0;
  }

  .pillar-text h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .pillar-text p {
    font-size: 12px;
    line-height: 1.45;
  }

  .info-card {
    width: 100%;
    padding: 16px 18px;
    gap: 14px;
    box-sizing: border-box;
  }

  /* Process Timeline */
  .process-timeline {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 0;
  }

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

  .process-step {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .step-card {
    min-height: auto;
    padding: 20px 16px;
    margin-bottom: 0;
  }

  .serve-cta-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  .serve-cta-box .btn-primary {
    width: 100%;
  }

  .location-details {
    width: 100%;
    padding: 24px 18px;
    box-sizing: border-box;
  }

  /* Footer */
  .footer-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 16px 20px;
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
  }

  .footer-address {
    margin-bottom: 6px;
  }

  .footer-contact-details {
    margin-bottom: 10px;
  }

  .call-btn-footer {
    display: inline-flex;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding: 20px 16px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .header-logo {
    max-width: 120px;
    height: 32px;
  }

  .btn-cta {
    padding: 5px 9px;
    font-size: 11px;
  }

  .btn-cta-text {
    font-size: 10.5px;
  }

  .trust-bar-inner {
    width: 100%;
    grid-template-columns: 50% 50%;
    padding: 4% 3%;
  }

  .popup {
    width: 94%;
    max-width: 94%;
    padding: 6% 5%;
    margin: 0 auto;
  }
}

/* ── 19. SCROLL REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
