/* ============================================================
   PHYSIO BY DR. REHMAN — styles.css
   GlobalWebX | Version 1.0 | April 2026
   Design Direction: Clinical Momentum
   One shared stylesheet — linked on every HTML page
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&family=Crimson+Text:ital,wght@1,400;1,600&display=swap');

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

/* ── CSS VARIABLES ── */
:root {
  /* Brand Colours */
  --teal:           #0D9488;
  --teal-dark:      #0a7a70;
  --teal-light:     #e0f7f5;
  --teal-mid:       #5ECCB7;
  --navy:           #0B3A45;
  --navy-dark:      #072830;
  --navy-light:     #1a5568;
  --amber:          #F59E0B;
  --amber-dark:     #d97706;
  --amber-light:    #fef3c7;
  --white:          #FFFFFF;
  --black:          #000000;
  --red-dot:        #EF4444;

  /* UI Colours */
  --color-bg:         #FFFFFF;
  --color-bg-soft:    #f8fafb;
  --color-bg-dark:    var(--navy);
  --color-text:       #0f172a;
  --color-text-mid:   #475569;
  --color-text-soft:  #94a3b8;
  --color-border:     #e2e8f0;
  --color-border-mid: #cbd5e1;

  /* Fonts */
  --font-display: 'Raleway', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
  --font-accent:  'Crimson Text', serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-xxl:  6.5rem;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(11,58,69,0.08);
  --shadow-md:   0 6px 24px rgba(11,58,69,0.12);
  --shadow-lg:   0 16px 48px rgba(11,58,69,0.16);
  --shadow-teal: 0 8px 32px rgba(13,148,136,0.25);

  /* Transitions */
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-height: 72px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--color-text-mid); line-height: 1.8; }

.lead {
  font-size: 1.2rem;
  color: var(--color-text-mid);
  line-height: 1.8;
}
.tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--teal);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-tag.amber { color: var(--amber-dark); background: var(--amber-light); }
.section-tag.white { color: var(--white); background: rgba(255,255,255,0.15); }
.section-tag.navy  { color: var(--navy); background: rgba(11,58,69,0.08); }

/* ================================================================
   LAYOUT
   ================================================================ */
.container    { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: var(--space-xxl) 0; }

.section-dark { background: var(--navy); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p,.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-dark .section-tag { color: var(--teal-mid); background: rgba(13,148,136,0.15); }

.section-soft  { background: var(--color-bg-soft); }
.section-teal  { background: var(--teal); }
.section-teal h1,.section-teal h2,.section-teal h3 { color: var(--white); }
.section-teal p { color: rgba(255,255,255,0.85); }

.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-teal     { color: var(--teal) !important; }
.text-amber    { color: var(--amber) !important; }
.text-navy     { color: var(--navy) !important; }

.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-col      { flex-direction: column; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { margin: 0; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,148,136,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg, .btn img { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.transparent { background: transparent; }
#navbar.solid {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}
.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
#navbar.solid .nav-logo-text { color: var(--navy); }
#navbar.solid .nav-logo-text span { color: var(--teal); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.88);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a.highlight {
  color: var(--amber);
  position: relative;
}
.nav-links a.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
}
.nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
#navbar.solid .nav-links a { color: var(--color-text-mid); }
#navbar.solid .nav-links a.highlight { color: var(--amber-dark); }
#navbar.solid .nav-links a:hover { background: var(--teal-light); color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
#navbar.transparent .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: none;
}
#navbar.transparent .btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.solid .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer — slide in from right */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: calc(var(--nav-height) + 1.5rem) 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right var(--transition-slow);
  box-shadow: -8px 0 48px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu a.highlight { color: var(--amber); }
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); padding-left: 1.4rem; }
.mobile-menu .btn { margin-top: 1.5rem; }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.75rem 0; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1099;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--nav-height);
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,58,69,0.9) 0%,
    rgba(11,58,69,0.55) 55%,
    rgba(11,58,69,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.78); margin-bottom: 1.25rem; max-width: 520px; }
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--amber);
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar { background: var(--teal); padding: 2.25rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}
.stat-number sup { font-size: 1rem; vertical-align: super; }
.stat-plus { color: var(--amber); }
.stat-percent { color: var(--amber); }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================================
   HOME PHYSIO STRIP
   ================================================================ */
.home-physio-strip {
  background: var(--navy);
  padding: 2.25rem 0;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.strip-left { display: flex; align-items: center; gap: 1.25rem; }
.strip-icon {
  width: 54px; height: 54px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.strip-text h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.25rem; }
.strip-text h3 em { color: var(--amber); font-style: normal; }
.strip-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-intro { margin-bottom: 3.5rem; }
.section-intro.center { text-align: center; }
.section-intro h2 { margin-bottom: 0.9rem; }
.section-intro p { max-width: 580px; }
.section-intro.center p { margin: 0 auto; }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--teal); }
.card h4 { margin-bottom: 0.5rem; color: var(--navy); }
.card p  { font-size: 0.93rem; margin: 0; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card.featured {
  border-left: 3px solid var(--amber);
  background: var(--amber-light);
}
.service-icon {
  width: 42px; height: 42px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-card.featured .service-icon { background: var(--amber-light); }
.service-card h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.15rem; }
.service-card p  { font-size: 0.8rem; margin: 0; line-height: 1.5; }
.service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  margin-top: 0.3rem;
}

