/* =========================================
   MANGALORE GARAGE QATAR – PROFESSIONAL LIGHT THEME
   ========================================= */

/* ---- GOOGLE FONTS (already in HTML) ---- */

/* ---- ROOT VARIABLES ---- */
:root {
  /* Brand Colors */
  --primary:        #C8940A;
  --primary-light:  #F0B429;
  --primary-dark:   #9A6E04;
  --primary-bg:     #FFF8E7;

  /* Navy Accent */
  --navy:           #0F2A4A;
  --navy-light:     #1A3D6B;
  --navy-subtle:    #EAF0F8;

  /* Backgrounds — Light Theme */
  --bg-body:        #F5F7FA;
  --bg-white:       #FFFFFF;
  --bg-light:       #F0F4F8;
  --bg-section:     #FAFBFD;
  --bg-dark-section:#0F2A4A;      /* deep navy for alternating sections */
  --bg-dark-alt:    #112F54;

  /* Surfaces */
  --surface:        #FFFFFF;
  --surface-hover:  #F7F9FC;
  --surface-dark:   #1A3D6B;

  /* Text */
  --text-dark:      #0D1B2A;
  --text-body:      #374151;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --text-on-dark:   #E8F0FA;
  --text-on-dark-2: #A8BFCF;

  /* Borders */
  --border:         #E2E8F0;
  --border-gold:    rgba(200,148,10,0.25);
  --border-navy:    rgba(15,42,74,0.12);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(15,42,74,0.08);
  --shadow-md:      0 6px 24px rgba(15,42,74,0.12);
  --shadow-lg:      0 16px 48px rgba(15,42,74,0.16);
  --shadow-gold:    0 8px 32px rgba(200,148,10,0.22);
  --shadow-card:    0 4px 20px rgba(15,42,74,0.10);

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #C8940A 0%, #F0B429 100%);
  --grad-navy:      linear-gradient(135deg, #0F2A4A 0%, #1A3D6B 100%);
  --grad-hero:      linear-gradient(135deg, rgba(10,20,40,0.88) 0%, rgba(15,42,74,0.65) 60%, rgba(10,18,36,0.82) 100%);
  --grad-section:   linear-gradient(180deg, #F0F4F8 0%, #FAFBFD 100%);

  /* Layout */
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      6px;
  --transition:     0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-main:      'Outfit', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-display:   'Bebas Neue', 'Outfit', sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* =========================================
   LAYOUT — 95% WIDTH ON DESKTOP
   ========================================= */
.container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .container { width: 100%; padding: 0 20px; }
}

/* =========================================
   SECTION HELPERS
   ========================================= */
.section { padding: 96px 0; }
.section-light { background: var(--bg-white); }
.section-alt   { background: var(--bg-section); }
.section-dark  { background: var(--bg-dark-section); }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-dark .section-title { color: var(--text-on-dark); }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: var(--text-on-dark-2); }

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,148,10,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,148,10,0.45);
}

.btn-navy {
  background: var(--grad-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary-bg);
  transform: translateY(-3px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--grad-gold);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.86rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(200,148,10,0.3);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}

/* =========================================
   PRELOADER — SCREEN REVEAL
   ========================================= */
#preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: all;
}

/* Curtain panels */
.curtain {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--navy);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.curtain-top    { left: 0;  width: 50%; }
.curtain-bottom { right: 0; width: 50%; }

#preloader.reveal .curtain-top    { transform: translateX(-100%); }
#preloader.reveal .curtain-bottom { transform: translateX(100%); }

/* Centered stack */
.preloader-center {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
  padding: 20px;
  animation: pl-fade-out 0.4s ease 2.0s forwards;
}

/* Logo */
.preloader-logo-wrap {
  width: 100px; height: 100px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: pl-logo-in 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
  flex-shrink: 0;
}
.preloader-logo-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Brand text */
.preloader-brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  animation: pl-slide-up 0.6s ease 0.5s both;
}
.preloader-brand-main {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.preloader-brand-sub {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Car image */
.pl-car-wrap {
  animation: pl-slide-up 0.6s ease 0.7s both;
}
.pl-car-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(200,148,10,0.5));
}

/* Progress bar */
.pl-bar-track {
  width: 200px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  animation: pl-slide-up 0.6s ease 0.85s both;
}
.pl-bar-fill {
  height: 100%; width: 0;
  background: var(--grad-gold);
  border-radius: 4px;
  animation: load 1.6s ease 1.0s forwards;
}

