/* ============ ACCESSIBILITY SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-teal);
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 8px;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
  font-size: 14px;
}

.skip-link:focus {
  top: 20px;
}

/* ============ HEADER & NAVIGATION ============ */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 35, 49, 0.08);
}

header.sticky-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

header.sticky-header .header-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 12px;
}

header.sticky-header .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-ink);
}

header.sticky-header .brand-logo {
  width: 90px;
  height: 70px;
  background: transparent;
  border: none;
  mix-blend-mode: multiply;
}

header.sticky-header .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

header.sticky-header nav.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: auto;
}

header.sticky-header nav.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 46px;
  box-sizing: border-box;
  transition: color 0.2s ease, border-color 0.2s ease;
}

header.sticky-header nav.nav-menu a.active {
  color: var(--color-teal);
  border-bottom: 2px solid var(--color-aqua);
}

header.sticky-header nav.nav-menu a {
  display: flex;
  align-items: center;
  height: 25px;
}

header.sticky-header nav.nav-menu a.inactive {
  color: rgba(13, 35, 49, 0.75);
  border-bottom: 2px solid transparent;
}

header.sticky-header nav.nav-menu a.inactive:hover {
  color: var(--color-teal);
}

/* ============ NAV DROPDOWN MENU ============ */
.nav-item-has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item-trigger-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle-btn {
  display: none;
  /* Hidden on desktop */
  background: transparent;
  border: none;
  color: rgba(13, 35, 49, 0.75);
  cursor: pointer;
  padding: 4px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown-toggle-btn:hover {
  color: var(--color-teal);
}

.nav-dropdown-toggle-btn.open {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(14px);
  border: var(--border-card);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(13, 35, 49, 0.15);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 100;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
}

/* Dropdown Bridge to prevent flicker on hover transition */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

/* Hover & Focus within display logic on desktop */
@media (min-width: 901px) {

  .nav-item-has-dropdown:hover .nav-dropdown,
  .nav-item-has-dropdown:focus-within .nav-dropdown,
  .nav-item-has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown-item {
  display: flex !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(13, 35, 49, 0.75) !important;
  text-decoration: none;
  border-radius: 10px;
  background: transparent;
  height: auto !important;
  border-bottom: none !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: rgba(13, 35, 49, 0.05) !important;
  color: var(--color-teal) !important;
}

.nav-dropdown-item.active {
  background: var(--color-tint) !important;
}

header.sticky-header .cta-book-pickup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-ink);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

header.sticky-header .cta-book-pickup:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}


/* ============ PROMO BAR ============ */
.promo-bar {
  background: var(--color-ink);
  color: var(--color-tint);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
}

.promo-bar .promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-aqua);
  display: inline-block;
}

.promo-bar .promo-separator {
  opacity: 0.5;
}


/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .glow-top-right {
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(20, 180, 198, 0.22), rgba(20, 180, 198, 0) 68%);
}

.hero-section .glow-bottom-left {
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(20, 180, 198, 0.14), rgba(20, 180, 198, 0) 70%);
}

.hero-section .hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 32px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
  position: relative;
}



.hero-section .hero-left {
  animation: tlbRise 280ms ease-out both;
}

.hero-section .hero-caption {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--color-tint);
  border: 1px solid rgba(11, 126, 140, 0.25);
  color: var(--color-teal);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.hero-section .hero-caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
}

.hero-section h1.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}

.hero-section h1.hero-title span.highlight {
  color: var(--color-aqua);
}

.hero-section h1.hero-title p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0 !important;
  padding: 0 !important;
  display: inline;
  color: inherit;
}

.hero-section h1.hero-title .rich-text {
  margin: 0 !important;
  padding: 0 !important;
  display: inline;
}

.hero-section h1.hero-title strong,
.hero-section h1.hero-title b,
.hero-section h1.hero-title p strong,
.hero-section h1.hero-title p b {
  color: var(--color-aqua) !important;
}

h2.section-title p,
h2.section-title .rich-text {
  margin: 0 !important;
  padding: 0 !important;
  display: inline;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.hero-section p.hero-subtitle,
.hero-section .hero-subtitle,
.hero-section .hero-subtitle p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(13, 35, 49, 0.7);
  max-width: 560px;
  margin: 0 0 10px;
  text-wrap: pretty;
}

