/* ============================================================
   PRESTIGE CLEANERS — UNIQUE SECTION DESIGNS
   Colors: #0071bc (primary) | #FFC802 (yellow) | #5CC4F3 (sky)
   Font: Open Sans
   ============================================================ */

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

:root {
  --blue: #0071bc;
  --blue-dk: #005a96;
  --blue-lg: #e8f4fd;
  --sky: #5CC4F3;
  --sky-dk: #339BE0;
  --yellow: #FFC802;
  --yellow-dk: #e6b400;
  --white: #ffffff;
  --offwhite: #f8f9fc;
  --grey: #6f7680;
  --dark: #0f1f3d;
  --border: #e5eaf0;
  --r: 14px;
  --rp: 100px;
  --sh: 0 4px 24px rgba(0, 113, 188, .12);
  --sha: 0 12px 48px rgba(0, 113, 188, .2);
  --t: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #374151;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.text-blue {
  color: var(--blue);
}

/* ============================================================
   CHIPS / BADGES
   ============================================================ */
.chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--rp);
  margin-bottom: 14px;
}

.chip-blue {
  background: var(--blue-lg);
  color: var(--blue);
  border: 1px solid rgba(0, 113, 188, .2);
}

.chip-yellow {
  background: rgba(255, 200, 2, .12);
  color: #a07800;
  border: 1px solid rgba(255, 200, 2, .3);
}

.chip-white {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

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

.sec-header-white {
  text-align: center;
  margin-bottom: 48px;
}

.sec-h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.sec-h2.white {
  color: #fff;
}

.sec-header p {
  font-size: .95rem;
  color: var(--grey);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--blue);
  padding: 9px 0;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.tb-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .25);
  margin: 0 16px;
}

.tb-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  font-weight: 500;
  transition: color var(--t);
}

.tb-link:hover {
  color: var(--yellow);
}

.tb-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tb-hours {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
}

.tb-socials {
  display: flex;
  gap: 10px;
}

.tb-socials a {
  color: rgba(255, 255, 255, .65);
  transition: all var(--t);
}

.tb-socials a:hover {
  color: var(--yellow);
  transform: scale(1.15);
}

.tb-socials svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .12);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo img {
  max-height: 70px;
  width: auto;
}

.brand-fallback {
  flex-direction: column;
  line-height: 1.1;
}

.brand-fallback strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .1em;
}

.brand-fallback span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--grey);
  margin-top: 2px;
}

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.mnav {
  font-size: .88rem;
  font-weight: 700;
  color: #374151;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color var(--t);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mnav svg {
  width: 12px;
  height: 12px;
  transition: transform var(--t);
}

.mnav:hover,
.mnav.active {
  color: var(--blue);
}

.mnav.active {
  background: var(--blue-lg);
}

/* Dropdown */
.has-sub {
  position: relative;
}

.has-sub:hover .mnav svg {
  transform: rotate(180deg);
}

.subnav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  z-index: 500;
}

.has-sub:hover .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.subnav a {
  display: block;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
  transition: all var(--t);
}

.subnav a:first-child {
  border-radius: 12px 12px 0 0;
}

.subnav a:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.subnav a:hover {
  background: var(--blue-lg);
  color: var(--blue);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--blue);
  border: 2px solid rgba(0, 113, 188, .25);
  padding: 9px 18px;
  border-radius: var(--rp);
  transition: all var(--t);
}

.nav-call:hover {
  background: var(--blue-lg);
  border-color: var(--blue);
}

.nav-call svg {
  width: 14px;
  height: 14px;
}

.nav-book {
  background: var(--yellow);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--rp);
  font-size: .88rem;
  font-weight: 800;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(255, 200, 2, .35);
}

.nav-book:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 200, 2, .45);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 10px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 390;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
}

.drawer.open {
  right: 0;
}

.drawer-head {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head img {
  height: 52px;
  width: auto;
}

.drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--grey);
  transition: all var(--t);
}

.drawer-close:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.drawer-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.drawer-nav a {
  display: block;
  padding: 14px 20px;
  font-size: .93rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  transition: all var(--t);
}

