/* ============================================================
   4 Wheel Car Wash — REDESIGNED DESIGN SYSTEM v3.0
   Tailwind-inspired utility tokens + Modern premium aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap&font-display=swap');

/* Tailwind CDN */
/* (we use tailwind via CDN in HTML, here are our custom tokens + components) */

:root {
  /* ── BRAND PALETTE ── */
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --light-gray: #EFF3FA;
  --silver: #DDE4F0;
  --silver-mid: #C0CDE0;

  --teal: #00BFA8;
  --teal-hi: #00D9C0;
  --teal-deep: #009485;
  --teal-soft: #E6FAF8;
  --teal-mid: #B3F0EA;

  --gold: #F59E0B;
  --gold-soft: #FEF3C7;
  --gold-deep: #D97706;

  --navy: #0D2137;
  --navy-deep: #071525;
  --ink: #040E18;

  /* Text */
  --text-dark: #0D1E33;
  --text-mid: #2A3F5C;
  --text-light: #4D6680;
  --text-muted: #8AA0BB;

  /* Blue compat aliases */
  --blue: #00BFA8;
  --blue-hi: #00D9C0;
  --blue-soft: #E6FAF8;
  --blue-mid: #B3F0EA;
  --cyan: #0EA5E9;
  --cyan-soft: #E0F5FF;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 191, 168, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 191, 168, 0.13);
  --shadow-lg: 0 24px 80px rgba(0, 191, 168, 0.17);
  --shadow-xl: 0 40px 120px rgba(0, 191, 168, 0.22);
  --shadow-dark: 0 20px 60px rgba(7, 21, 37, 0.5);

  /* Glows */
  --glow-teal: 0 0 60px rgba(0, 191, 168, 0.32);
  --glow-gold: 0 0 40px rgba(245, 158, 11, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-ui: 'Inter', sans-serif;

  /* Easing */
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Spacing */
  --pad-section: clamp(80px, 10vw, 130px);
  --pad-x: clamp(20px, 5vw, 80px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-pill: 9999px;

  /* Top info bar */
  --topbar-h: 38px;
}

@media (max-width: 640px) {
  :root {
    --topbar-h: 32px;
  }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--topbar-h);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: var(--r-pill);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99990;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: var(--glow-teal);
  transition: width .06s linear;
}

/* ============================================================
   CURSOR
   ============================================================ */
#c-dot,
#c-ring {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.cursor-hover #c-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
}

body.cursor-hover #c-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(245, 158, 11, 0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-info-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9100;
  height: var(--topbar-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(0, 191, 168, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 var(--pad-x);
}

.tib-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .78);
  white-space: nowrap;
  transition: color .3s;
}

a.tib-item:hover {
  color: var(--teal-hi);
}

.tib-item i {
  color: var(--teal);
  font-size: .72rem;
}

.tib-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .top-info-bar {
    gap: 16px;
  }
  .tib-item {
    font-size: .66rem;
  }
}

#nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 var(--pad-x);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s var(--ease-expo);
}

#nav.scrolled {
  background: rgba(7, 21, 37, 0.95);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  height: 68px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 191, 168, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-logo-text .n4 {
  color: var(--teal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.72);
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width .35s var(--ease-expo);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--teal);
  font-weight: 600;
}

.nav-book {
  padding: 11px 26px;
  background: var(--teal) !important;
  color: var(--navy-deep) !important;
  border-radius: var(--r-pill);
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  transition: all .35s var(--ease-expo) !important;
  box-shadow: 0 4px 20px rgba(0, 191, 168, 0.4) !important;
}

.nav-book::after {
  display: none !important;
}

.nav-book:hover {
  background: var(--teal-hi) !important;
  color: var(--navy-deep) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(0, 191, 168, 0.55) !important;
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.ham span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .35s var(--ease-expo);
}

.ham.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.ham.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile menu */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-expo);
}

#mob-menu.open {
  clip-path: inset(0 0 0% 0);
}