/* Keyframes */
@keyframes pl-logo-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pl-slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pl-fade-out {
  to { opacity: 0; }
}
@keyframes load { to { width: 100%; } }

/* Hide after reveal */
#preloader.done {
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease 0.9s, visibility 0s 1.2s;
}



/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border);
}

/* Transparent state (over hero) */
#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-link:hover,
#navbar:not(.scrolled) .nav-link.active { color: var(--primary-light); }
#navbar:not(.scrolled) .logo-main { color: #fff; }
#navbar:not(.scrolled) .hamburger { color: #fff; }

/* Scrolled state (white bg) */
#navbar.scrolled .nav-link { color: var(--text-muted); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--navy); }
#navbar.scrolled .logo-main { color: var(--text-dark); }
#navbar.scrolled .hamburger { color: var(--text-dark); }

.nav-container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
  z-index: 2;
}
.logo-icon {
  width: 60px; height: 60px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.logo-sub {
  font-size: 0.75rem; color: var(--primary);
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ---- DESKTOP nav-links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
#navbar.scrolled .nav-link:hover { background: var(--bg-light); }
#navbar.scrolled .nav-link.active::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--primary); border-radius: 2px;
}

/* Desktop-only items */
.mobile-close-row,
.mobile-cta-row { display: none; }
.desktop-book-btn { display: inline-flex; }

/* ---- HAMBURGER (hidden on desktop) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;        /* above everything */
  position: relative;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px; height: 2.5px;
  background: currentColor;
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}

.hero-content {
  position: relative; z-index: 1;
  width: 95%; max-width: 1600px;
  margin: 0 auto; padding: 0 16px;
  padding-top: 90px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,148,10,0.15);
  border: 1px solid rgba(200,148,10,0.45);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; color: var(--primary-light);
  margin-bottom: 22px;
  animation: fadeSlideDown 0.8s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.08; color: #fff;
  margin-bottom: 22px;
  animation: fadeSlideDown 0.8s ease 0.5s both;
  letter-spacing: -1px;
  max-width: 760px;
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(220,230,245,0.88);
  max-width: 540px; margin-bottom: 36px;
  animation: fadeSlideDown 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideDown 0.8s ease 0.9s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s ease 1.1s both;
}
.stat-item { padding: 0 30px; text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-main); font-size: 2.1rem; font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix {
  font-family: var(--font-main); font-size: 1.3rem; font-weight: 800;
  color: var(--primary-light);
}
.stat-label {
  display: block; font-size: 0.75rem; color: rgba(200,215,235,0.7);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(200,148,10,0.3);
}

.scroll-indicator {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(200,215,235,0.6);
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s ease 2s both;
}
.scroll-arrow {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,148,10,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
  background: var(--grad-navy);
  overflow: hidden; padding: 15px 0;
  border-top: 3px solid var(--primary);
}
.marquee-track {
  display: flex; gap: 54px; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-main); font-weight: 600; font-size: 0.88rem;
  color: rgba(220,235,255,0.8); white-space: nowrap;
}
.marquee-track span i { color: var(--primary-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--bg-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
}

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.015); }

.about-badge-card {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--grad-gold);
  padding: 16px 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-gold); color: #fff;
}
.about-badge-card i { font-size: 1.8rem; }
.about-badge-card strong { display: block; font-family: var(--font-main); font-size: 0.92rem; font-weight: 800; }
.about-badge-card span { font-size: 0.75rem; opacity: 0.9; }

.about-years-badge {
  position: absolute; top: -22px; left: -22px;
  background: var(--navy);
  border: 3px solid var(--primary-light);
  padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.years-num {
  font-family: var(--font-main); font-size: 2.6rem; font-weight: 900;
  background: var(--grad-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.years-label { font-size: 0.68rem; color: rgba(200,215,235,0.75); line-height: 1.4; }

/* .about-content { } */
.about-text { color: var(--text-body); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-text strong { color: var(--navy); }

.about-features {
  margin: 26px 0 34px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-body);
  background: var(--bg-section);
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  background: var(--primary-bg); border-color: var(--border-gold);
  transform: translateX(3px);
}
.about-feature i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--bg-body); }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap { position: relative; height: 195px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,148,10,0.82), rgba(15,42,74,0.78));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  opacity: 0; transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body { padding: 22px; }

.service-icon {
  width: 46px; height: 46px;
  background: var(--primary-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--primary-dark);
  margin-bottom: 14px; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--grad-gold); color: #fff; border-color: transparent;
}