.hero-section p.hero-seo-line,
.hero-section .hero-subtitle .supporting-text {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: rgba(13, 35, 49, 0.4) !important;
  margin: 0px 0 30px !important;
  max-width: 480px !important;
  display: block !important;
  font-family: var(--font-body) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: 1.6 !important;
}

.hero-section .hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary-aqua {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  box-sizing: border-box;
  background: var(--color-aqua);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 16px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(20, 180, 198, 0.35);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary-aqua:hover {
  background: var(--color-ink);
  color: #fff;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  box-sizing: border-box;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 16px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid rgba(13, 35, 49, 0.08);
}

.btn-secondary-outline:hover {}

.hero-section .hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-section .stat-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-section .stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-ink);
}

.hero-section .stat-lbl {
  font-size: 12.5px;
  color: rgba(13, 35, 49, 0.55);
}

.hero-section .stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(13, 35, 49, 0.14);
}

.hero-section .hero-chips-container {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-section .floating-chip-1 {
  background: #fff;
  border: var(--border-card);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card-default);
  animation: tlbFloat 5s ease-in-out infinite;
}

.hero-section .floating-chip-1 .chip-check {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 12px;
  background: var(--color-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-teal);
  font-family: var(--font-display);
}

.hero-section .floating-chip-1 .chip-text {
  display: flex;
  flex-direction: column;
}

.hero-section .floating-chip-1 .chip-title {
  font-weight: 700;
  font-size: 13.5px;
}

.hero-section .floating-chip-1 .chip-sub {
  font-size: 12px;
  color: rgba(13, 35, 49, 0.55);
}

.hero-section .floating-chip-2 {
  background: var(--color-ink);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(13, 35, 49, 0.18);
  animation: tlbFloat2 6s ease-in-out infinite;
}

.hero-section .floating-chip-2 .chip-badge {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--color-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-ink);
  font-size: 15px;
}

.hero-section .floating-chip-2 .chip-text {
  display: flex;
  flex-direction: column;
}

.hero-section .floating-chip-2 .chip-title {
  font-weight: 700;
  font-size: 13.5px;
}

.hero-section .floating-chip-2 .chip-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-section .hero-right {
  position: relative;
  animation: tlbRise 280ms 80ms ease-out both;
}


/* ============ QUICK BOOKING CARD ============ */
.quick-booking-card {
  background: #fff;
  border: var(--border-card);
  border-radius: var(--radius-card-large);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(13, 35, 49, 0.12);
}

.quick-booking-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.quick-booking-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.quick-booking-card .duration-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  background: var(--color-tint);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.quick-booking-card .card-subtitle {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(13, 35, 49, 0.5);
  margin-bottom: 10px;
}

.quick-booking-card .services-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.quick-booking-card .service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--color-paper);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.quick-booking-card .service-chip:has(input:checked) {
  background: var(--color-tint);
  border: 1.5px solid var(--color-aqua);
}

.quick-booking-card .service-chip-icon-wrap {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--color-tint);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-booking-card .service-chip-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-booking-card .service-chip-label {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}

.quick-booking-card .btn-continue {
  width: 100%;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
}

.quick-booking-card .btn-continue:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.quick-booking-card .card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.quick-booking-card .card-footer-text {
  font-size: 12.5px;
  color: rgba(13, 35, 49, 0.45);
}

.quick-booking-card .card-footer-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
}


/* ============ MARQUEE STRIP ============ */
.marquee-strip {
  background: var(--color-ink);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-strip .marquee-container {
  display: flex;
  width: max-content;
  animation: tlbMarquee 26s linear infinite;
}

.marquee-strip .marquee-content {
  display: flex;
  gap: 44px;
  padding-right: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--color-tint);
  white-space: nowrap;
}

.marquee-strip .marquee-dot {
  color: var(--color-aqua);
}


/* ============ DOORSTEP INTRO ============ */
.doorstep-intro {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px 88px;
}

.doorstep-intro .doorstep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}

.doorstep-intro .doorstep-photo {
  width: 100%;
  height: 340px;
  background: var(--color-tint);
  border: var(--border-card);
  border-radius: 24px;
}

.doorstep-intro .doorstep-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.doorstep-intro h2.doorstep-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 18px;
}

.doorstep-intro p.doorstep-text-1,
.doorstep-intro .doorstep-text-1,
.doorstep-intro .doorstep-text-1 p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(13, 35, 49, 0.65);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.doorstep-intro p.doorstep-text-2,
.doorstep-intro .doorstep-text-2,
.doorstep-intro .doorstep-text-2 p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(13, 35, 49, 0.65);
  margin: 0;
  text-wrap: pretty;
}


