/* ============================================================
   Extraaa Clean — Main Theme Stylesheet
   Design: Professional, trustworthy, bright/clean aesthetic
   Colors: White + deep navy (#0f1b2d) + teal accent (#0ea5e9)
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-brand:        #0ea5e9;
  --clr-brand-dark:   #0284c7;
  --clr-brand-light:  #e0f2fe;
  --clr-navy:         #0f1b2d;
  --clr-navy-mid:     #1e3352;
  --clr-text:         #1a2332;
  --clr-muted:        #64748b;
  --clr-border:       #e2e8f0;
  --clr-bg:           #ffffff;
  --clr-bg-alt:       #f8fafc;
  --clr-success:      #16a34a;
  --clr-danger:       #dc2626;

  --font-body:        'Inter', system-ui, -apple-system, sans-serif;
  --font-size-base:   16px;

  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        28px;

  --shadow-sm:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:        0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:        0 12px 32px rgba(0,0,0,.12);

  --container:        1160px;
  --section-py:       80px;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--clr-muted); }
.text-brand { color: var(--clr-brand); }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-py);
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section--navy {
  background: var(--clr-navy);
  color: #fff;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all .2s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--clr-brand);
  color: #fff;
  border-color: var(--clr-brand);
}

.btn-primary:hover {
  background: var(--clr-brand-dark);
  border-color: var(--clr-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-brand);
  border-color: var(--clr-brand);
}

.btn-outline:hover {
  background: var(--clr-brand);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--clr-navy);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--clr-brand-light);
  border-color: var(--clr-brand-light);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--clr-muted);
  font-size: 0.95rem;
}

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: -0.03em;
}

.site-logo-text span {
  color: var(--clr-brand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { display: inline-block; }

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}

.nav-link:hover,
.nav-item.is-active .nav-link {
  color: var(--clr-brand);
  background: var(--clr-brand-light);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

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

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 60%, #0f3460 100%);
  color: #fff;
  padding-block: 100px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--clr-brand);
}

.hero-content .hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(14,165,233,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
}

.hero-stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-stat-card:last-child { margin-bottom: 0; }

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-brand);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}

.hero-rating-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-rating-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.hero-rating-details {
  flex: 1;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.star { color: #d1d5db; font-size: 1rem; }
.star.filled { color: #f59e0b; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-brand);
  padding-block: 14px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* ── Services Section ─────────────────────────────────────────── */
.service-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-brand);
  margin-bottom: 4px;
}

.service-card-price-note {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.service-card-features {
  margin-bottom: 28px;
}

.service-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--clr-muted);
  padding-block: 5px;
}

.service-card-feature::before {
  content: '✓';
  color: var(--clr-success);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card.featured {
  border-color: var(--clr-brand);
  background: linear-gradient(180deg, var(--clr-brand-light) 0%, #fff 30%);
}

.service-card.featured .service-badge {
  display: inline-block;
  background: var(--clr-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── How It Works ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-brand-light), var(--clr-brand), var(--clr-brand-light));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(14,165,233,.35);
}

.step-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--clr-muted);
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--clr-text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-brand);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-brand-dark) 100%);
  padding-block: var(--section-py);
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ── Guarantee Section ────────────────────────────────────────── */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.guarantee-item h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.guarantee-item p {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* ── Stats Section ────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}

/* ── About Page ───────────────────────────────────────────────── */
.about-hero {
  background: var(--clr-bg-alt);
  padding-block: 80px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--clr-brand-light), var(--clr-brand));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-item {
  padding: 28px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.contact-info-item a:hover {
  color: var(--clr-brand);
}

/* ── Forms ────────────────────────────────────────────────────── */
.form-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-brand);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.form-control::placeholder {
  color: #9ca3af;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.form-message.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: var(--clr-success);
  display: block;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: var(--clr-danger);
  display: block;
}

/* ── Booking Page ─────────────────────────────────────────────── */
.booking-page-header {
  background: var(--clr-navy);
  padding-block: 56px;
  text-align: center;
  color: #fff;
}

.booking-page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}

.booking-page-header p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.booking-page-content {
  background: var(--clr-bg-alt);
  min-height: 60vh;
  padding-block: 40px 60px;
}

/* Booking trust strip */
.booking-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.85rem;
  color: var(--clr-muted);
}

.booking-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* ── Thank You Page ───────────────────────────────────────────── */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  background: var(--clr-bg-alt);
}

.thankyou-card {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  width: 100%;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
  border: 3px solid #86efac;
}

.thankyou-card h1 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.thankyou-card p {
  color: var(--clr-muted);
  margin-bottom: 0;
}

.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── Services Page ────────────────────────────────────────────── */
.services-hero {
  background: var(--clr-navy);
  padding-block: 80px;
  text-align: center;
  color: #fff;
}

.services-hero h1 { color: #fff; margin-bottom: 16px; }
.services-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; }

.services-comparison {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.services-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.services-comparison th,
.services-comparison td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.services-comparison th {
  background: var(--clr-bg-alt);
  font-weight: 600;
  color: var(--clr-navy);
}

.services-comparison td:not(:first-child) {
  text-align: center;
}

.services-comparison .check { color: var(--clr-success); font-size: 1.1rem; }
.services-comparison .dash  { color: var(--clr-muted); }

.services-comparison tr:last-child td { border-bottom: none; }

/* ── Page Banner ──────────────────────────────────────────────── */
.page-banner {
  background: var(--clr-navy);
  padding-block: 64px;
  text-align: center;
}

.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,.75);
}

.footer-main {
  padding-block: 64px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact-line a:hover { color: var(--clr-brand); }

.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}

.footer-links a:hover { color: var(--clr-brand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--clr-brand); }

/* ── Floating CTA ─────────────────────────────────────────────── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--clr-bg);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
  }

  .mobile-menu .nav-item { display: block; }

  .mobile-menu .nav-link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    display: block;
  }

  .mobile-menu-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border);
  }

  .mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .steps-grid::before { display: none; }
  .steps-grid { gap: 32px; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .floating-cta { display: block; }

  .hero { padding-block: 64px 80px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 28px 16px;
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2) {
    border-bottom: none;
  }

  .contact-grid { gap: 32px; }

  .form-card { padding: 28px 24px; }

  .thankyou-card { padding: 40px 28px; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero { padding-block: 48px 60px; }
  .btn-lg { padding: 16px 24px; font-size: 0.95rem; }
  .stat-value { font-size: 2.25rem; }
  .hero-badges { gap: 12px; }
}

/* ── Utility Classes ─────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-4 { margin-top: 32px !important; }

.hidden { display: none !important; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animate on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Page templates */
.template-fullwidth .site-content {
  padding: 0;
}

.template-booking .site-content {
  padding: 0;
}
