/* ============================================================
   SERENITY HOMECARE NURSING SERVICES — MAIN STYLESHEET
   Colors: Teal #1A7E8A | Gold #F5C518 | Black #0A0A0A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

:root {
  --teal:    #1A7E8A;
  --teal-dk: #115961;
  --teal-lt: #2BAFC0;
  --gold:    #F5C518;
  --gold-dk: #C9A20E;
  --black:   #0A0A0A;
  --dark:    #111518;
  --mid:     #1C2428;
  --grey:    #8A9AA5;
  --offwhite:#F0F4F5;
  --white:   #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Bebas Neue', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.35);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { line-height: 1.2; }
h1 { font-family: var(--font-display); font-size: clamp(2.4rem,6vw,5rem); font-weight: 700; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; }
h3 { font-family: var(--font-body); font-size: 1.25rem; font-weight: 600; }
h4 { font-family: var(--font-accent); font-size: 1.1rem; letter-spacing: 0.12em; color: var(--gold); }
p  { color: rgba(255,255,255,0.78); font-weight: 300; }
a  { color: inherit; text-decoration: none; }

.gold { color: var(--gold); }
.teal { color: var(--teal-lt); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-label {
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: #ffe066; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,126,138,0.45); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,126,138,0.2);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 72px; width: auto; mix-blend-mode: screen; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 12px; }

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
}

/* ── HERO (index) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.6) 70%, rgba(26,126,138,0.35) 100%);
}
/* Two-column grid inside hero container */
.hero > .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content {
  grid-column: 1;
  grid-row: 1;
}
.hero-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 32px;
  border-left: 1px solid rgba(26,126,138,0.3);
}
.hero-right-card {
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(26,126,138,0.25);
  border-radius: var(--radius);
  padding: 22px 24px;
  backdrop-filter: blur(8px);
}
.hero-right-card h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.hero-right-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }
.hero-right-card .badge {
  display: inline-block;
  background: rgba(26,126,138,0.2);
  border: 1px solid rgba(26,126,138,0.4);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--teal-lt);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* Stats span full width below both columns */
.hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.stat-item {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 24px;
}
.stat-item:last-child { border-right: none; margin-right: 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.05rem; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-num {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl { font-size: 0.8rem; color: var(--grey); font-weight: 500; margin-top: 4px; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-top: 8px; }
.section-header p { max-width: 580px; margin-top: 16px; font-size: 1.05rem; }

/* ── CARDS ── */
.card {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,126,138,0.4);
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(26,126,138,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── TEAL BAND ── */
.teal-band {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.why-img {
  min-height: 500px;
  background: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=800&q=80') center/cover no-repeat;
}
.why-content { background: var(--mid); padding: 56px 48px; }
.why-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(26,126,138,0.2);
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal-lt);
  font-size: 0.85rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--mid) 100%);
  border-top: 1px solid rgba(26,126,138,0.25);
  border-bottom: 1px solid rgba(26,126,138,0.25);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { max-width: 680px; margin: 0 auto 12px; }
.cta-band p { margin: 0 auto 36px; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--grey); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(26,126,138,0.2);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 80px; margin-bottom: 16px; mix-blend-mode: screen; }
.footer-brand p { font-size: 0.88rem; color: var(--grey); max-width: 280px; margin-bottom: 20px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(26,126,138,0.15);
  border: 1px solid rgba(26,126,138,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--white);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.footer-col h5 {
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contact-item .icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-item span { font-size: 0.88rem; color: var(--grey); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--grey);
}
.footer-bottom a { color: var(--teal-lt); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  border: 1px solid rgba(26,126,138,0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  white-space: nowrap;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0.7));
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--grey); }

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,126,138,0.2);
}
.service-card img {
  width: 100%; height: 200px; object-fit: cover;
  display: block;
}
.service-card-body { padding: 24px; }
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ── TEAM ── */
.team-card {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.team-card-body { padding: 24px; }
.team-creds {
  font-size: 0.78rem;
  color: var(--teal-lt);
  font-weight: 500;
  margin: 4px 0 8px;
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-card h4 { margin-bottom: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .cm-icon {
  width: 44px; height: 44px;
  background: rgba(26,126,138,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cm-label { font-size: 0.78rem; color: var(--grey); }
.cm-value { font-weight: 500; font-size: 0.93rem; }

/* ── FORM ── */
.form-card {
  background: var(--mid);
  border: 1px solid rgba(26,126,138,0.15);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(26,126,138,0.08);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .check {
  width: 72px; height: 72px;
  background: rgba(26,126,138,0.2);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* ── BOOKING PAGE ── */
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 10%; right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mid);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.step.active .step-circle { background: var(--teal); border-color: var(--teal); }
.step.done .step-circle { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-name { font-size: 0.78rem; color: var(--grey); }
.step.active .step-name { color: var(--white); }

.booking-panel { display: none; }
.booking-panel.active { display: block; }

.service-select-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.service-option {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.service-option:hover { border-color: var(--teal); background: rgba(26,126,138,0.08); }
.service-option.selected { border-color: var(--gold); background: rgba(245,197,24,0.08); }
.service-option .so-icon { font-size: 2rem; margin-bottom: 10px; }
.service-option p { font-size: 0.82rem; color: var(--grey); margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 100px; }
  .hero > .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-content { grid-column: 1; grid-row: 1; }
  .hero-right { grid-column: 1; grid-row: 2; border-left: none; border-top: 1px solid rgba(26,126,138,0.3); padding-left: 0; padding-top: 32px; }
  .hero-stats { grid-column: 1; grid-row: 3; flex-direction: column; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-right: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { min-height: 260px; }
  .grid-2, .grid-3, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .teal-band { padding: 36px 24px; }
  .form-card { padding: 24px; }
  .service-select-grid { grid-template-columns: repeat(2,1fr); }
  .booking-steps::before { display: none; }
}
@media (max-width: 480px) {
  .service-select-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