/* ================================================================
   ABOUT / DOCTOR SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.about-badge-label { font-size: 0.8rem; opacity: 0.85; margin-top: 0.2rem; }
.credential-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.credential-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 3-step process */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.process-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.75rem;
}
.process-step:last-child { padding-bottom: 0; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 40px; height: 40px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  background: var(--teal-light);
  margin-top: 0.5rem;
}
.process-step:last-child .step-line { display: none; }
.step-body { padding-top: 0.5rem; }
.step-body h4 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1rem; }
.step-body p  { font-size: 0.9rem; margin: 0; }

/* ================================================================
   HOME PHYSIO PAGE SPECIFIC
   ================================================================ */
.home-physio-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.home-physio-hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.coverage-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.coverage-card:hover {
  background: rgba(13,148,136,0.15);
  border-color: var(--teal);
}
.coverage-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.coverage-card p  { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

/* Booking form */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 640px;
}
.booking-form-wrap h3 { color: var(--navy); margin-bottom: 0.5rem; }
.booking-form-wrap > p { margin-bottom: 2rem; font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition);
  background: var(--color-bg-soft);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.whatsapp-color { color: #25D366; }
.form-submit-area { margin-top: 1.5rem; }

/* ================================================================
   REVIEWS CAROUSEL
   ================================================================ */
.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -1.5rem;
  padding: 1rem 1.5rem 2rem;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carousel-scroll 35s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  width: 300px;
  flex-shrink: 0;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; color: var(--amber); font-size: 0.95rem; }
.review-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.review-card blockquote::before { content: '\201C'; color: var(--teal); font-size: 1.4rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  flex-shrink: 0;
}
.author-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-tag  { font-size: 0.78rem; color: var(--color-text-soft); }
.review-result-badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-border-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--teal); width: 20px; border-radius: var(--radius-pill); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   LOCATION SECTION
   ================================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.location-details { display: flex; flex-direction: column; gap: 1.5rem; }
.location-item { display: flex; align-items: flex-start; gap: 1rem; }
.location-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.location-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 0.25rem; font-family: var(--font-display); }
.location-item p  { font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* Hours table */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--color-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.45rem 0; font-size: 0.9rem; color: var(--color-text-mid); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours-table .closed { color: var(--color-text-soft); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 0.3rem; }
.footer-col ul li a.highlight { color: var(--amber); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { color: var(--teal-mid); }
.globalwebx-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.globalwebx-credit span { color: var(--teal); }

/* ================================================================
   STICKY WHATSAPP BUTTON
   ================================================================ */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ring-pulse 2.5s ease-out infinite;
}
.whatsapp-ring-2 {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,0.3);
  animation: ring-pulse 2.5s ease-out infinite 0.6s;
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
  border-right: none;
}
.whatsapp-sticky:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--teal));
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.breadcrumb a { color: var(--teal-mid); transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ================================================================
   ANIMATIONS — KEYFRAMES
   ================================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
@keyframes ring-pulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-left {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ================================================================
   SCROLL ANIMATION CLASSES (Intersection Observer)
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale      { transform: scale(0.93); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ================================================================
   DIVIDERS
   ================================================================ */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: var(--radius-pill);
  margin: 0.75rem 0;
  width: 60px;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider.full { width: 100%; }
.divider.white { background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1)); }

/* ================================================================
   MISC COMPONENTS
   ================================================================ */
/* Trust badge row */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.trust-badge-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* Highlight box */
.highlight-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
}
.highlight-box.amber {
  background: var(--amber-light);
  border-left-color: var(--amber);
}
.highlight-box p { color: var(--navy); font-size: 0.95rem; margin: 0; font-weight: 500; }

/* Alert / notice */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--navy);
}
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

/* ================================================================
   RESPONSIVE — TABLET  (max 960px)
   ================================================================ */
@media (max-width: 960px) {
  :root { --space-xxl: 5rem; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
  .about-badge { right: 0; }

  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .coverage-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .form-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE — MOBILE  (max 640px)
   ================================================================ */
@media (max-width: 640px) {
  :root { --space-xxl: 4rem; --nav-height: 64px; }

  .container { padding: 0 1.1rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

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

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .cta-buttons { flex-direction: column; align-items: center; }

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

  .strip-inner { flex-direction: column; text-align: center; }
  .strip-left  { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .booking-form-wrap { padding: 1.5rem; }

  .whatsapp-sticky { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-btn { width: 52px; height: 52px; }

  .review-card { width: 270px; }

  .about-badge { position: static; margin-top: 1.5rem; display: inline-block; }

  .trust-badges { gap: 1rem; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  #navbar, .whatsapp-sticky, .mobile-menu, .menu-overlay { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}