.service-body h3 {
  font-family: var(--font-main); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text-dark);
}
.service-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.65; }
.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-body); }
.service-list li i { color: var(--primary); font-size: 0.72rem; }

/* Small cards */
.service-card-small {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
}
.service-icon-sm {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--primary-bg);
  border: 1px solid var(--border-gold);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--primary-dark);
  transition: var(--transition);
}
.service-card-small:hover .service-icon-sm {
  background: var(--grad-gold); color: #fff; border-color: transparent;
}
.service-card-small h4 {
  font-family: var(--font-main); font-size: 0.98rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text-dark);
}
.service-card-small p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   WHY US
   ========================================= */
.why-us { background: var(--bg-dark-section); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0); transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,148,10,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon-wrap {
  width: 70px; height: 70px;
  background: rgba(200,148,10,0.12);
  border: 1px solid rgba(200,148,10,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--primary-light);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--grad-gold); color: #fff; border-color: transparent;
  transform: rotate(5deg) scale(1.05);
}
.why-card h3 {
  font-family: var(--font-main); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text-on-dark);
}
.why-card p { font-size: 0.88rem; color: var(--text-on-dark-2); line-height: 1.7; }

/* =========================================
   PROCESS
   ========================================= */
.process { background: var(--bg-white); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.process-step {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
  position: relative; transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}
.step-number {
  font-family: var(--font-main); font-size: 4rem; font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.12; position: absolute; top: 14px; right: 18px; line-height: 1;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--primary-bg);
  border: 2px solid var(--border-gold);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; color: var(--primary-dark);
  margin: 0 auto 18px; transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--grad-gold); color: #fff; border-color: transparent;
}
.process-step h3 {
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text-dark);
}
.process-step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

.step-arrow {
  position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--grad-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.65rem; z-index: 2;
  box-shadow: 0 3px 10px rgba(200,148,10,0.35);
}
.process-step:last-child .step-arrow { display: none; }

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

/* Rating summary */
.reviews-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 10px 28px;
  width: fit-content; margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.reviews-rating-big {
  font-family: var(--font-main); font-size: 1.5rem; font-weight: 800;
  color: var(--text-dark);
}
.reviews-stars-big { display: flex; gap: 3px; color: var(--primary); font-size: 1rem; }
.reviews-meta { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* Slider */
.testimonials-slider { overflow: hidden; }
.testimonials-track {
  display: flex; gap: 24px;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px 28px;
  width: calc(50% - 12px); flex-shrink: 0;
  display: flex; flex-direction: column;
  height: auto;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(200,148,10,0.12);
  transform: translateY(-5px);
}

/* Quote icon */
.test-quote-icon {
  font-size: 1.4rem;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 16px;
  line-height: 1;
}

/* Review text */
.test-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 24px;
}

/* Footer row: stars + author */
.test-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.test-stars { display: flex; gap: 4px; color: var(--primary); font-size: 0.82rem; }

.test-author {
  display: flex; align-items: center; gap: 12px;
}
.test-avatar {
  width: 40px; height: 40px;
  background: var(--grad-navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 800;
  font-size: 0.82rem; color: #fff; flex-shrink: 0;
}
.test-info { display: flex; flex-direction: column; gap: 2px; }
.test-info strong { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.test-info span   { font-size: 0.76rem; color: var(--text-muted); }

/* Controls */
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 36px;
}
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  color: var(--primary-dark); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--grad-gold); color: #fff; border-color: transparent; }
.slider-dots { display: flex; gap: 7px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }


/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--grad-navy);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(200,148,10,0.1) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(200,148,10,0.06) 0%, transparent 55%);
}
.cta-content { position: relative; text-align: center; }
.cta-content h2 {
  font-family: var(--font-main); font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800; margin-bottom: 16px; color: #fff;
}
.cta-content p { color: var(--text-on-dark-2); font-size: 1.02rem; max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--bg-white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.55fr; gap: 44px; margin-bottom: 44px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--border-gold);
  background: var(--primary-bg);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1rem;
  border: 1px solid var(--border-gold);
}
.contact-card h4 {
  font-family: var(--font-main); font-size: 0.86rem; font-weight: 700;
  margin-bottom: 4px; color: var(--text-dark);
}
.contact-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