/* ============ SERVICES GRID ============ */
.services-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px 40px;
}

.services-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.services-section .section-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.services-section h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}

.services-section .link-view-all {
  color: var(--color-teal);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.services-section .link-view-all:hover {
  gap: 12px;
}

.services-section .services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.services-section .service-card {
  background: #fff;
  border: var(--border-card);
  border-radius: var(--radius-card-medium);
  padding: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover-lift);
  border-color: rgba(20, 180, 198, 0.5);
}

.services-section .service-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-section .service-card .icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--color-tint);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section .service-card .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section .service-card .turnaround-badge {
  font-size: 12px;
  font-weight: 700;
  color: rgba(13, 35, 49, 0.45);
  background: var(--color-paper);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}

.services-section .service-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin-bottom: 7px;
}

.services-section .service-card .card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(13, 35, 49, 0.6);
  text-wrap: pretty;
}

.services-section .service-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.services-section .service-card .starting-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-ink);
}

.services-section .service-card .arrow-accent {
  color: var(--color-aqua);
  font-weight: 800;
  font-size: 18px;
}


/* ============ HOW IT WORKS ============ */
.how-it-works {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px;
}

.how-it-works .dark-panel {
  background: var(--color-ink);
  border-radius: 32px;
  padding: 64px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.how-it-works .glow-backdrop {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 180, 198, 0.25), rgba(20, 180, 198, 0) 70%);
}

.how-it-works .panel-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-aqua-light);
  margin-bottom: 12px;
}

.how-it-works h2.panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 48px;
}

.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  position: relative;
}

.how-it-works .step-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-it-works .step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-aqua);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works .step-title {
  font-weight: 700;
  font-size: 17.5px;
}

.how-it-works .step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: pretty;
}


/* ============ WHY TLB BENTO ============ */
.bento-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px 72px;
}

.bento-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}

.bento-section .bento-card {
  border-radius: var(--radius-card-medium);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bento-section .bento-card.span-1 {
  grid-column: span 1;
}

.bento-section .bento-card.span-2 {
  grid-column: span 2;
  grid-row: span 1;
}

/* Themes */
.bento-section .bento-card.theme-white {
  background: #fff;
  border: var(--border-card);
  color: var(--color-ink);
}

.bento-section .bento-card.theme-dark {
  background: var(--color-ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-section .bento-card.theme-tint {
  background: var(--color-tint);
  color: var(--color-ink);
}

.bento-section .bento-card.theme-aqua {
  background: var(--color-aqua);
  color: var(--color-ink);
}

/* Watermark */
.bento-section .bento-card .watermark {
  position: absolute;
  top: -30px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 150px;
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

.bento-section .bento-card.theme-dark .watermark {
  color: rgba(255, 255, 255, 0.05);
}

.bento-section .bento-card.theme-white .watermark,
.bento-section .bento-card.theme-tint .watermark,
.bento-section .bento-card.theme-aqua .watermark {
  color: rgba(20, 180, 198, 0.25);
}

/* Card titles and descriptions */
.bento-section .bento-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.bento-section .bento-card .card-desc {
  font-size: 14.5px;
  margin-top: 6px;
}

.bento-section .bento-card.theme-dark .card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.bento-section .bento-card.theme-white .card-desc,
.bento-section .bento-card.theme-tint .card-desc {
  color: rgba(13, 35, 49, 0.6);
}

.bento-section .bento-card.theme-aqua .card-desc {
  color: rgba(13, 35, 49, 0.75);
}

/* Giant Stat Titles */
.bento-section .bento-card .card-title-giant {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.1;
}

.bento-section .bento-card.theme-dark .card-title-giant {
  color: var(--color-aqua);
}

.bento-section .bento-card.theme-white .card-title-giant,
.bento-section .bento-card.theme-tint .card-title-giant,
.bento-section .bento-card.theme-aqua .card-title-giant {
  color: var(--color-teal);
}

/* Links and actions inside cards */
.bento-section .bento-card .btn-why-us {
  align-self: flex-start;
  margin-top: 14px;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.bento-section .bento-card.theme-dark .btn-why-us {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.bento-section .bento-card .btn-why-us:hover {
  background: #fff;
  color: var(--color-ink);
  border: 1px solid rgba(13, 35, 49, 0.1);
}

/* Maintain compatibility for old class names just in case */
.bento-section .bento-card-large-1,
.bento-section .bento-card-large-2 {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-section .bento-card-small {
  grid-column: span 1;
}


/* ============ FEATURES STRIP ============ */
.features-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

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

.features-strip .feature-box {
  background: #fff;
  border: var(--border-card);
  border-radius: 20px;
  padding: 26px;
}

.features-strip .feature-box .feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.features-strip .feature-box .feature-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(13, 35, 49, 0.6);
  text-wrap: pretty;
}


/* ============ TESTIMONIALS / REVIEWS ============ */
.reviews-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}

.reviews-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.reviews-section .section-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.reviews-section h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0;
}

.reviews-section .summary-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: var(--border-card);
  border-radius: 20px;
  padding: 18px 26px;
}

.reviews-section .summary-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
}

.reviews-section .stars-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-section .stars-gold {
  color: var(--color-gold);
  font-size: 17px;
  letter-spacing: 2px;
}

.reviews-section .summary-lbl {
  font-size: 12.5px;
  color: rgba(13, 35, 49, 0.55);
}

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

.reviews-section .review-card {
  background: #fff;
  border: var(--border-card);
  border-radius: var(--radius-card-medium);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.reviews-section .review-card .profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-section .review-card .author-block {
  display: flex;
  align-items: center;
  gap: 11px;
}

.reviews-section .review-card .author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-section .review-card .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-section .review-card .author-name {
  font-weight: 700;
  font-size: 14.5px;
}

.reviews-section .review-card .author-stars {
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 1.5px;
}

.reviews-section .review-card .google-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(13, 35, 49, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-google-blue);
  flex: none;
}

.reviews-section .review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(13, 35, 49, 0.75);
  text-wrap: pretty;
}


/* ============ APP TEASER ============ */
.app-teaser {
  background: var(--color-ink);
  color: #fff;
}

.app-teaser .teaser-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.app-teaser .teaser-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-aqua-light);
  margin-bottom: 14px;
}