#mob-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 4px;
  color: var(--white);
  transition: color .3s;
}

#mob-menu a:hover {
  color: var(--teal);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-pad {
  padding: var(--pad-section) var(--pad-x);
}

/* ============================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================ */

/* GPU-accelerate animated/transitioning elements */
.hs-bg, .hs-orb, .hs-particle {
  will-change: transform, opacity;
}

.svc-card, .why-card, .hcs-card, .testi-card, .about-feat,
.ccp-plan-card, .ccp-amc-card, .gal-item {
  will-change: transform;
}

/* Contain layout for off-screen sections */
#why, #counters, #home-cleaning-services,
#housekeeping-services, #testimonials, .gallery-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Reduce repaints on scroll animations */
[data-reveal] {
  will-change: opacity, transform;
}

[data-reveal].revealed {
  will-change: auto;
}

/* Tag lines */
.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 20px;
}

.tag-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--teal-soft);
  border: 1px solid rgba(0, 191, 168, 0.22);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 22px;
}

/* Headings */
.heading-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--navy);
}

.heading-title .grad,
.section-title .grad {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--navy);
}

.body-copy {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all .35s var(--ease-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 6px 28px rgba(0, 191, 168, 0.38);
}

.btn-primary:hover {
  background: var(--teal-hi);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 191, 168, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--silver);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.38);
}

.btn-gold:hover {
  background: #FBBF24;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(7, 21, 37, 0.5);
}

.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
}

.btn-wa:hover {
  background: #20BA5A;
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-expo), transform .75s var(--ease-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  padding: 80px var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 100%, rgba(0, 191, 168, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--white);
}

.footer-logo-text .n4 {
  color: var(--teal);
}

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all .3s;
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy-deep);
}

.foot-col h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color .3s;
}

.foot-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ============================================================
   WA FLOAT BUTTON
   ============================================================ */
#wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 5000;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  transition: all .35s var(--ease-expo);
}

#wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 50px rgba(37, 211, 102, 0.65);
}

.wa-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: white;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  box-shadow: var(--shadow-md);
}

#wa-btn:hover .wa-tip {
  opacity: 1;
}

/* ============================================================
   HERO (INNER PAGES) — LIGHT MODERN
   ============================================================ */
.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(150deg, #F0F6FF 0%, #FAFCFF 45%, #EDF5FF 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1px, transparent 1px;
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
}

/* ============================================================
   HOUSEKEEPING SECTION (DARK)
   ============================================================ */
.hk-section {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0A1E30 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.hk-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(0, 191, 168, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hk-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hk-plan {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: all .35s var(--ease-expo);
  cursor: pointer;
}

.hk-plan:hover {
  background: rgba(0, 191, 168, 0.08);
  border-color: rgba(0, 191, 168, 0.2);
  transform: translateX(8px);
}

.hk-plan-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
  opacity: 0.5;
  min-width: 46px;
  line-height: 1;
}

.hk-plan:hover .hk-plan-num {
  opacity: 1;
}

.hk-plan-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 5px;
}

.hk-plan-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.hk-plan-arrow {
  margin-left: auto;
  color: rgba(0, 191, 168, 0.4);
  transition: all .3s;
  flex-shrink: 0;
}

.hk-plan:hover .hk-plan-arrow {
  color: var(--teal);
  transform: translateX(4px);
}

.hk-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all .3s;
}

.hk-badge:hover {
  background: rgba(0, 191, 168, 0.1);
  border-color: rgba(0, 191, 168, 0.25);
  color: var(--teal);
}

.hk-badge i {
  color: var(--teal);
  font-size: 0.7rem;
}

/* ============================================================
   HOME CLEANING SERVICES GRID
   ============================================================ */
.hcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.hcs-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  transition: all .4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.hcs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-expo);
}

.hcs-card:hover::before {
  transform: scaleX(1);
}

.hcs-card:hover {
  border-color: rgba(0, 191, 168, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.hcs-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--teal-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal-deep);
  margin-bottom: 18px;
  transition: all .4s var(--ease-expo);
}