.social-links { display: flex; gap: 8px; margin-top: 4px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.88rem;
  background: var(--bg-white);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--navy-subtle); border-color: var(--navy);
  color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-sm);
}
.social-link.whatsapp-social:hover {
  background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.5); color: #1DA851;
}

/* Contact Form */
.contact-form {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
}
.contact-form h3 {
  font-family: var(--font-main); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 26px; color: var(--text-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.3px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: var(--transition); outline: none; width: 100%;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,148,10,0.12);
  background: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(29,168,81,0.1); border: 1px solid rgba(29,168,81,0.3);
  border-radius: var(--radius-xs); padding: 14px 18px; margin-top: 14px;
  color: #1A7A40; font-size: 0.88rem;
}
.form-success.visible { display: flex; animation: fadeIn 0.4s ease; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.88rem; color: rgba(180,200,225,0.75);
  margin: 16px 0 22px; line-height: 1.75;
}
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: var(--primary-light); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-main); font-weight: 700; font-size: 0.95rem;
  color: #fff; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,148,10,0.25);
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.87rem; color: rgba(180,200,225,0.7);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: rgba(180,200,225,0.75);
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; min-width: 14px; }

.footer-social .social-link {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(200,220,245,0.7);
}
.footer-social .social-link:hover {
  background: rgba(200,148,10,0.2);
  border-color: var(--border-gold);
  color: var(--primary-light);
}

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(150,175,210,0.65);
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 46px; height: 46px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="zoom-in"]    { transform: scale(0.93); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0,0) scale(1); }

/* =========================================
   MOBILE MENU — TRANSFORM-BASED (no display toggle)
   Always in DOM; shown/hidden via transform + visibility
   ========================================= */

/* Backdrop overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 28, 0.65);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}


/* Body scroll lock */
body.menu-open { overflow: hidden; touch-action: none; }

