/* =======================================================
   D'LAWY CRISP — Professional Cleaning Services
   Main Stylesheet
   ======================================================= */

/* ---- 1. Design Tokens -------------------------------- */
:root {
  --navy:        #0B1D35;
  --navy-mid:    #1E3A5F;
  --navy-light:  #2D5282;
  --blue:        #3B82F6;
  --blue-light:  #60A5FA;
  --cyan:        #06B6D4;
  --cyan-light:  #22D3EE;
  --emerald:     #10B981;
  --amber:       #F59E0B;
  --white:       #FFFFFF;
  --off-white:   #F8FAFF;
  --gray-50:     #F0F9FF;
  --gray-100:    #E0F2FE;
  --gray-200:    #BAE6FD;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;
  --text:        #1E293B;
  --text-muted:  #64748B;

  --shadow-xs:   0 1px 3px rgba(11,29,53,.08);
  --shadow-sm:   0 4px 12px rgba(11,29,53,.10);
  --shadow-md:   0 8px 24px rgba(11,29,53,.14);
  --shadow-lg:   0 16px 40px rgba(11,29,53,.18);
  --shadow-xl:   0 24px 64px rgba(11,29,53,.22);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full:9999px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --max-w:  1280px;
  --nav-h:  76px;
}

/* ---- 2. Reset & Base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
svg { display: block; }

/* ---- 3. Typography ----------------------------------- */
.heading-xl {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.heading-lg {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.heading-md {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
}
.heading-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ---- 4. Layout --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--dark { background: var(--navy); color: var(--white); }
.section--tint { background: var(--gray-50); }
.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header .heading-lg { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section-header p { color: var(--gray-200); }

/* ---- 5. Navigation ----------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: rgba(11,29,53,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav.nav--light.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.nav__logo-text span { color: var(--cyan); }
.nav__logo-sub {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}
.nav--light .nav__logo-text { color: var(--navy); }
.nav--light .nav__logo-text span { color: var(--cyan); }

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__links a {
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav--light .nav__links a { color: var(--gray-700); }
.nav--light .nav__links a:hover { color: var(--navy); background: var(--gray-50); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.1);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav--light .nav__hamburger { background: var(--gray-100); }
.nav--light .nav__hamburger span { background: var(--navy); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
  gap: .5rem;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: .9rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .2s, color .2s;
}
.nav__mobile a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav__mobile .btn { margin-top: 1rem; justify-content: center; }

/* ---- 6. Buttons -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1.6rem;
  border-radius: var(--r-full);
  font-size: .93rem;
  font-weight: 600;
  transition: transform .2s var(--ease-spring), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97) !important; }
.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(6,182,212,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,182,212,.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn--green {
  background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
}
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,.4); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn--whatsapp:hover { transform: translateY(-2px); background: #1EBF5D; }

/* ---- 7. Badge / Chip --------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge--cyan   { background: rgba(6,182,212,.15);  color: var(--cyan); }
.badge--green  { background: rgba(16,185,129,.15); color: var(--emerald); }
.badge--amber  { background: rgba(245,158,11,.15); color: var(--amber); }
.badge--white  { background: rgba(255,255,255,.15); color: var(--white); }

/* ---- 8. Hero ----------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, #0D2847 55%, #0A2240 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(6,182,212,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59,130,246,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem 4rem;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 600px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .4rem 1rem;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--cyan-light);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--cyan-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
}
.hero__trust-item svg { color: var(--emerald); flex-shrink: 0; }

/* --- Hero Carousel ------------------------------------ */
.hero__carousel-wrap {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__carousel-stack {
  position: relative;
  width: 360px;
  height: 440px;
}
.service-card-preview {
  position: absolute;
  width: 320px;
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform .7s var(--ease), opacity .7s var(--ease), z-index 0s;
  will-change: transform, opacity;
}
.service-card-preview:nth-child(1) { top: 0; left: 0; z-index: 5; }
.service-card-preview:nth-child(2) { top: 20px; left: 20px; z-index: 4; opacity: .8; transform: scale(.95); }
.service-card-preview:nth-child(3) { top: 40px; left: 40px; z-index: 3; opacity: .6; transform: scale(.9); }
.service-card-preview.exit {
  opacity: 0;
  transform: translateX(-60px) scale(.85);
  z-index: 1;
}
.service-card-preview.enter {
  opacity: 0;
  transform: translateX(60px) scale(.9);
}

.service-card-preview__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.2);
}
.service-card-preview__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.service-card-preview__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-card-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-preview__price {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.service-card-preview__price strong {
  font-size: 1.1rem;
  color: var(--white);
}
.hero__carousel-dots {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.hero__carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero__carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--cyan);
}

/* ---- 9. Stats Bar ------------------------------------ */
.stats-bar {
  background: var(--navy-mid);
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  divide: solid rgba(255,255,255,.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-item__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item__value span { color: var(--cyan); }
.stat-item__label {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---- 10. Services Carousel --------------------------- */
.services-carousel { overflow: hidden; position: relative; }
.services-carousel__track-wrap { overflow: hidden; }
.services-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s var(--ease);
}
.service-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.service-card__icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card__desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card__cta {
  font-size: .83rem;
  font-weight: 600;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: .5rem;
  transition: gap .2s;
}
.service-card:hover .service-card__cta { gap: 8px; }
.services-carousel__nav {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease-spring);
}
.carousel-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.1);
}
.carousel-btn:disabled { opacity: .35; pointer-events: none; }

/* ---- 11. Why Choose Us ------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background .3s, transform .3s var(--ease-spring);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.why-card__desc { font-size: .88rem; color: var(--gray-400); line-height: 1.7; }

/* ---- 12. How It Works -------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: .3;
}
.step-card { text-align: center; position: relative; }
.step-card__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(6,182,212,.35);
}
.step-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.step-card__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ---- 13. Testimonials -------------------------------- */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform .5s var(--ease);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.1rem);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-right: 1.5rem;
  transition: box-shadow .3s, transform .3s var(--ease-spring);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card__stars { display: flex; gap: 3px; color: var(--amber); }