.hcs-card:hover .hcs-icon-wrap {
  background: var(--teal);
  color: var(--white);
  transform: rotate(-6deg) scale(1.1);
}

.hcs-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.hcs-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.hcs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hcs-tag {
  padding: 4px 12px;
  background: var(--teal-soft);
  border: 1px solid rgba(0, 191, 168, 0.2);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal-deep);
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #F0F6FF 0%, #FAFCFF 40%, #EBF2FF 100%);
}

.about-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 191, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 168, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.logo-orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 191, 168, 0.12);
  animation: lo-spin 18s linear infinite;
}

.lo-ring:nth-child(1) {
  inset: 0;
}

.lo-ring:nth-child(2) {
  inset: 50px;
  border-color: rgba(0, 191, 168, 0.08);
  animation-direction: reverse;
  animation-duration: 12s;
}

.lo-ring:nth-child(3) {
  inset: 100px;
  border-color: rgba(245, 158, 11, 0.07);
  animation-duration: 24s;
}

@keyframes lo-spin {
  to {
    transform: rotate(360deg);
  }
}

.lo-center {
  position: relative;
  z-index: 3;
  width: 200px;
  height: 200px;
  background: linear-gradient(145deg, #fff, var(--teal-soft));
  border: 2px solid var(--silver);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(0, 191, 168, 0.14);
  animation: lo-float 5s ease-in-out infinite;
}

@keyframes lo-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.lo-icon {
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
}

.lo-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--navy);
  line-height: 1;
}

.lo-brand span {
  color: var(--teal);
}

.lo-sub {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.lo-dot:nth-child(4) {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

.lo-dot:nth-child(5) {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  opacity: 0.7;
}

.lo-dot:nth-child(6) {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.lo-dot:nth-child(7) {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  opacity: 0.6;
}

.about-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-badge-a {
  bottom: 60px;
  right: -10px;
  animation: lo-float 6s ease-in-out infinite;
}

.about-badge-b {
  top: 60px;
  left: -10px;
  animation: lo-float 7s ease-in-out infinite 1s;
}

.ab-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--teal-deep);
}

.ab-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1;
}

.ab-lbl {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* About stats band */
.about-stats-band {
  background: var(--navy);
  padding: 80px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.about-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(0, 191, 168, 0.22) 0%, transparent 65%);
}

.about-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.astat {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.astat:last-child {
  border-right: none;
}

.astat-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  line-height: 1;
  color: #fff;
}

.astat-val sup {
  font-size: 1rem;
  color: var(--teal);
}

.astat-lbl {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* Story section */
.story-section {
  background: var(--off-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-card-stack {
  position: relative;
}

.story-main-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, #0A1E35 60%, #0D2B42 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--silver);
}

.story-main-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0, 191, 168, 0.14), transparent);
}

.story-car-icon {
  font-size: 7rem;
  color: var(--teal);
  opacity: 0.3;
  animation: carHover 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes carHover {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

.story-year-pill {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0, 191, 168, 0.35);
  color: var(--navy-deep);
  text-align: center;
}

.sy-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  line-height: 1;
}

.sy-lbl {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

/* Values band */
.values-band {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0A1E30 50%, var(--navy) 100%);
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.values-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 191, 168, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.values-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: all .4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  border-color: rgba(0, 191, 168, 0.22);
  background: rgba(0, 191, 168, 0.07);
  transform: translateY(-8px);
}

.vc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(0, 191, 168, 0.08);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: -8px;
}

.vc-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 191, 168, 0.1);
  border: 1px solid rgba(0, 191, 168, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 18px;
  transition: all .4s;
}

.value-card:hover .vc-icon {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
}

.vc-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
}