.drawer-nav a:hover {
  background: var(--blue-lg);
  color: var(--blue);
}

.drawer-book {
  display: block;
  margin: 16px;
  background: var(--blue);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  transition: all var(--t);
}

.drawer-book:hover {
  background: var(--blue-dk);
}

/* ============================================================
   HERO — FULL OVERLAY WITH TEXT ON BANNER
   ============================================================ */
.hero {
  position: relative;
}

.hero-media {
  position: relative;
  height: 620px;
  overflow: hidden;
}

@media(min-width:1024px) {
  .hero-media {
    height: 680px;
  }
}

.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  transition: transform 8s ease-out;
}

.swiper-slide-active img {
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 38, 0.95) 0%, rgba(12, 35, 64, 0.85) 30%, rgba(12, 35, 64, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

/* Hero Swiper Arrows */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all var(--t);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 20;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
  border-color: var(--yellow);
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
  font-size: 1.4rem;
  font-weight: 900;
}

/* Hero text */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 28px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  max-width: 800px;
}

.hero-accent {
  color: var(--yellow);
  font-style: italic;
  padding-right: 8px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, .85);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hbtn-yellow {
  background: var(--yellow);
  color: #1a2237;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 200, 2, .3);
  transition: all var(--t);
}

.hbtn-yellow:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 200, 2, .4);
}

.hbtn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: all var(--t);
}

.hbtn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Hero bottom strip */
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.hstrip-item {
  flex: 1;
  background: var(--blue);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.hstrip-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: .8;
}

.hstrip-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
}

.hstrip-item span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
}

.hstrip-sep {
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

.hero-dots-wrap {
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 18px 28px;
  position: relative;
  width: auto;
}

.hero-dots-wrap .swiper-pagination {
  position: relative;
  bottom: 0;
}

.hero-dots-wrap .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  opacity: 1;
  transition: all var(--t);
  margin: 0 4px;
}

.hero-dots-wrap .swiper-pagination-bullet-active {
  background: #fff;
  width: 26px;
  border-radius: 5px;
}

/* ============================================================
   ABOUT — ANGLED CLIP-PATH
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--blue-lg);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

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

/* Stacked image with badges */
.about-img-stack {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ab-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
}

.ab-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.ab-badge-1 {
  bottom: -20px;
  left: -20px;
  flex-direction: column;
  text-align: center;
  min-width: 100px;
}

.ab-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.ab-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--grey);
}

.ab-badge-2 {
  top: -16px;
  right: -16px;
  background: var(--yellow);
  color: #fff;
  font-size: .82rem;
  border-radius: 10px;
}

.ab-badge-2 svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* About copy */
.about-h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.yellow-em {
  font-style: italic;
  color: var(--yellow-dk);
}

.about-copy p {
  color: var(--grey);
  margin-bottom: 14px;
  font-size: .93rem;
  line-height: 1.75;
}

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.astat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
}

.astat-n {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.astat-l {
  display: block;
  font-size: .7rem;
  color: var(--grey);
  font-weight: 600;
  margin-top: 4px;
}

.astat-sep {
  width: 1px;
  background: var(--border);
  height: 60px;
}

.btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--rp);
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--t);
  box-shadow: var(--sh);
}

.btn-prim:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: var(--sha);
}

/* ============================================================
   SERVICES — STAGGERED MOSAIC
   ============================================================ */
.services {
  padding: 100px 0;
  background: #fff;
}

.lux-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 48px;
}

.lux-item {
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 320px;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: all var(--t);
}

.lux-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.05);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.lux-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.3) 100%);
  opacity: 1;
  transition: background 0.4s ease;
  z-index: 1;
}

.lux-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lux-num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .1em;
  margin-bottom: auto;
}

.lux-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.lux-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  margin-bottom: 4px;
}

.lux-arrow {
  font-size: 1.2rem;
  color: var(--yellow);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  margin-top: 8px;
  font-weight: 800;
}

.lux-item:hover .lux-bg {
  transform: scale(1);
}