.app-teaser h2.teaser-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 54px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 22px;
}

.app-teaser p.teaser-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 0 0 34px;
  text-wrap: pretty;
}

.app-teaser .store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-teaser .btn-google-play {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.app-teaser .btn-google-play:hover {
  background: var(--color-aqua);
}

.app-teaser .btn-app-store-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
}

.app-teaser .phone-wrapper {
  display: flex;
  justify-content: center;
}

.app-teaser .phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 44px;
  background: #12293B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.app-teaser .phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-ink);
  border-radius: 32px;
}


/* ============ CTA BAND ============ */
.cta-band {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center;
}

.cta-band h2.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 18px;
}

.cta-band h2.cta-title span.highlight,
.cta-band h2.cta-title strong,
.cta-band h2.cta-title b {
  color: var(--color-aqua);
  font-weight: inherit;
}

.cta-band p.cta-desc {
  font-size: 17px;
  color: rgba(13, 35, 49, 0.6);
  margin: 0 0 34px;
}

.btn-primary-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  box-sizing: border-box;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 0 40px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary-ink:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.btn-subtle-link {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-subtle-link:hover {
  opacity: 0.8;
}


/* ============ FIND US / MAP ============ */
.find-us-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.find-us-section .find-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .find-us-section .find-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .find-us-section .find-us-grid.single-location {
    grid-template-columns: 1fr;
  }
}

.find-us-section .address-block p {
  margin: 0;
}

.find-us-section .address-block p:first-child {
  font-weight: 700;
  font-size: 15px;
}

.find-us-section .address-block p:not(:first-child) {
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.55);
}

.find-us-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.find-us-section .section-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.find-us-section h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0;
}

.find-us-section .map-frame-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: var(--border-card);
  height: 380px;
  margin-bottom: 20px;
}

.find-us-section .map-frame-wrapper iframe {
  border: 0;
  filter: grayscale(0.15);
}

.find-us-section .address-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.find-us-section .address-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.find-us-section .address-line-1 {
  font-weight: 700;
  font-size: 15px;
}

.find-us-section .address-line-2 {
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.55);
}

.find-us-section .map-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.find-us-section .map-links a,
.find-us-section .btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  border: 1.5px solid rgba(13, 35, 49, 0.14) !important;
  color: var(--color-ink) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 11px 18px !important;
  border-radius: var(--radius-pill) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.find-us-section .map-links a:hover,
.find-us-section .btn-map-link:hover {
  border-color: var(--color-ink) !important;
}


