/* ==========================================================================
   KOALA DETAILING - Complete Redesign
   Light, warm, friendly — matches the playful koala brand
   Teal accent for buttons/links ONLY, navy for text
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&family=Varela+Round&display=swap');

:root {
  /* Brand Core */
  --navy: #112F5B;
  --navy-light: #1B4178;
  --navy-dark: #0B1F3D;
  --teal: #0CC0DF;
  --teal-hover: #0AADCA;
  --teal-dark: #0998B3;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #F7F8FA;
  --bg-warm: #F0F2F5;
  --bg-section: #E8ECF1;
  --bg-navy: #112F5B;
  --bg-navy-dark: #0B1F3D;

  /* Text */
  --text-dark: #0F172A;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;
  --text-navy: #112F5B;

  /* Borders */
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;

  /* Typography */
  --font-heading: 'Varela Round', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  /* Type Scale */
  --text-hero: clamp(2.25rem, 5vw, 3.75rem);
  --text-h1: clamp(2rem, 4vw, 3rem);
  --text-h2: clamp(1.625rem, 3vw, 2.25rem);
  --text-h3: clamp(1.125rem, 2vw, 1.5rem);
  --text-h4: 1.125rem;
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 6.5rem);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-navy);
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: var(--text-h2);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 192, 223, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-lg); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: var(--text-sm); }
.btn-icon { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover .btn-icon { transform: translateX(2px); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 101;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: #fff;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile .nav-link { font-size: 1.5rem; color: var(--navy); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: #10B981; border-radius: 50%;
}

.hero-title {
  font-size: var(--text-hero);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust-icon {
  width: 36px; height: 36px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.hero-trust-text { font-size: var(--text-sm); color: var(--text-muted); }
.hero-trust-text strong { color: var(--text-dark); display: block; }

.hero-images {
  position: relative;
  height: 480px;
}
.hero-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

/* ---- Services ---- */
.services { padding: var(--section-py) 0; background: var(--bg-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: var(--text-h3);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: var(--text-sm);
  flex: 1;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}
.service-card-link:hover { gap: 0.6rem; }

/* ---- Why Us / Features ---- */
.why-us {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-item-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  margin-top: 2px;
}

.why-item h4 {
  font-size: var(--text-h4);
  margin-bottom: 0.25rem;
}
.why-item p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ---- Gallery ---- */
.gallery { padding: var(--section-py) 0; background: var(--bg-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,61,0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: #fff;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
  display: flex; gap: 2px;
  color: #F59E0B;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--text-dark);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* ---- About ---- */
.about { padding: var(--section-py) 0; background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}
.about-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--navy);
}
.about-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-images {
  position: relative;
  height: 440px;
}
.about-images img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-images img:first-child {
  width: 65%; height: 340px;
  top: 0; left: 0; z-index: 1;
}
.about-images img:last-child {
  width: 50%; height: 240px;
  bottom: 0; right: 0; z-index: 2;
  border: 4px solid #fff;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-top: 4rem;
  flex-wrap: wrap;
}
.trusted-logo {
  height: 36px; width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.trusted-logo:hover { opacity: 0.7; filter: grayscale(0%); }

/* ---- Service Areas ---- */
.areas { padding: var(--section-py) 0; background: var(--bg-cream); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}
.area-tag {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s ease;
}
.area-tag:hover {
  border-color: var(--teal);
  color: var(--navy);
}
.area-tag svg { color: var(--teal-dark); flex-shrink: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
  padding: var(--section-py) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.cta-banner h2 {
  font-size: var(--text-h1);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cta-banner-actions {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.cta-phone-line {
  margin-top: 1.5rem;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
}
.cta-phone-line a { color: #fff; transition: color 0.2s; }
.cta-phone-line a:hover { color: var(--teal); }

/* ---- Footer ---- */
.footer {
  background: var(--bg-navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo img { height: 36px; width: auto; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
}
.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: var(--text-sm);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ---- Page Header (for inner pages) ---- */
.page-header {
  padding: 9rem 0 3.5rem;
  background: var(--bg-cream);
  text-align: center;
}
.page-header h1 {
  font-size: var(--text-h1);
  margin-bottom: 0.75rem;
}
.page-header p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Services Detail Page ---- */
.services-detail { padding: var(--section-py) 0; }

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card:nth-child(even) .service-detail-img { order: 2; }

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-detail-content h2 {
  font-size: var(--text-h2);
  margin-bottom: 0.75rem;
}
.service-detail-content .tagline {
  font-size: var(--text-sm);
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-detail-content ul {
  margin-bottom: 1.5rem;
}
.service-detail-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-body);
  font-size: var(--text-sm);
}
.service-detail-content li svg {
  flex-shrink: 0;
  color: var(--teal-dark);
  margin-top: 3px;
}

/* ---- About Page ---- */
.about-story { padding: var(--section-py) 0; }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text h2 {
  font-size: var(--text-h2);
  margin-bottom: 1.5rem;
}
.about-story-text p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}

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

.value-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.value-card-icon {
  width: 48px; height: 48px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--navy);
}
.value-card h3 {
  font-size: var(--text-h4);
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ---- Gallery Page ---- */
.gallery-page { padding: var(--section-py) 0; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-page-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-page-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-item .gallery-overlay {
  background: linear-gradient(to top, rgba(11,31,61,0.6), transparent 50%);
}

/* ---- Book Online Page ---- */
.booking-section { padding: var(--section-py) 0; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.booking-info h2 {
  font-size: var(--text-h2);
  margin-bottom: 1rem;
}
.booking-info p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.booking-step {
  display: flex; gap: 1rem; align-items: flex-start;
}
.booking-step-num {
  width: 32px; height: 32px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--navy);
  flex-shrink: 0;
}
.booking-step-text h4 {
  font-size: var(--text-base);
  margin-bottom: 0.15rem;
}
.booking-step-text p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.booking-card h3 {
  font-size: var(--text-h3);
  margin-bottom: 0.75rem;
}
.booking-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.booking-card .btn { width: 100%; }

.booking-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.booking-contact p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.booking-contact a {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--navy);
}

/* ---- Booking page extras ---- */
.booking-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  color: var(--navy);
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.booking-phone:hover { color: var(--teal-dark); }

.booking-step-number {
  width: 32px; height: 32px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--navy);
  flex-shrink: 0;
}
.booking-step-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--text-navy);
  margin-bottom: 0.15rem;
}
.booking-step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-contact address {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Services quick links */
.services-quick {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}
.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.services-quick-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.services-quick-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.services-quick-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--text-navy);
  margin-bottom: 0.35rem;
}
.services-quick-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services page reverse layout */
.service-detail-card.reverse .service-detail-img { order: 2; }

/* About page image */
.about-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Service detail tagline/list aliases */
.service-detail-tagline {
  font-size: var(--text-sm);
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.service-detail-list {
  margin-bottom: 1.5rem;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-body);
  font-size: var(--text-sm);
}
.service-detail-list li svg {
  flex-shrink: 0;
  color: var(--teal-dark);
  margin-top: 3px;
}

@media (max-width: 768px) {
  .services-quick-grid { grid-template-columns: 1fr; }
  .service-detail-card.reverse .service-detail-img { order: 0; }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ---- Intro Splash ---- */
/* Splash screen */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-splash.shrink .intro-logo-wrap {
  animation: intro-shrink 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-splash.shrink .intro-text {
  animation: intro-text-out 0.4s ease forwards;
}
.intro-splash.shrink {
  animation: intro-bg-out 0.7s ease 0.5s forwards;
}
.intro-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: intro-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.intro-logo {
  animation: intro-bounce 0.8s ease 0.15s both;
}
.intro-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  opacity: 0;
  animation: intro-fade-up 0.5s ease 0.45s forwards;
}

/* Phase 1: logo appears */
@keyframes intro-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes intro-bounce {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(-4deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes intro-fade-up {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Phase 2: logo shrinks up toward nav, bg fades */
@keyframes intro-shrink {
  0% { transform: scale(1) translateY(0); opacity: 1; }
  100% { transform: scale(0.35) translateY(-45vh); opacity: 0; }
}
@keyframes intro-text-out {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes intro-bg-out {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Hero entrance (triggered after splash) */
.hero-content .hero-tag,
.hero-content .hero-title,
.hero-content .hero-desc,
.hero-content .hero-actions,
.hero-content .hero-trust,
.hero-images {
  opacity: 0;
  transform: translateY(30px);
}
.hero-enter .hero-tag {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}
.hero-enter .hero-title {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero-enter .hero-desc {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-enter .hero-actions {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-enter .hero-trust {
  animation: hero-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.hero-enter .hero-images {
  animation: hero-img-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
@keyframes hero-in {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-img-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Before / After Slider ---- */
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
}
.ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ba-handle-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
  color: var(--navy);
}
.ba-handle-circle svg {
  transform: rotate(90deg);
}
.ba-label-before, .ba-label-after {
  position: absolute;
  top: 0.75rem;
  z-index: 4;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.ba-label-before { left: 0.75rem; }
.ba-label-after { right: 0.75rem; }

/* ---- Clean Gallery Grid (no gaps) ---- */
.gallery-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .ba-row { grid-template-columns: 1fr; }
  .gallery-grid-clean { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-images { display: none; }
  .hero-content { max-width: 600px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) .service-detail-img { order: 0; }
  .about-story-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .hero { padding: 8rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .about-images { height: 280px; }
  .about-images img:first-child { width: 70%; height: 230px; }
  .about-images img:last-child { width: 50%; height: 180px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-item img { height: 220px; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .about-stats { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ---- Focus & Selection ---- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: rgba(12, 192, 223, 0.2);
  color: var(--text-dark);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