.lux-item:hover::before {
  background: linear-gradient(to top, rgba(10, 25, 47, 0.98) 0%, rgba(10, 25, 47, 0.6) 100%);
}

.lux-item:hover .lux-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SAME DAY — BOLD TYPOGRAPHY BANNER
   ============================================================ */
.sameday {
  background: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.sameday-diagonal {
  display: none;
}

.sameday-layout {
  background: var(--blue);
  border-radius: 32px;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 113, 188, .2);
}

.sameday-layout::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 45%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, .05);
  transform: rotate(15deg);
  pointer-events: none;
}

.sameday-left {
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sameday-big-num {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.sameday-tag {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-top: 12px;
}

.sameday-mid-line {
  width: 2px;
  height: 140px;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.sameday-right {
  flex: 1;
  position: relative;
  z-index: 2;
}

.sameday-h {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sameday-p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 90%;
}

.btn-yellow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--t);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-yellow-pill:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

/* ============================================================
   PICKUP — PREMIUM CLEAN TIMELINE
   ============================================================ */
.pickup {
  padding: 100px 0;
  background: #fff;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.pickup .sec-h2 {
  color: var(--dark);
}

.pickup .sec-header p {
  color: var(--grey);
}

.pickup .chip {
  background: var(--blue-lg);
  color: var(--blue);
  border-color: rgba(0, 113, 188, .2);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .03);
  border: 1px solid var(--border);
  transition: all var(--t);
  text-align: left;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 113, 188, .08);
  border-color: rgba(0, 113, 188, .2);
}

.step-card-num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: var(--blue-lg);
  opacity: 0.6;
  line-height: 1;
  transition: all var(--t);
}

.step-card:hover .step-card-num {
  color: var(--blue);
  opacity: 0.1;
  transform: scale(1.1);
}

.step-card-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-lg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--t);
}

.step-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.step-card:hover .step-card-icon {
  background: var(--blue);
  transform: rotate(-5deg);
}

.step-card:hover .step-card-icon svg {
  color: #fff;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: .92rem;
  color: var(--grey);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--blue);
}

.step-arrow svg {
  width: 20px;
  height: 20px;
}

.step-card-featured {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(0, 113, 188, .25);
}

.step-card-featured .step-card-num {
  color: #fff;
  opacity: 0.1;
}

.step-card-featured:hover .step-card-num {
  color: #fff;
  opacity: 0.2;
}

.step-card-featured .step-card-icon {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.step-card-featured .step-card-icon svg {
  color: #fff;
}

.step-card-featured:hover .step-card-icon {
  background: var(--yellow);
}

.step-card-featured:hover .step-card-icon svg {
  color: var(--dark);
}

.step-card-featured h3 {
  color: #fff;
}

.step-card-featured p {
  color: rgba(255, 255, 255, .8);
}

.pickup-note {
  background: var(--offwhite);
  border: 1px dashed var(--border);
  border-radius: 100px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  max-width: max-content;
  margin: 0 auto;
}

.pickup-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue);
}

/* ============================================================
   WHY US — WAVE & CARDS
   ============================================================ */
.why-wcu {
  position: relative;
  background: #f8fafc;
  padding: 120px 0 100px;
  overflow: hidden;
}

.why-wcu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--blue);
  z-index: 0;
}

.wcu-wave {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(-99%);
}

.wcu-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.why-wcu .container {
  position: relative;
  z-index: 2;
}

.wcu-title {
  text-align: center;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

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

.wcu-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all var(--t);
}

.wcu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 113, 188, 0.12);
}

.wcu-card-header {
  background: var(--blue);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wcu-card-header h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.wcu-swoosh {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 100%;
}

.wcu-swoosh::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-bottom-left-radius: 100%;
}

.wcu-card-body {
  padding: 28px 16px 16px;
}

.wcu-card-body p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS — CAROUSEL & GLASSMORPHISM
   ============================================================ */