/* ============ FLOATING CONTACT FAB ============ */
.contact-fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-fab-container .fab-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: tlbRise 0.25s ease both;
}

.contact-fab-container .fab-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(13, 35, 49, 0.2);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.contact-fab-container .fab-menu a:hover {
  background: var(--color-aqua);
}

.contact-fab-container .fab-menu a.booking-btn {
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 35, 49, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-fab-container .fab-menu a.booking-btn:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.contact-fab-container .main-fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-fab);
  transition: all 0.2s ease;
  padding: 0;
  overflow: hidden;
}

.contact-fab-container .main-fab-btn.open {
  background: var(--color-ink);
  color: #fff;
}

.contact-fab-container .main-fab-btn.closed {
  background: #fff;
  color: var(--color-ink);
}

.contact-fab-container .main-fab-btn img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}


/* ============ GLOBAL FOOTER ============ */
footer.global-footer {
  background: var(--color-ink);
  color: #fff;
}

footer.global-footer .footer-trust-badges-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer.global-footer .trust-badges-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

footer.global-footer .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

footer.global-footer .trust-badge-item:last-child {
  border-right: none;
}

footer.global-footer .trust-badge-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-aqua);
}

footer.global-footer .trust-badge-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  max-width: 110px;
}

footer.global-footer .footer-columns-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

footer.global-footer .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer.global-footer .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer.global-footer .footer-logo {
  width: 60px;
  height: 54px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

footer.global-footer .footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

footer.global-footer .footer-brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 260px;
}

footer.global-footer .footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  color: var(--color-paper);

  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--color-teal);
  color: var(--color-paper);
  transform: translateY(-2px);
}

.social-icon {
  width: 14px;
  height: 14px;
}

footer.global-footer .footer-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer-btn {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: var(--color-paper);

  transition: all 0.25s ease;
}

.footer-btn:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-paper);

  transform: translateY(-2px);
}

.footer-btn-icon {
  width: 20px;
  height: 20px;

  display: block;
  color: currentColor;
}

.footer-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}


footer.global-footer .footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer.global-footer .footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-aqua-light);
  margin-bottom: 4px;
}

footer.global-footer .footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

footer.global-footer .footer-link:hover {
  color: #fff;
}

footer.global-footer .footer-static-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

footer.global-footer .footer-sublinks-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

footer.global-footer .footer-sublink {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-aqua-light);
  text-decoration: none;
}

footer.global-footer .footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer.global-footer .copyright-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

footer.global-footer .copyright-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

footer.global-footer .copyright-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer.global-footer .copyright-text a:hover {
  color: var(--color-aqua);
}


.quick-booking-card .btn-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quick-booking-card .booking-schedule-form .chip-btn {
  background: var(--color-paper) !important;
  border: 1.5px solid transparent !important;
  color: var(--color-ink) !important;
}

.quick-booking-card .btn-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quick-booking-card .booking-schedule-form .chip-btn {
  background: var(--color-paper) !important;
  border: 1.5px solid transparent !important;
  color: var(--color-ink) !important;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  flex: none;
}

.quick-booking-card .booking-schedule-form .chip-btn.active,
.quick-booking-card .booking-schedule-form .chip-btn:has(input:checked) {
  background: var(--color-tint) !important;
  border: 1.5px solid var(--color-aqua) !important;
  color: var(--color-ink) !important;
}


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

/* Global Responsive Images */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Default Desktop Styles for Mobile Nav Markup */
.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle,
.nav-backdrop,
.nav-drawer-header {
  display: none;
}

