/* ============================================================
   SERVICE CENTRE – Main Stylesheet
   ============================================================ */

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

:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #dbeafe;
  --blue-50:     #eff6ff;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --green:       #16a34a;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(37,99,235,.08);
  --shadow-lg:   0 8px 40px rgba(37,99,235,.14);
  --transition:  all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  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, select, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
}

.btn--outline {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn--call {
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn--call:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- Section ---------- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.logo--white span { color: var(--white); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  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); }

/* Desktop Nav is hidden, mobile nav used everywhere in this design */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0;
  width: min(300px, 85vw);
  height: calc(100vh - 68px);
  background: var(--white);
  box-shadow: 4px 0 32px rgba(0,0,0,.12);
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 0;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-50); padding-left: 36px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 90px;
  background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 55%, #f0f6ff 100%);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
  bottom: 0; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  border: 1.5px solid #bfdbfe;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeSlideUp .6s ease both;
}

/* Heading */
.hero__heading {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeSlideUp .7s ease both;
}
.highlight { color: var(--blue); }

.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeSlideUp .8s ease both;
}

/* CTA buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeSlideUp .9s ease both;
}

.hero__book { font-size: 16px; padding: 16px 36px; }
.hero__book .arrow { font-size: 20px; line-height: 1; }
.hero__call { font-size: 15px; padding: 16px 28px; }

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeSlideUp 1s ease both;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }

/* Hero image */
.hero__image-wrap {
  position: relative;
  animation: fadeIn 1s ease both .3s;
}
.hero__img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Rating card */
.rating-card {
  position: absolute;
  bottom: 28px; right: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  text-align: center;
  min-width: 130px;
  animation: popIn .6s ease both .8s;
}
.rating-card__score {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.rating-card__stars {
  color: #f59e0b;
  font-size: 16px;
  margin: 4px 0;
  letter-spacing: 1px;
}
.rating-card__label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bfdbfe;
}

.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-card__list {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.service-card__list li {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.service-card__list li { color: #374151; }
.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
}
.service-card__link:hover { letter-spacing: 0.5px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--white); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   BRANDS
   ============================================================ */
.brands { background: var(--bg); }

.brands__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}
.brand-chip:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  color: var(--white);
}
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,.75); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 200px;
}

.step__num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}
.step:hover .step__num {
  background: rgba(255,255,255,.25);
  transform: scale(1.08);
}

.step__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.step__content p {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.step__connector {
  flex: 0 0 60px;
  height: 2px;
  background: rgba(255,255,255,.25);
  margin-top: 36px;
  align-self: flex-start;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }

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

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.review-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--white); }

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  background: var(--blue-50);
  border: 1.5px solid #bfdbfe;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
  cursor: default;
}
.area-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.contact {
  background: linear-gradient(135deg, var(--bg) 0%, #e0edff 100%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.contact__info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__detail-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact__detail-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact__detail-item a, .contact__detail-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.contact__detail-item a { color: var(--blue); }

/* Form */
.booking-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }

.form-success {
  display: none;
  margin-top: 16px;
  background: #dcfce7;
  border: 1.5px solid #86efac;
  color: #15803d;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  animation: fadeSlideUp .4s ease;
}

.form-error {
  margin-bottom: 16px;
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  animation: fadeSlideUp .4s ease;
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: calc(100vh - 68px);
  padding-top: 100px;
  padding-bottom: 80px;
  background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 60%, #f0f6ff 100%);
  display: flex;
  align-items: center;
}

.thankyou-inner {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 52px 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp .6s ease both;
}

.thankyou-icon {
  font-size: 56px;
  margin-bottom: 20px;
  animation: popIn .6s ease both .2s;
}

.thankyou-card h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.thankyou-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.thankyou-sub strong { color: var(--text); }

.thankyou-summary {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }

.summary-label {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.summary-val {
  font-weight: 600;
  color: var(--text);
}

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

.thankyou-note {
  font-size: 13px;
  color: var(--text-muted);
}
.thankyou-note a { color: var(--blue); }

@media (max-width: 480px) {
  .thankyou-card { padding: 36px 20px; }
  .thankyou-card h1 { font-size: 26px; }
  .thankyou-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }

.faq__inner { max-width: 760px; margin: 0 auto; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: #bfdbfe; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-item__q:hover { background: var(--blue-50); color: var(--blue); }
.faq-item__q.open { background: var(--blue-50); color: var(--blue); }

.faq-arrow {
  font-size: 18px;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item__q.open .faq-arrow { transform: rotate(180deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item__a.open {
  max-height: 200px;
  padding: 16px 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.85);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__cta { font-size: 14px; padding: 12px 24px; }

.footer__links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  max-width: 1200px;
  margin: 0 auto;
}
.footer__disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  text-align-last: center;
}
.footer__disclaimer strong {
  color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.fab-call {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--green);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(22,163,74,.5);
  z-index: 990;
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}
.fab-call:hover {
  transform: translateY(-2px);
  background: #15803d;
}

@media (max-width: 768px) {
  .fab-call {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    border-radius: 0;
    padding: 18px;
    font-size: 18px;
    animation: none;
    box-shadow: 0 -4px 16px rgba(0,0,0,.15);
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(22,163,74,.5); }
  50%       { box-shadow: 0 6px 40px rgba(22,163,74,.7), 0 0 0 10px rgba(22,163,74,.12); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid--3 { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile-ish tablet */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-top: 24px;
  }
  .hero__sub { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .trust-pills { justify-content: center; }

  .hero__img { max-width: 340px; margin: 0 auto; border-radius: 20px; }
  .rating-card { right: 0; }

  .services__grid--3 { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }

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

  .steps { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 40px; margin-top: 0; }

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

/* Small Mobile */
@media (max-width: 480px) {
  .hero__heading { font-size: 28px; }
  .hero__book, .hero__call { width: 100%; justify-content: center; }

  .services__grid--3 { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }

  .booking-form { padding: 28px 20px; }

  /* Fix header overflow on small screens */
  .header__inner { gap: 6px; }
  .logo { font-size: 14px; gap: 4px; }
  .btn--call.header__cta { padding: 8px 12px; font-size: 13px; }


  .header__inner { height: 60px; }
  .mobile-nav { top: 60px; height: calc(100vh - 60px); }

  .badge { font-size: 12px; }
}

/* ---- Service card with image ---- */
.service-card__img-wrap {
  position: relative;
  width: calc(100% + 60px);
  margin: -36px -30px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img {
  transform: scale(1.06);
}
.service-card__badge {
  position: absolute;
  bottom: 12px; left: 14px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.service-card__body {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