.testimonials {
  background: linear-gradient(145deg, var(--blue) 0%, var(--sky-dk) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.testimonials .sec-header .sec-h2 {
  color: #fff;
}

.testimonials .sec-header p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials .sec-header .chip {
  background: var(--yellow);
  color: var(--dark);
  border: none;
}

.testi-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.testi-left {
  width: 35%;
  flex-shrink: 0;
}

.testi-right {
  width: 65%;
  min-width: 0;
}

.testi-left .sec-h2 {
  color: #fff;
  text-align: left;
  margin-top: 16px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.testi-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.tcard {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t);
  margin: 15px;
  height: 100%;
}

.tcard:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tcard-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  line-height: .7;
  color: var(--yellow);
  font-weight: 800;
  font-style: italic;
  opacity: .5;
}

.tcard-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, .95);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.tcard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tcard-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}

.tcard-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Owl Carousel Customizations */
.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.3) !important;
  width: 12px !important;
  height: 12px !important;
  margin: 5px 7px !important;
  transition: all 0.3s ease !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--yellow) !important;
  transform: scale(1.2);
}

.owl-carousel .owl-stage-outer {
  padding-bottom: 20px;
}

/* ============================================================
   CONTACT — UNIFIED CARD LAYOUT
   ============================================================ */
.contact {
  padding: 40px 0 100px;
  background: var(--offwhite);
}

.contact-bg-accent {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 680px;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .08);
}

/* LEFT — Blue info panel */
.cinfo {
  background: linear-gradient(160deg, var(--blue) 0%, var(--sky-dk) 100%);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cinfo::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cinfo::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.cinfo .chip {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.cinfo h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cinfo h2 span.text-blue {
  color: var(--yellow);
}

.cinfo-sub {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 36px;
  font-size: .9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cinfo-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cinfo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 14px 18px;
  transition: all var(--t);
  color: #fff;
  text-decoration: none;
}

.cinfo-block:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .35);
  transform: translateX(4px);
}

.cinfo-block-blue {
  border-color: rgba(255, 200, 2, .45);
}

.cib-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cib-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.cib-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 3px;
  display: block;
}

.cib-val {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  word-break: break-word;
}

/* Form */
.cform-wrap {
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.cform-header {
  background: var(--dark);
  padding: 30px 44px;
  border-radius: 0;
}

.cform-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.cform-header p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.cform-body {
  padding: 32px 44px 44px;
  flex: 1;
  background: #fff;
}

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

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cf-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--offwhite);
  border: 2px solid var(--border);
  color: #374151;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  font-weight: 500;
  transition: border-color var(--t);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: #9ca3af;
}

.cf-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.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 13px center;
  padding-right: 34px;
}

.cf-group textarea {
  resize: vertical;
  min-height: 90px;
}

.cf-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 16px;
  border-radius: var(--rp);
  font-size: .95rem;
  font-weight: 800;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 18px rgba(0, 113, 188, .3);
  margin-top: 4px;
}

.cf-submit:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 113, 188, .4);
}

/* ============================================================
   FOOTER — VIBRANT BLUE THEME
   ============================================================ */
.footer {
  background: var(--blue);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle background graphic for the footer */
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.ft-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  /* Use mix-blend-mode so the white background of the logo blends into the blue footer, leaving just the dark logo text/icon visible */
  mix-blend-mode: multiply;
}

.ft-logo-fallback {
  margin-bottom: 16px;
}

.ftlf-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: 2px;
}

.ftlf-sub {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, 0.7);
}

.ft-tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.ft-socials {
  display: flex;
  gap: 12px;
}

.ft-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--t);
  background: transparent;
}

.ft-socials a:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.ft-socials svg {
  width: 16px;
  height: 16px;
}

.ft-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-col ul li a,
.ft-col ul li span {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t);
  text-decoration: none;
}

.ft-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.ft-hours {
  margin-top: 24px;
}

.ft-hours-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.ft-hours div {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.6);
}

.ft-bottom-links {
  display: flex;
  gap: 20px;
}

.ft-bottom-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
  text-decoration: none;
}

.ft-bottom-links a:hover {
  color: #fff;
}

/* ============================================================
   FIXED ELEMENTS
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t);
  box-shadow: 0 4px 18px rgba(0, 113, 188, .35);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: all var(--t);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   WHY CHOOSE US — SPLIT LIGHT PREMIUM
   ============================================================ */