/* 1200px Breakpoint: Gradual Padding Reduction */
@media (max-width: 1200px) {

  .hero-section .hero-container,
  .section-padding,
  .b2b-section-padding,
  .footer-container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* 900px Breakpoint: Tablet Layouts & Mobile Navigation */
@media (max-width: 900px) {

  /* --- Mobile Navigation Drawer --- */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .nav-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  html.nav-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(13, 35, 49, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-backdrop.open {
    display: block;
  }

  .nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  header.sticky-header .nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 85vw;
    max-width: 360px;
    height: 100dvh;
    background: var(--color-paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 32px;
    z-index: 100;
    box-shadow: -4px 0 24px rgba(13, 35, 49, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    pointer-events: none;
  }

  header.sticky-header .nav-wrapper.open {
    display: flex;
  }

  header.sticky-header .nav-wrapper.visible {
    transform: translateX(0);
    pointer-events: auto;
  }

  html.nav-open,
  html.nav-open body {
    overflow: hidden;
  }

  html.nav-open header.sticky-header {
    position: fixed;
    width: 100%;
  }

  .nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(13, 35, 49, 0.1);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }

  .nav-drawer-header .drawer-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-ink);
  }

  .nav-drawer-header .nav-close {
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: rgba(13, 35, 49, 0.5);
    cursor: pointer;
    padding: 0 4px;
  }

  header.sticky-header nav.nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
  }

  header.sticky-header nav.nav-menu a {
    font-size: 18px;
    padding-bottom: 0;
    width: 100%;
    height: auto;
  }

  header.sticky-header nav.nav-menu a.active {
    border-bottom: none;
    padding-left: 12px;
    border-left: 3px solid var(--color-aqua);
  }

  header.sticky-header nav.nav-menu a.inactive {
    border-bottom: none;
    padding-left: 12px;
    border-left: 3px solid transparent;
  }

  header.sticky-header nav.nav-menu a.inactive:hover {
    color: var(--color-teal);
    border-left-color: var(--color-aqua-light);
  }

  header.sticky-header .cta-book-pickup {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    height: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Mobile Dropdown Overrides */
  .nav-item-has-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-item-trigger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-toggle-btn {
    display: inline-flex;
    padding: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(13, 35, 49, 0.04);
  }

  header.sticky-header nav.nav-menu .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    gap: 8px;
    display: none;
    /* Toggled via class .open */
    margin-top: 8px;
    transition: none;
  }

  header.sticky-header nav.nav-menu .nav-dropdown.open {
    display: flex;
  }

  header.sticky-header nav.nav-menu .nav-dropdown-item {
    font-size: 16px !important;
    padding: 8px 12px !important;
    border-left: 3px solid transparent;
    border-radius: 0;
  }

  header.sticky-header nav.nav-menu .nav-dropdown-item.active {
    border-left-color: var(--color-aqua) !important;
    background: transparent !important;
  }

  /* --- End Navigation --- */

  /* --- Layout Adaptations --- */

  /* Flex Layouts - Stack side-by-side components */
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }

  /* Gradual Padding Reduction */
  .hero-section .hero-container,
  .section-padding,
  .footer-container {
    padding-top: 48px;
    padding-bottom: 48px;
  }


}

/* 768px Breakpoint: Mobile Layouts (Stacking Grids) */
@media (max-width: 768px) {

  /* Collapse grids to single column */
  .split-section-container,
  .footer-container,
  .quick-booking-card .services-selector-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .bento-section .bento-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 16px;
  }

  .bento-section .bento-card,
  .bento-section .bento-card.span-2,
  .bento-section .bento-card-large-1,
  .bento-section .bento-card-large-2 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 180px;
    padding: 24px !important;
  }

  .bento-section .bento-card-small .card-title-giant {
    font-size: 28px !important;
  }

  .bento-section .bento-card-large-2 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .bento-section .bento-card-large-1 .watermark {
    font-size: 110px;
    top: -20px;
    right: 16px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Padding reduction */
  .hero-section .hero-container,
  .section-padding,
  .footer-container {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* 480px Breakpoint: Small Mobile Devices */
@media (max-width: 480px) {

  .hero-section .hero-container,
  .section-padding,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  /* Prevent Booking Wizard Overflow */
  .quick-booking-card {
    padding: 24px 16px;
  }
}

/* ============ CONTENT VISIBILITY OPTIMIZATIONS ============ */
.bento-section {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.features-strip {
  content-visibility: auto;
  contain-intrinsic-size: 120px;
}

.app-teaser {
  content-visibility: auto;
  contain-intrinsic-size: 450px;
}

.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

.doorstep-intro {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.services-section {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.how-it-works {
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.reviews-section {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.find-us-section {
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.service-detail-faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.service-detail-faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 32px 96px;
}

.service-detail-faq-section .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.service-detail-faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-faq-section details.faq-item {
  background: #fff;
  border: var(--border-card);
  border-radius: 16px;
  padding: 20px 24px;
}

.service-detail-faq-section details.faq-item summary {
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
}

.service-detail-faq-section details.faq-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(13, 35, 49, 0.62);
  margin: 12px 0 0;
  text-wrap: pretty;
}

/* ============ REUSABLE SCROLL REVEAL SYSTEM ============ */
.reveal-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.22, .61, .36, 1), 
              transform 600ms cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.reveal-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}