.vc-body {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Timeline */
.timeline-section {
  background: var(--white);
}

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--silver) 10%, var(--silver) 90%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.tl-dot-col {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.tl-dot {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(0, 191, 168, 0.2);
  flex-shrink: 0;
}

.tl-content {
  background: var(--off-white);
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: all .35s;
  cursor: default;
}

.tl-content:hover {
  border-color: rgba(0, 191, 168, 0.22);
  background: var(--teal-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 8px;
}

.tl-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.tl-body {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

.tl-item.right .tl-dot-col {
  grid-column: 2;
}

.tl-item.right .tl-content {
  grid-column: 3;
}

.tl-item.right .tl-spacer {
  grid-column: 1;
}

.tl-item.left .tl-dot-col {
  grid-column: 2;
}

.tl-item.left .tl-content {
  grid-column: 1;
}

.tl-item.left .tl-spacer {
  grid-column: 3;
}

/* Team */
.team-section {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all .4s var(--ease-expo);
}

.team-card:hover {
  border-color: rgba(0, 191, 168, 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-hi));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy-deep);
}

.team-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* About Why / Promise Grid */
.about-why {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0, 191, 168, 0.06) 0%, transparent 60%);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promise-card {
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  transition: all .4s var(--ease-expo);
}

.promise-card:hover {
  border-color: rgba(0, 191, 168, 0.22);
  background: var(--teal-soft);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-hi));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 191, 168, 0.28);
}

.pc-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.pc-body {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* About CTA */
.about-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal-deep) 60%, #00A896 100%);
  padding: 100px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-hero {
  min-height: 72vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F0F6FF 0%, #FAFCFF 40%, #EBF2FF 100%);
}

.svc-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 191, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 168, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Service card grid */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.sd-card {
  background: var(--off-white);
  border: 1.5px solid var(--silver);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .4s var(--ease-expo);
}

.sd-card:hover {
  border-color: rgba(0, 191, 168, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.sd-card-head {
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-deep);
  transition: all .4s;
}

.sd-card:hover .sd-icon {
  background: var(--teal);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.sd-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.sd-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

.sd-card-body {
  padding: 0 28px 28px;
}

.sd-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-mid);
}

.sd-feats li i {
  color: var(--teal-deep);
  font-size: 0.7rem;
}

.sd-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-deep);
  letter-spacing: 1px;
  margin-top: 20px;
}

.sd-price small {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

/* Process section */
.process-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 191, 168, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.proc-card {
  position: relative;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  transition: all .4s;
  text-align: center;
}

.proc-card:hover {
  background: rgba(0, 191, 168, 0.07);
  border-color: rgba(0, 191, 168, 0.2);
  transform: translateY(-8px);
}

.proc-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(0, 191, 168, 0.08);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}

.proc-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 191, 168, 0.1);
  border: 1px solid rgba(0, 191, 168, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin: 0 auto 18px;
  transition: all .4s;
}

.proc-card:hover .proc-icon {
  background: var(--teal);
  color: var(--navy-deep);
}

.proc-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 10px;
}

.proc-body {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* Connector arrow */
.proc-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 191, 168, 0.2);
  font-size: 1.5rem;
  z-index: 2;
}

/* FAQ */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 56px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: rgba(0, 191, 168, 0.25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color .3s;
}

.faq-q:hover {
  color: var(--teal-deep);
}

.faq-q-icon {
  color: var(--teal);
  font-size: 0.9rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-smooth);
}

.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #F0F6FF 0%, #FAFCFF 40%, #EBF2FF 100%);
}

.contact-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 191, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 168, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  transition: all .35s var(--ease-expo);
}

.ci-card:hover {
  border-color: rgba(0, 191, 168, 0.25);
  background: var(--teal-soft);
  transform: translateX(6px);
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--teal), var(--teal-hi));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.ci-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ci-val {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

/* Booking form */
.booking-section {
  background: var(--off-white);
}

.booking-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.booking-head {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 40px 48px 32px;
  position: relative;
  overflow: hidden;
}

.booking-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0, 191, 168, 0.12) 0%, transparent 60%);
}

.booking-head-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 8px;
  position: relative;
}

.booking-head-sub {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}