/* Mobile close button */
.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: rgba(220,235,255,0.9);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.mobile-close-btn:hover {
  background: rgba(200,148,10,0.3);
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.mobile-cta-btn {
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* =========================================
   RESPONSIVE — TABLET  ≤ 1024px
   ========================================= */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 560px; margin: 0 auto; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps  { grid-template-columns: repeat(2, 1fr); }
  .step-arrow     { display: none; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-step { padding: 30px 24px; }
}

/* =========================================
   RESPONSIVE — MOBILE  ≤ 768px
   KEY STRATEGY: nav-links slides in from right.
   No display:none/flex toggling — only transform.
   ========================================= */
@media (max-width: 768px) {

  /* --- SECTION --- */
  .section        { padding: 58px 0; }
  .section-header { margin-bottom: 38px; }
  .section-title  { font-size: clamp(1.55rem, 5vw, 2.1rem); }

  /* --- HAMBURGER: show it --- */
  .hamburger      { display: flex; }

  /* --- DESKTOP items: hide --- */
  .desktop-book-btn { display: none; }
  /* nav-links on desktop: hide by shifting right off-screen */
  /* We override the flex layout to be a fixed drawer */
  .nav-links {
    /* Reset flex layout */
    display: block;
    /* Drawer: fixed, full viewport, slides from right */
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    z-index: 1003;            /* above overlay (1002) and navbar (1000) */
    padding: 0;
    overflow-y: auto;
    /* Hidden state */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s;
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  }

  /* Open state — just add class, no display toggling needed */
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Show mobile-only rows inside drawer */
  .mobile-close-row {
    display: flex;
    justify-content: flex-end;
    padding: 18px 18px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-cta-row {
    display: flex;
    justify-content: center;
    padding: 16px 24px 32px;
  }

  /* Nav items inside drawer */
  .nav-links li { width: 100%; }
  .nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(220, 235, 255, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    background: none;
    transition: background 0.2s, color 0.2s, padding 0.2s;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: var(--primary-light);
    background: rgba(200,148,10,0.12);
    padding-left: 32px;
  }
  /* Remove desktop underline indicator inside drawer */
  .nav-links .nav-link.active::after { display: none; }

  /* Override scrolled/not-scrolled link colours inside open drawer */
  #navbar:not(.scrolled) .nav-links .nav-link,
  #navbar.scrolled .nav-links .nav-link {
    color: rgba(220, 235, 255, 0.85);
  }
  #navbar:not(.scrolled) .nav-links .nav-link:hover,
  #navbar:not(.scrolled) .nav-links .nav-link.active,
  #navbar.scrolled .nav-links .nav-link:hover,
  #navbar.scrolled .nav-links .nav-link.active {
    color: var(--primary-light);
  }

  /* --- HERO --- */
  .hero-content   { padding-top: 100px; }
  .hero-title     { font-size: clamp(2rem, 7.5vw, 2.7rem); letter-spacing: -0.5px; max-width: 100%; }
  .hero-desc      { font-size: 0.96rem; max-width: 100%; }
  .hero-actions   { flex-direction: column; align-items: stretch; gap: 12px; max-width: 340px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats     { flex-wrap: wrap; gap: 20px 0; justify-content: center; width: 100%; }
  .stat-divider   { display: none; }
  .stat-item      { padding: 8px 18px; text-align: center; }
  .stat-item:first-child { padding-left: 18px; }

  /* --- ABOUT --- */
  .about-grid     { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap { max-width: 100%; }
  .about-badge-card  { right: 8px; bottom: -14px; padding: 12px 15px; }
  .about-years-badge { left: 8px;  top: -14px;    padding: 11px 13px; }
  .years-num         { font-size: 2rem; }
  .about-features    { grid-template-columns: 1fr; }

  /* --- SERVICES --- */
  .services-grid  { grid-template-columns: 1fr; gap: 16px; }

  /* --- WHY US --- */
  .why-grid       { grid-template-columns: 1fr; gap: 14px; }
  .why-card       { padding: 26px 20px; }

  /* --- PROCESS --- */
  .process-steps  { grid-template-columns: 1fr; gap: 14px; }
  .process-step   { padding: 26px 20px; }
  .step-arrow     { display: none; }

  /* --- TESTIMONIALS --- */
  .testimonials-track { gap: 16px; }
  .testimonial-card   { width: 100%; padding: 26px 20px; }

  /* --- CTA --- */
  .cta-banner     { padding: 56px 0; }
  .cta-actions    { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* --- CONTACT --- */
  .contact-grid   { grid-template-columns: 1fr; gap: 26px; }
  .contact-form   { padding: 22px 18px; }
  .form-row       { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 260px; }

  /* --- FOOTER --- */
  .footer         { padding: 48px 0 0; }
  .footer-grid    { grid-template-columns: 1fr; gap: 26px; padding-bottom: 32px; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 8px; font-size: 0.8rem; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ========================================= */
@media (max-width: 480px) {
  .container      { padding: 0 16px; }
  .section        { padding: 48px 0; }
  .section-title  { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .section-subtitle { font-size: 0.88rem; }

  .hero-title     { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .hero-content   { padding-top: 88px; }
  .hero-desc      { font-size: 0.9rem; }

  /* About badges go static to avoid overlap */
  .about-img-wrap   { overflow: visible; }
  .about-badge-card {
    position: static;
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
    justify-content: flex-start;
  }
  .about-years-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }

  .service-img-wrap { height: 160px; }
  .why-card         { padding: 22px 16px; }
  .testimonial-card { padding: 20px 16px; }

  .hero-stats { justify-content: center; gap: 12px 0; }
  .stat-item  { flex: 0 0 48%; text-align: center; padding: 8px 6px; }
  .stat-num   { font-size: 1.65rem; }
  .stat-label { font-size: 0.67rem; }

  .btn    { padding: 12px 20px; font-size: 0.87rem; }
  .btn-lg { padding: 14px 26px; font-size: 0.94rem; }

  .contact-form { padding: 18px 14px; }
  .footer-grid  { gap: 20px; }
  .social-links { flex-wrap: wrap; }
}

/* =========================================
   RESPONSIVE — TINY  ≤ 360px
   ========================================= */
@media (max-width: 360px) {
  .nav-container { padding: 0 12px; }
  .logo-icon     { width: 36px; height: 36px; border-radius: 9px; }
  .logo-main     { font-size: 0.92rem; }
  .logo-sub      { font-size: 0.58rem; }
  .hero-title    { font-size: 1.65rem; }
  .section-title { font-size: 1.38rem; }
  .nav-links     { width: min(280px, 90vw); }
  .hero-stats    { gap: 8px 0; justify-content: center; width: 100%; }
  .stat-item     { flex: 0 0 50%; text-align: center; padding: 6px 4px; }
  .stat-num      { font-size: 1.45rem; }
  .stat-suffix   { font-size: 1rem; }
  .stat-label    { font-size: 0.62rem; letter-spacing: 0.5px; }
}

/* =========================================
   DIVIDER
   ========================================= */
.divider {
  height: 3px;
  background: var(--grad-gold);
  border: none;
  margin: 0;
}