.testimonial-card__text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-card__role { font-size: .8rem; color: var(--text-muted); }

/* ---- 14. Gallery ------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}
.gallery-item__inner {
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-item__inner { transform: scale(1.04); }
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem .75rem;
  background: linear-gradient(0deg, rgba(11,29,53,.85) 0%, transparent 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item__label { opacity: 1; }

/* Gallery Placeholder Visuals */
.gallery-g1 { background: linear-gradient(145deg, #0D4F5E 0%, #1A7A8A 50%, #26A0B0 100%); }
.gallery-g2 { background: linear-gradient(145deg, #1A3A5C 0%, #1E5F74 50%, #2980B9 100%); }
.gallery-g3 { background: linear-gradient(145deg, #0D5933 0%, #1A8A50 50%, #27AE60 100%); }
.gallery-g4 { background: linear-gradient(145deg, #3D1A5C 0%, #6C3483 50%, #8E44AD 100%); }
.gallery-g5 { background: linear-gradient(145deg, #4A2800 0%, #8B4513 50%, #CD853F 100%); }
.gallery-inner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.gallery-inner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .25;
}

/* ---- 15. CTA Section --------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2847 60%, #0A2A5E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,182,212,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59,130,246,.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .heading-lg { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.7); max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cta-section__or {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,.35);
  font-size: .85rem;
  font-weight: 500;
  margin: .75rem 0;
  justify-content: center;
}
.cta-section__or::before, .cta-section__or::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255,255,255,.15);
}

/* ---- 16. Footer -------------------------------------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p { font-size: .88rem; line-height: 1.7; margin-top: .75rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.55); }
.footer__social {
  display: flex;
  gap: .6rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--cyan); color: var(--white); }
.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--cyan); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan); }
.footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: var(--cyan); transition: opacity .2s; }
.footer__bottom a:hover { opacity: .8; }

/* ---- 17. Services Page ------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
  background: linear-gradient(145deg, var(--navy) 0%, #0D2847 100%);
  color: var(--white);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--cyan); }
.page-hero__breadcrumb span { opacity: .5; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  background: var(--white);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s var(--ease-spring);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-full-card__visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.service-full-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.service-full-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.service-full-card__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.service-full-card__includes {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
}
.service-full-card__tag {
  font-size: .73rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  background: var(--gray-50);
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
}
.service-full-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--off-white);
}
.service-full-card__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-muted);
}
.service-full-card__price strong { font-size: 1.15rem; color: var(--navy); }

/* ---- 18. Booking Page -------------------------------- */
.booking-section { padding: calc(var(--nav-h) + 2rem) 0 5rem; background: var(--gray-50); min-height: 100vh; }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.booking-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.booking-steps-bar {
  display: flex;
  background: var(--navy);
  padding: 1.5rem 2rem;
  gap: 0;
}
.booking-step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  gap: .5rem;
  transition: color .3s;
}
.booking-step-indicator.active { color: var(--white); }
.booking-step-indicator.done { color: var(--emerald); }
.booking-step-indicator__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background .3s;
}
.booking-step-indicator.active .booking-step-indicator__num { background: var(--cyan); }
.booking-step-indicator.done .booking-step-indicator__num { background: var(--emerald); }
.booking-step-indicator:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 0 .5rem;
}
.booking-form-body { padding: 2rem; }
.booking-panel { display: none; }
.booking-panel.active { display: block; }
.booking-panel__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.booking-panel__sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; }

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.service-select-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s var(--ease-spring);
  text-align: center;
}
.service-select-card:hover { border-color: var(--cyan); background: var(--gray-50); }
.service-select-card.selected { border-color: var(--cyan); background: rgba(6,182,212,.07); }
.service-select-card__icon { font-size: 1.75rem; margin-bottom: .5rem; }
.service-select-card__name { font-size: .82rem; font-weight: 700; color: var(--navy); }

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.booking-summary-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.booking-summary-card__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.booking-summary-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--text-muted);
  margin-bottom: .65rem;
}
.booking-summary-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.booking-whatsapp-card {
  background: linear-gradient(135deg, #075E54, #128C7E);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: var(--white);
}
.booking-whatsapp-card h4 { font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: .5rem; }
.booking-whatsapp-card p { font-size: .85rem; opacity: .85; margin-bottom: 1rem; line-height: 1.6; }

/* ---- 19. Scroll Animations --------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ---- 20. Floating WhatsApp Button -------------------- */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--gray-900);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ---- 21. Utilities ----------------------------------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-row { display: flex; flex-direction: column; gap: .75rem; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ---- 22. Responsive ---------------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta-row { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__carousel-wrap { height: 360px; }
  .hero__carousel-stack { width: 300px; height: 360px; }
  .service-card-preview { width: 280px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn:not(.nav__cta .btn:first-child) { display: none; }
  .nav__hamburger { display: flex; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:first-child { grid-row: span 1; }
  .service-card { flex: 0 0 calc(50% - .75rem); min-width: 200px; }
  .testimonial-card { flex: 0 0 calc(100% - .75rem); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__carousel-wrap { display: none; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { flex: 0 0 calc(100% - .5rem); }
  .why-grid, .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }
  .service-select-grid { grid-template-columns: 1fr 1fr; }
}