.booking-body {
  padding: 40px 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fg {
  position: relative;
}

.fg-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.fg-ctrl {
  width: 100%;
  padding: 13px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--silver);
  border-radius: var(--r-md);
  font-size: 0.87rem;
  color: var(--text-dark);
  transition: all .3s;
  outline: none;
}

.fg-ctrl:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 191, 168, 0.1);
}

select.fg-ctrl {
  appearance: none;
  cursor: pointer;
}

textarea.fg-ctrl {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--teal);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .35s var(--ease-expo);
  margin-top: 8px;
  box-shadow: 0 6px 28px rgba(0, 191, 168, 0.38);
}

.btn-submit:hover {
  background: var(--teal-hi);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 191, 168, 0.55);
}

#bookingSuccess {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
  gap: 16px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-hi));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--navy-deep);
  margin: 0 auto;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #F5F8FF 0%, #EBF2FF 45%, #F8FAFF 100%);
}

.pricing-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 191, 168, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
}

.pricing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--light-gray);
  border: 1.5px solid var(--silver);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 4px;
  margin: 32px auto 0;
}

.ptgl-btn {
  padding: 10px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: all .3s;
}

.ptgl-btn.active {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 4px 18px rgba(0, 191, 168, 0.35);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.p-card {
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .4s var(--ease-expo);
}

.p-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.p-card.featured {
  border-color: var(--teal);
  box-shadow: 0 12px 60px rgba(0, 191, 168, 0.2);
}

.p-card-ribbon {
  background: var(--teal);
  color: var(--navy-deep);
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-card-head {
  padding: 30px 28px 22px;
  background: var(--off-white);
  border-bottom: 1px solid var(--silver);
}

.p-card.featured .p-card-head {
  background: var(--teal-soft);
  border-bottom-color: rgba(0, 191, 168, 0.15);
}

.p-card-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.p-card.featured .p-card-eyebrow {
  color: var(--teal-deep);
}

.p-card-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--navy);
  line-height: 1;
}

.p-card-price sup {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-mid);
}

.p-card.featured .p-card-price sup {
  color: var(--teal-deep);
}

.p-card-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.p-card-save {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-top: 10px;
}

.p-card-body {
  padding: 22px 28px;
}

.p-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-mid);
}

.p-card-row:last-child {
  border-bottom: none;
}

.p-card-row i.fa-check {
  color: var(--teal-deep);
  font-size: 0.72rem;
}

.p-card-row i.fa-times {
  color: #ccc;
  font-size: 0.72rem;
}

.p-card-row.yes {
  color: var(--navy);
}

.p-card-row.no {
  color: var(--text-muted);
}

.p-card-footer {
  padding: 0 28px 28px;
}