.why-new {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.why-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.why-desc {
    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.why-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.why-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}
.why-float-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--yellow);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark);
}
.why-float-badge strong {
    font-size: 1.8rem;
    font-weight: 800;
}
.why-float-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wn-card {
    background: #fff;
    border: 1px solid rgba(0, 113, 188, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all var(--t);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.wn-card:hover {
    transform: translateX(10px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(0, 113, 188, 0.12);
}
.wn-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--blue-lg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: all var(--t);
    flex-shrink: 0;
}
.wn-card:hover .wn-icon-wrap {
    background: var(--blue);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.wn-icon-wrap svg {
    width: 28px;
    height: 28px;
}
.wn-text h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
}
.wn-text p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================================
   SECTION BACKGROUND DIFFERENTIATION & DESIGNS
   ============================================================ */
/* 1. Services Section */
#services {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7fc 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Abstract floating shape for Services */
#services::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(92, 196, 243, 0.1), rgba(0, 113, 188, 0.05));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatBlob 15s ease-in-out infinite;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 30px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* 2. Same Day Service Banner Container */
.sameday {
  background: #f0f7fc;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Giant text watermark for Same Day */
.sameday::before {
  content: 'FAST';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(0, 113, 188, 0.03);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
}

/* 3. Pickup Section */
.pickup {
  background: var(--offwhite);
  border-top: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pickup::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 188, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.pickup::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 2, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.ao-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease var(--delay, 0s), transform .6s ease var(--delay, 0s);
}

.ao-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.ao-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}

.ao-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.ao-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}

.ao-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1200px) {
  .lux-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media(max-width:1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-bg-shape {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cinfo {
    padding: 52px 36px;
  }

  .cform-header {
    padding: 26px 32px;
  }

  .cform-body {
    padding: 28px 32px;
  }

  .sameday-layout {
    flex-direction: column;
    gap: 32px;
    padding: 48px 32px;
    text-align: center;
  }

  .sameday-mid-line {
    display: none;
  }

  .sameday-p {
    max-width: 100%;
  }

  .steps-track {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .step-arrow {
    display: none;
  }

  .why-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large {
    grid-column: span 2;
  }
}

@media(max-width:900px) {
  .lux-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .testi-left,
  .testi-right {
    width: 100%;
  }

  .testi-left .sec-h2 {
    text-align: center;
  }

  .why-split {
    grid-template-columns: 1fr;
  }
  
  .wn-card:hover {
    transform: translateY(-5px);
  }
}

@media(max-width:768px) {
  .tb-right {
    display: none;
  }

  .topbar-inner {
    flex-wrap: nowrap;
  }

  .tb-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  .tb-divider {
    display: none;
  }

  .tb-link {
    white-space: nowrap;
  }

  .main-nav,
  .nav-call,
  .nav-book {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-media {
    height: 420px;
  }

  .hero-body {
    padding: 0 20px 32px;
  }

  .hero-strip {
    position: static;
  }

  .hero-strip-inner {
    flex-direction: column;
  }

  .hstrip-sep {
    display: none;
  }

  .hstrip-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .hstrip-item:last-child {
    border: none;
  }

  .why-bento {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-std {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .pickup-note {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
  }

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

  .cform-body {
    padding: 24px 20px;
  }

  .cform-header {
    padding: 22px 20px;
  }

  .cinfo {
    padding: 40px 24px;
  }

  .lux-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .hero-h1 {
    font-size: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hbtn-yellow,
  .hbtn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .lux-item {
    height: 280px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}/* ============================================================
   INNER PAGES HERO (About, Pricing, etc.)
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  margin-bottom: 60px;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 31, 61, 0.7);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.inner-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.inner-hero-content h1 span {
  color: var(--yellow);
}
.inner-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Three Column Grid for Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.value-card {
  background: var(--offwhite);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}
.value-icon {
  width: 70px;
  height: 70px;
  background: var(--blue-lg);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.value-icon svg {
  width: 32px;
  height: 32px;
}
.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--grey);
}