.p-cta {
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.p-cta-ghost {
  background: white;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.p-cta-ghost:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.p-cta-teal {
  background: var(--teal);
  border: 2px solid var(--teal);
  color: var(--navy-deep);
}

.p-cta-teal:hover {
  background: var(--teal-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 191, 168, 0.45);
}

/* Pricing comparison table */
.compare-section {
  background: var(--off-white);
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 56px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--silver);
  font-size: 0.87rem;
}

.compare-table thead th {
  background: var(--navy-deep);
  color: white;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.compare-table thead th:first-child {
  border-radius: var(--r-md) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--r-md) 0 0;
}

.compare-table tbody tr:hover {
  background: var(--teal-soft);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.compare-table td i.fa-check {
  color: var(--teal-deep);
}

.compare-table td i.fa-times {
  color: #ccc;
}

/* ============================================================
   SHARED: CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, #00A896 100%);
  padding: 90px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--navy-deep);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(7, 21, 37, 0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta-white {
  background: var(--navy-deep);
  color: var(--teal);
  font-weight: 700;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-white:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.btn-cta-ghost {
  background: rgba(7, 21, 37, 0.12);
  color: var(--navy-deep);
  border: 1.5px solid rgba(7, 21, 37, 0.3);
}

.btn-cta-ghost:hover {
  background: rgba(7, 21, 37, 0.2);
  transform: translateY(-3px);
}

/* ============================================================
   POPUP BANNER (Index Only)
   ============================================================ */
#popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99000;
    background: rgba(4, 14, 24, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto; /* Added */
    opacity: 0;
    animation: popupFadeIn .5s var(--ease-expo) .6s forwards;
}

@keyframes popupFadeIn {
  to {
    opacity: 1;
  }
}

#popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .4s var(--ease-expo), visibility .4s var(--ease-expo);
}

.popup-box {
    background: var(--white);
    border-radius: var(--r-2xl);
    overflow-y: auto; /* Added */
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    max-height: 90vh; /* Added */
    box-shadow: 0 40px 120px rgba(0,0,0,.5);
    transform: scale(.9) translateY(20px);
    animation: popupSlideIn .6s var(--ease-back) .6s forwards;
    position: relative;
}

@keyframes popupSlideIn {
  to {
    transform: scale(1) translateY(0);
  }
}

.popup-head {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0A2545 100%);
  padding: 24px 28px 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

.popup-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0, 191, 168, 0.15) 0%, transparent 60%);
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 191, 168, 0.15);
  border: 1px solid rgba(0, 191, 168, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
    margin-bottom:12px;
    padding:5px 14px;
    font-size:.58rem;
    letter-spacing:2px;
  position: relative;
}

.popup-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.popup-title {
  font-family: var(--font-display);
    font-size:clamp(1.6rem,4vw,2.4rem);
    letter-spacing:2px;
    line-height:.9;
  color: white;
  position: relative;
}

.popup-title .highlight {
  background: linear-gradient(90deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-body {
    padding:20px 28px 24px;
  background: var(--white);
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
}

.popup-body p {
  color: var(--text-light);
    font-size:.82rem;
    line-height:1.55;
    margin-bottom:16px;
  text-align: center;
}

.popup-img-placeholder {
  width: 100%;
    height:140px;
    aspect-ratio:auto;
        margin-bottom:16px;
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--light-gray) 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 191, 168, 0.25);
  overflow: hidden;
  position: relative;
}

.popup-img-placeholder .placeholder-text {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
}

.popup-img-placeholder img {
    width:100%;
    height:100%;
    object-fit:contain; /* instead of cover */
    padding:10px;
}

.popup-actions {
  display: flex;
    gap:10px;
  flex-wrap: wrap;
}

.popup-actions .btn {
  flex: 1;
  justify-content: center;
    min-width:120px;
    padding:12px 18px;
    font-size:.8rem;
}

.popup-close {
  position: absolute;
    width:32px;
    height:32px;
    top:10px;
    right:10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  cursor: pointer;
  z-index: 200;
  transition: all .3s;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.28);
  color: white;
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── NAV on light-hero pages (about, services, contact, pricing) ── */
/* Add class "nav-light-page" to <nav id="nav"> on pages with light/white hero backgrounds */
#nav.nav-light-page {
  background: rgba(7, 21, 37, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 191, 168, 0.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hk-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hcs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-card:not(:last-child)::after {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .ham {
    display: flex;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hcs-grid {
    grid-template-columns: 1fr;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-orbit-wrap {
    width: 300px;
    height: 300px;
  }

  .lo-center {
    width: 150px;
    height: 150px;
  }

  .lo-icon {
    font-size: 3rem;
  }

  .timeline-line {
    left: 26px;
  }

  .tl-item {
    grid-template-columns: 52px 1fr;
  }

  .tl-item.right .tl-content,
  .tl-item.left .tl-content {
    grid-column: 2;
  }

  .tl-item.right .tl-dot-col,
  .tl-item.left .tl-dot-col {
    grid-column: 1;
  }

  .tl-item.right .tl-spacer,
  .tl-item.left .tl-spacer {
    display: none;
  }

  .booking-body,
  .booking-head {
    padding-left: 24px;
    padding-right: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .popup-body,
  .popup-head {
    padding-left: 24px;
    padding-right: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}