/*
Theme Name: Oxyfix Dark v2.7.1
Theme URI: https://oxyfix.co.za
Author: Oxyfix
Author URI: https://oxyfix.co.za
Description: Oxyfix Dark v2.7.1 – adds secure monday.com lead syncing to the modern multi-step service booking form while retaining hardened AJAX and ZeptoMail compatibility.
Version: 2.7.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oxyfix-dark-v254
Tags: one-page, medical, services, dark, custom-menu, featured-images, translation-ready
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  /* Brand colours */
  --primary:       #19c8d4;
  --primary-dark:  #0e9aa5;
  --primary-light: #7df9ff;
  --accent:        #7df9ff;
  --teal-deep:     #136165;
  --teal-mid:      #0B3B48;
  --teal-dark:     #072A36;
  --base:          #031521;

  /* THE background — applied once on <html>, everything else transparent */
  --page-bg: radial-gradient(60.25% 73.6% at 14.86% 21.69%,
               #136165 0.82%,
               #0B3B48 30.73%,
               #072A36 64.58%,
               rgba(3, 21, 33, 0.00) 100%),
             #031521;

  /* Glass layers */
  --glass-1:  rgba(255, 255, 255, 0.04);
  --glass-2:  rgba(255, 255, 255, 0.07);
  --glass-3:  rgba(255, 255, 255, 0.11);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-strong: rgba(19, 193, 212, 0.30);

  /* Text */
  --white:      #ffffff;
  --text:       #e2f0f4;
  --text-muted: rgba(226, 240, 244, 0.60);
  --text-faint: rgba(226, 240, 244, 0.38);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing */
  --section-pad: 90px 0;
  --container:   1200px;

  /* Radii */
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --shadow:    0 6px 28px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.45);
  --glow:      0 0 24px rgba(19,193,212,0.25);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* THE ONLY background declaration — fixed so it never moves on scroll */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  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; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header .container,
.topbar .container {
  width: 100%;
  max-width: var(--container);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f59e0b;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(245,158,11,0.28);
  animation: colorPulse 2s infinite ease-out;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.14) 35%, rgba(255,255,255,0.34) 50%, rgba(255,255,255,0.14) 65%, transparent 100%);
  transform: translateX(-140%);
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(245,158,11,0.38);
}
.btn-primary:hover::after {
  animation: hoverShine .2s !important;
}

@keyframes colorPulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.35), 0 10px 30px rgba(245,158,11,0.24); }
  70% { box-shadow: 0 0 0 12px rgba(245,158,11,0), 0 16px 34px rgba(245,158,11,0.34); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 10px 30px rgba(245,158,11,0.24); }
}

@keyframes hoverShine {
  from { transform: translateX(-140%); }
  to { transform: translateX(140%); }
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(19,193,212,0.10);
  border-color: var(--primary-light);
}

/* =============================================
   SECTION SHARED
============================================= */
section { background: transparent; position: relative; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary-light); }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* =============================================
   TOPBAR
============================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(3, 21, 33, 0.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--glass-border);
  padding: 9px 0;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contact a,
.topbar-hours   { display: flex; align-items: center; gap: 7px; color: var(--text-muted); transition: color 0.2s; }
.topbar-contact a:hover { color: var(--primary-light); }
.topbar svg { flex-shrink: 0; }

/* =============================================
   SITE HEADER
============================================= */
.site-header {
  position: sticky;
  top: var(--topbar-offset, 44px);
  z-index: 290;
  background: rgba(3, 21, 33, 0.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  transition: background 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(3, 21, 33, 0.97);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .container,
.hero > .container {
  padding-left: 24px;
  padding-right: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-right: auto;
}
.site-logo-link,
.site-logo .custom-logo {
  display: block;
}
.site-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-logo img,
.site-logo .custom-logo {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
}

.booking-title-mobile {
  display: none;
  margin-bottom: 22px;
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.site-logo .logo-text span { color: var(--primary); }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s;
}
.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.current-menu-item::after { width: 100%; }

.header-cta { padding: 10px 22px; font-size: 0.83rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(3, 21, 33, 0.97);
  border-top: 1px solid var(--glass-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* =============================================
   HERO
============================================= */
.hero {
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1px 0 60px;
}

/* Subtle ambient glow on right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(19,193,212,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(19,97,101,0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated ring decorations */
.hero-bg-circles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(19,193,212,0.08);
  animation: ring-pulse 7s ease-in-out infinite;
}
.hero-bg-circles span:nth-child(1) { width:400px;height:400px; right:-80px;  top:50%; transform:translateY(-50%); animation-delay:0s; }
.hero-bg-circles span:nth-child(2) { width:640px;height:640px; right:-200px; top:50%; transform:translateY(-50%); animation-delay:1.2s; }
.hero-bg-circles span:nth-child(3) { width:880px;height:880px; right:-320px; top:50%; transform:translateY(-50%); animation-delay:2.4s; }
@keyframes ring-pulse {
  0%,100% { opacity:0.4; transform:translateY(-50%) scale(1);    }
  50%      { opacity:0.9; transform:translateY(-50%) scale(1.03); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,193,212,0.10);
  border: 1px solid rgba(19,193,212,0.30);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.751rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-desc strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}
.hero-stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-left: 2px;
}
.hero-stat .label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,193,212,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-media-slider {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 24, 31, 0.5), rgba(4, 24, 31, 0.25));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7s ease, visibility 1s ease;
  will-change: opacity, transform;
}
.hero-media-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-media-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(19,193,212,0.16));
}
@media (prefers-reduced-motion: reduce) {
  .hero-media-slide,
  .hero-media-slide.is-active {
    transition: none;
    transform: none;
  }
}

/* =============================================
   CLIENT LOGOS
============================================= */
.clients-strip {
  background: transparent;
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.clients-strip .section-label { display: block; text-align: center; margin-bottom: 10px; }
.clients-divider {
  width: 40px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.clients-carousel,
.testimonials-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}
.clients-track,
.testimonials-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  will-change: transform;
}
.clients-track {
  align-items: center;
  gap: 56px;
  animation: oxyfix-marquee 26s linear infinite;
}
.clients-carousel:hover .clients-track,
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}
.clients-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-logo-item img {
  height: 68px;
  width: auto;
  min-width: 180px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.2s;
}
.clients-logo-item img:hover { transform: scale(1.07); }

@keyframes oxyfix-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-choose {
  background: transparent;
  padding: var(--section-pad);
}
.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.why-image-wrap {
  position: sticky;
  top: calc(var(--topbar-offset, 44px) + 92px);
  align-self: start;
}
.why-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--teal-deep), var(--primary));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--glow);
  border: 1px solid rgba(19,193,212,0.3);
}
.why-image-badge .big {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.why-image-badge .small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.why-content .section-desc { margin-bottom: 28px; }

.why-features { display: flex; flex-direction: column; gap: 14px; }
.why-cta-wrap { margin-top: 32px; text-align: center; }
.why-cta-wrap .btn { display: inline-flex; }
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  background: var(--glass-2);
  border-color: var(--glass-border-strong);
  transform: translateX(4px);
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  background: transparent;
  padding: var(--section-pad);
}
.testimonials .section-label { color: var(--text-muted); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title span { color: var(--primary-light); }
.testimonials .section-desc {
  color: var(--text-muted);
  margin-bottom: 44px;
}

.testimonials-track {
  gap: 22px;
  width: max-content;
}
.testimonials-carousel {
  cursor: grab;
}
.testimonials-carousel.is-dragging {
  cursor: grabbing;
}
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc((var(--container) - 48px - 44px) / 3);
  max-width: calc((var(--container) - 48px - 44px) / 3);
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: var(--glass-2);
  border-color: var(--glass-border-strong);
}

/* 5 Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testimonial-stars svg {
  width: 15px; height: 15px;
  fill: #f59e0b;
  flex-shrink: 0;
}

.testimonial-quote {
  color: var(--primary);
  font-size: 2.2rem;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.testimonial-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* =============================================
   FAQ
============================================= */
.faq {
  background: transparent;
  padding: var(--section-pad);
}
.faq-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.faq-inner .section-title,
.faq-inner .section-label { display: block; }
.faq-inner .section-title { margin-bottom: 40px; }

.faq-list { text-align: left; margin-top: 8px; }
.faq-item {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.25s;
}
.faq-item.open,
.faq-item:hover { border-color: var(--glass-border-strong); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary-light); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(19,193,212,0.12);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
.faq-icon svg { width: 10px; height: 10px; }
.faq-icon svg path { stroke: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(19,193,212,0.22); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =============================================
   STATS / OXYGEN PURITY
============================================= */
.stats-section {
  background: transparent;
  padding: var(--section-pad);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 33, 0.35);
  pointer-events: none;
}
.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.stats-text .section-title { color: var(--white); }
.stats-text p { color: var(--text-muted); max-width: 440px; line-height: 1.8; }

.meter-wrap { display: flex; flex-direction: column; gap: 20px; }
.meter-item {}
.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.meter-label { font-size: 0.84rem; color: var(--text-muted); }
.meter-value {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-light);
}
.meter-bar {
  height: 8px;
  background: rgba(255,255,255,0.10);
  border-radius: 100px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--teal-deep), var(--primary-light));
  width: 0%;
  transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.meter-fill.warning { background: linear-gradient(90deg, #f59e0b, #ef4444); }

/* =============================================
   BOOKING FORM
============================================= */
.booking {
  background: transparent;
  padding: var(--section-pad);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-info {
  position: sticky;
  top: calc(var(--topbar-offset, 44px) + 92px);
  align-self: start;
}
.booking-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

.booking-highlights { display: flex; flex-direction: column; gap: 14px; }
.booking-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.booking-highlight-icon { font-size: 1.2rem; flex-shrink: 0; }
.booking-highlight-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.booking-highlight-text a { color: var(--primary-light); font-weight: 700; }

.booking-form-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(5 23 35);
  margin: 20px 0 14px;
}
.form-section-title:first-child { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgb(5 23 35);
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: #1f6a73;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.72); }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: #1b5f67;
}

select { appearance: none; cursor: pointer; }
select option { background: #1f6a73; color: var(--white); }
textarea { resize: vertical; min-height: 110px; }

.toggle-group { display: flex; gap: 10px; flex-wrap: wrap; }
.toggle-option input[type="radio"] { display: none; }
.toggle-option label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 2px solid rgb(5 23 35);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  color: rgb(5 23 35);
  transition: all 0.2s;
  background: #ffffff;
}
.toggle-option input:checked + label {
  border-color: #051723;
  color: #ffffff;
  background: #051723;
}
.toggle-option label:hover { background: rgb(5 23 35); color: #ffffff; border-color: rgb(5 23 35); }

/* Testimonials header 50/50 layout */
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.testimonials-header-text { flex: 0 0 50%; max-width: 50%; }
.testimonials-header-text .section-desc { margin-bottom: 0; }
.testimonials-header-cta {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  :root {
    --anchor-scroll-offset: 110px;
  }

  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .testimonials-header-text,
  .testimonials-header-cta { flex: none; max-width: 100%; }
  .testimonials-header-cta { justify-content: flex-start; }
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.95rem; padding: 14px; }



/* =============================================
   MODERN MULTI-STEP BOOKING FORM — v2.7.1
============================================= */
.booking-form-wrap {
  background: #f7f9fa;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 28px 80px rgba(0, 10, 18, 0.34), 0 2px 8px rgba(0, 10, 18, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

#booking-form {
  --form-ink: #0b2130;
  --form-muted: #667781;
  --form-border: #d7e0e4;
  --form-surface: #ffffff;
  --form-accent: #13858d;
  --form-accent-dark: #0c6f76;
  --form-accent-soft: #edf8f8;
  color: var(--form-ink);
}

#booking-form .booking-form-progress { margin-bottom: 34px; }
#booking-form .booking-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--form-muted);
}
#booking-form .booking-progress-meta > span:last-child {
  color: var(--form-accent-dark);
  text-align: right;
}
#booking-form .booking-progress-track {
  height: 7px;
  background: #e5eaed;
  border-radius: 999px;
  overflow: hidden;
}
#booking-form .booking-progress-fill {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--form-accent-dark), #20a2aa);
  transition: width 0.32s ease;
}

#booking-form .form-step[hidden] { display: none !important; }
#booking-form .form-step.is-active { animation: bookingStepIn 0.28s ease both; }
@keyframes bookingStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#booking-form .form-step-header {
  padding-bottom: 25px;
  margin-bottom: 26px;
  border-bottom: 1px solid #e1e7ea;
}
#booking-form .form-step-header h3 {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--form-ink);
}
#booking-form .form-step-header h3:focus { outline: none; }
#booking-form .form-step-header p {
  margin: 0;
  color: var(--form-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

#booking-form .booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 24px;
}
#booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 22px;
  min-width: 0;
}
#booking-form .booking-form-grid .form-group { margin-bottom: 0; }
#booking-form label,
#booking-form legend {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--form-ink);
}
#booking-form .required-mark { color: #d44b46; }
#booking-form .field-optional {
  margin-left: 6px;
  color: var(--form-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
}
#booking-form .field-help {
  color: var(--form-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="tel"],
#booking-form select,
#booking-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--form-border);
  border-radius: 12px;
  background: var(--form-surface);
  color: var(--form-ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.4;
  outline: none;
  box-shadow: 0 1px 2px rgba(7, 34, 48, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#booking-form input::placeholder,
#booking-form textarea::placeholder { color: #8a989f; opacity: 1; }
#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  border-color: var(--form-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(19,133,141,0.12);
}
#booking-form input:user-invalid,
#booking-form textarea:user-invalid {
  border-color: #d95a55;
  box-shadow: 0 0 0 4px rgba(217,90,85,0.10);
}
#booking-form textarea {
  min-height: 128px;
  resize: vertical;
}

#booking-form .option-fieldset {
  padding: 0;
  border: 0;
}
#booking-form .option-fieldset legend {
  width: 100%;
  margin-bottom: 10px;
}
#booking-form .option-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
#booking-form .toggle-option { min-width: 0; }
#booking-form .toggle-option input[type="radio"] {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
#booking-form .option-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--form-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--form-ink);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(7,34,48,0.035);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
#booking-form .option-card:hover {
  border-color: #99c8cb;
  background: #fbfefe;
  color: var(--form-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(7,34,48,0.07);
}
#booking-form .toggle-option input:focus-visible + .option-card {
  outline: none;
  box-shadow: 0 0 0 4px rgba(19,133,141,0.14);
}
#booking-form .toggle-option input:checked + .option-card {
  border-color: var(--form-accent);
  background: var(--form-accent-soft);
  color: var(--form-ink);
  box-shadow: 0 0 0 1px rgba(19,133,141,0.10), 0 10px 28px rgba(19,133,141,0.08);
}
#booking-form .option-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f6;
  color: #586a74;
  transition: color 0.2s ease, background 0.2s ease;
}
#booking-form .toggle-option input:checked + .option-card .option-icon {
  color: var(--form-accent-dark);
  background: #dff2f3;
}
#booking-form .option-icon-small { width: 42px; height: 42px; }
#booking-form .option-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
#booking-form .option-copy strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--form-ink);
}
#booking-form .option-copy small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--form-muted);
}
#booking-form .option-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--form-accent);
  color: #fff;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
#booking-form .toggle-option input:checked + .option-card .option-check {
  opacity: 1;
  transform: scale(1);
}
#booking-form .option-card-compact { min-height: 90px; }

#booking-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 27px;
  margin-top: 30px;
  border-top: 1px solid #e1e7ea;
}
#booking-form .form-actions-end { justify-content: flex-end; }
#booking-form .form-nav-button,
#booking-form .booking-submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
#booking-form .form-nav-button:not(.form-nav-secondary),
#booking-form .booking-submit {
  background: linear-gradient(135deg, var(--form-accent-dark), #16939b);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(12,111,118,0.20);
  animation: none;
}
#booking-form .form-nav-button:not(.form-nav-secondary):hover,
#booking-form .booking-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(12,111,118,0.27);
}
#booking-form .booking-submit::after { display: none; }
#booking-form .form-nav-secondary {
  background: #ffffff;
  color: var(--form-ink);
  border-color: #cfd9dd;
  box-shadow: none;
}
#booking-form .form-nav-secondary:hover {
  background: #f4f7f8;
  border-color: #aebdc4;
  transform: translateY(-1px);
}
#booking-form .booking-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}
#booking-form .booking-submit-icon { display: inline-flex; }
#booking-form .booking-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255,255,255,0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: bookingSpin 0.75s linear infinite;
}
@keyframes bookingSpin { to { transform: rotate(360deg); } }
#booking-form .form-privacy-note {
  margin: 13px 0 0;
  text-align: right;
  color: var(--form-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}
#booking-form .booking-message {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}
#booking-form .booking-message[hidden] { display: none !important; }
#booking-form .booking-message.is-success {
  display: block;
  background: #e8f7ef;
  border: 1px solid #b8e4cb;
  color: #12643a;
}
#booking-form .booking-message.is-error {
  display: block;
  background: #fff0ef;
  border: 1px solid #efc4c1;
  color: #a83d38;
}

@media (max-width: 700px) {
  .booking-form-wrap { border-radius: 22px; padding: 26px 20px; }
  #booking-form .booking-form-grid,
  #booking-form .option-card-grid { grid-template-columns: 1fr; }
  #booking-form .booking-form-progress { margin-bottom: 27px; }
  #booking-form .form-step-header { padding-bottom: 21px; margin-bottom: 22px; }
  #booking-form .option-card { min-height: 92px; }
}

@media (max-width: 430px) {
  .booking-form-wrap { padding: 23px 16px; border-radius: 18px; }
  #booking-form .booking-progress-meta { align-items: flex-start; font-size: 0.72rem; }
  #booking-form .form-actions { align-items: stretch; }
  #booking-form .form-nav-button,
  #booking-form .booking-submit { flex: 1; padding-inline: 14px; }
  #booking-form .form-actions-end .form-nav-button { flex: 1; }
  #booking-form .option-card { padding: 15px; gap: 12px; }
  #booking-form .option-icon { width: 43px; height: 43px; }
  #booking-form .form-privacy-note { text-align: left; }
}

/* =============================================
   NEWSLETTER
============================================= */
.newsletter {
  background: transparent;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter-text p { color: var(--text-muted); font-size: 0.9rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  width: 100%;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.newsletter-form:focus-within { border-color: var(--primary); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.9rem;
}
.newsletter-form input:focus { border-color: transparent; background: transparent; }
.newsletter-form .btn {
  border-radius: 0;
  padding: 12px 22px;
  font-size: 0.83rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--primary));
  color: var(--white);
  border: none;
}
.newsletter-form .btn:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); transform: none; }

/* =============================================
   SITE FOOTER
============================================= */
.site-footer {
  background: rgba(3, 21, 33, 0.50);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
}
.footer-brand a { display: inline-block; margin-bottom: 16px; }
.footer-brand img {
  max-width: 265px;
  width: 100%;
  height: auto;
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-light); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.footer-contact-item a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-contact-item svg { flex-shrink: 0; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--primary-light); }

/* =============================================
   SCROLL TO TOP
============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(19,97,101,0.75);
  border: 1px solid rgba(19,193,212,0.35);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  z-index: 300;
  backdrop-filter: blur(8px);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--teal-deep); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap  { display: none; }
  .why-choose-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image-wrap   { max-width: 500px; }
  .stats-inner      { grid-template-columns: 1fr; gap: 40px; }
  .booking-inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex-basis: calc((100vw - 48px - 22px) / 2); max-width: calc((100vw - 48px - 22px) / 2); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .testimonial-card { flex-basis: calc(100vw - 48px); max-width: calc(100vw - 48px); }
  .clients-track { gap: 36px; }
  .clients-logo-item img { height: 42px; min-width: 120px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-media-slider { height: 280px; }
  .hero-image-wrap { min-height: 280px; }
  .hero-media-slider { border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form  { max-width: 100%; width: 100%; }
  .footer-inner     { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .topbar-contact {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .topbar-contact a,
  .topbar-hours { justify-content: center; }
  .topbar-contact a {
    white-space: nowrap;
    font-size: 13px;
  }
  .topbar-hours {
    text-align: center;
    font-size: 12px;
  }
  .booking-title-desktop { display: none; }
  .booking-title-mobile { display: block; }
  .booking-form-column {
    gap: 14px;
    position: relative;
    z-index: 5;
  }
  .booking-form-wrap {
    position: relative;
    z-index: 5;
  }
  .booking-info {
    position: relative;
    top: auto;
    z-index: 1;
  }
  .booking-highlight {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 7vw, 2.3rem); }
  .why-image-wrap { position: relative; top: auto; }
  .booking-info   { position: relative; top: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-form-wrap { padding: 22px 16px; }
  .site-logo img,
  .site-logo .custom-logo { max-width: 190px; }
}


/* =============================================
   PERFORMANCE / CLS IMPROVEMENTS
============================================= */
.custom-logo {
  aspect-ratio: auto;
}

.hero-content {
  contain: layout paint;
}

.hero-stats,
.booking-form-wrap,
.booking-highlight,
.clients-strip,
.why-choose,
.testimonials,
.faq,
.stats,
.booking,
.newsletter,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .topbar,
  .site-header,
  .mobile-nav,
  .btn,
  .booking-highlight,
  .booking-form-wrap,
  .feature-card,
  .testimonial-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero {
    min-height: auto;
    padding: 8px 0 40px;
  }

  .hero::before,
  .hero-bg-circles,
  .hero-image-wrap::before {
    display: none;
  }

  .hero-badge .dot,
  .hero-image-wrap img,
  .hero-bg-circles span {
    animation: none !important;
  }

  .site-header,
  .site-header.scrolled {
    padding: 10px 0;
  }

  .topbar {
    padding: 8px 0;
  }

  .topbar-contact a,
  .topbar-hours,
  .hero-title,
  .hero-desc,
  .hero-stat .num,
  .hero-stat .label,
  .btn,
  .section-title,
  .section-desc {
    text-rendering: optimizeSpeed;
  }

  .hero-stats {
    padding-top: 20px;
  }

  .clients-strip,
  .why-choose,
  .testimonials,
  .faq,
  .stats,
  .booking,
  .newsletter,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
  }
}


/* =============================================
   SINGLE POST
============================================= */

.single-post-main { padding-bottom: 0; }

/* ── Hero ─────────────────────────────────── */
.single-hero {
  background: transparent;
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, color-mix(in srgb, var(--post-accent, var(--primary)) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.single-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.single-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.single-breadcrumb a:hover { color: var(--primary-light); }
.single-breadcrumb span:not(:last-child) { color: var(--text-faint); }
.single-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--post-accent, var(--primary));
  background: color-mix(in srgb, var(--post-accent, var(--primary)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--post-accent, var(--primary)) 30%, transparent);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.single-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 20px;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.single-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-meta svg { opacity: .6; flex-shrink: 0; }

.single-hero-illustration {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 400 / 340;
  opacity: 0.9;
}

/* ── Content layout ───────────────────────── */
.single-content-wrap { padding: 56px 0 80px; }
.single-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* ── Article ──────────────────────────────── */
.single-content { color: var(--text-muted); font-size: 1rem; line-height: 1.85; }
.single-content h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--white);
  margin: 2.2em 0 0.7em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}
.single-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-light);
  margin: 1.8em 0 0.6em;
}
.single-content p { margin: 0 0 1.2em; }
.single-content ul, .single-content ol {
  margin: 0 0 1.4em 1.2em;
  padding: 0;
}
.single-content li { margin-bottom: 0.5em; }
.single-content strong { color: var(--white); font-weight: 700; }
.single-content a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover { color: var(--white); }
.single-content blockquote {
  border-left: 3px solid var(--primary);
  margin: 1.6em 0;
  padding: 12px 20px;
  background: var(--glass-1);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Tags */
.single-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--text-faint);
}
.single-tags a {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 3px 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.single-tags a:hover { border-color: var(--primary); color: var(--primary-light); }

/* CTA box */
.single-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0 40px;
  padding: 28px 32px;
  background: color-mix(in srgb, var(--post-accent, var(--primary)) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--post-accent, var(--primary)) 30%, transparent);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.single-cta-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.single-cta-text p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* Post nav */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}
.single-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.single-nav-link:hover { border-color: var(--primary); transform: translateY(-2px); }
.single-nav-next { text-align: right; }
.single-nav-dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
}
.single-nav-next .single-nav-dir { justify-content: flex-end; }
.single-nav-title {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Sidebar ──────────────────────────────── */
.single-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-card {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}
.sidebar-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 4px; }

.sidebar-posts { display: flex; flex-direction: column; gap: 2px; }
.sidebar-post-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
}
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-title { font-size: 0.85rem; color: var(--white); line-height: 1.4; transition: color .2s; }
.sidebar-post-item:hover .sidebar-post-title { color: var(--primary-light); }
.sidebar-post-date { font-size: 0.73rem; color: var(--text-faint); }

.sidebar-contact p { margin-bottom: 14px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  font-family: var(--font-heading);
}
.sidebar-phone:hover { color: var(--white); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 960px) {
  .single-hero-inner { grid-template-columns: 1fr; }
  .single-hero-illustration { display: none; }
  .single-content-grid { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
}
@media (max-width: 600px) {
  .single-post-nav { grid-template-columns: 1fr; }
  .single-cta-box { flex-direction: column; align-items: flex-start; }
}

/* ── Our Blog Page ───────────────────────── */
.our-blog-page {
  padding: 40px 0 20px;
}
.our-blog-hero {
  padding: 24px 0 10px;
}
.our-blog-title,
.our-blog-desc {
  max-width: 760px;
}
.our-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}
.our-blog-card {
  position: relative;
  display: block;
  min-height: 470px;
  border-radius: 24px;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  transition: transform .28s ease, filter .28s ease;
}
.our-blog-card:hover {
  transform: translateY(-8px);
}
.our-blog-date-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 88px;
  height: 92px;
  border-radius: 0 0 18px 0;
  background: #7df9ff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .12);
}
.our-blog-date-badge strong {
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -.03em;
}
.our-blog-date-badge span {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.our-blog-card-media {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  background: #d8e0dd center/cover no-repeat;
  overflow: hidden;
}
.our-blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(216,224,221,0.02) 0%, rgba(216,224,221,0.12) 100%);
}
.our-blog-card-glow {
  position: absolute;
  inset: auto auto 120px 50%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.26) 0%, rgba(255,255,255,0) 70%);
  transform: translateX(-50%);
}
.our-blog-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -22px;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 24px 24px 26px;
  box-shadow: 0 24px 48px rgba(17, 24, 39, .14);
}
.our-blog-meta {
  font-size: 1rem;
  color: #5d6678;
  margin-bottom: 14px;
}
.our-blog-meta .sep {
  display: inline-block;
  margin: 0 10px;
}
.our-blog-card-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-family: var(--font-heading);
}
.our-blog-pagination {
  margin-top: 74px;
  display: flex;
  justify-content: center;
}
.our-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 6px;
  border-radius: 999px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.our-blog-pagination .page-numbers.current,
.our-blog-pagination .page-numbers:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #05131a;
}
.our-blog-empty {
  padding: 48px 28px;
  border-radius: 24px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  text-align: center;
}
@media (max-width: 1100px) {
  .our-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .our-blog-card { min-height: 450px; }
  .our-blog-card-media { min-height: 420px; }
}
@media (max-width: 767px) {
  .our-blog-grid { grid-template-columns: 1fr; gap: 42px; }
  .our-blog-card { min-height: 390px; }
  .our-blog-card-media { min-height: 360px; }
  .our-blog-card-content { left: 18px; right: 18px; bottom: -18px; padding: 20px 18px 22px; }
  .our-blog-card-title { font-size: 1.2rem; }
  .our-blog-meta { font-size: .95rem; }
}


/* =============================================
   MOBILE STATIC LAYOUT SAFETY PATCH v2.5.7
============================================= */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    overflow-x: hidden;
  }

  .why-image-wrap,
  .booking-info,
  .single-sidebar {
    position: relative !important;
    top: auto !important;
  }

  .topbar {
    position: sticky !important;
    top: 0 !important;
  }

  .site-header {
    position: sticky !important;
    top: var(--topbar-offset, 44px) !important;
  }

  .scroll-top {
    display: none !important;
  }

  .why-image-wrap,
  .booking-info,
  .single-sidebar,
  .booking-form-wrap,
  .booking-form-column,
  .why-choose-inner,
  .booking-inner,
  .single-layout,
  .single-hero-inner,
  .header-inner,
  .footer-inner {
    overflow: visible;
  }

  .why-image-badge {
    right: 12px;
    bottom: 12px;
  }

  .single-hero-inner,
  .single-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-header .container,
  .hero > .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title,
  .single-title,
  .our-blog-card-title {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .why-image-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    width: fit-content;
    max-width: 100%;
  }

  .topbar-contact {
    flex-wrap: wrap;
  }
}


/* =============================================
   MOBILE HIDE-ON-SCROLL HEADER/TOPBAR v2.6.3
============================================= */
@media (max-width: 768px) {
  body.mobile-scroll-ui .topbar,
  body.mobile-scroll-ui .site-header {
    transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
    will-change: transform;
  }

  body.mobile-scroll-ui .topbar.is-hidden {
    transform: translateY(-100%);
  }

  body.mobile-scroll-ui .site-header {
    top: 0 !important;
  }

  body.mobile-scroll-ui.mobile-header-visible .site-header {
    top: var(--topbar-offset, 44px) !important;
  }

  body.mobile-scroll-ui .site-header.is-hidden {
    transform: translateY(calc(-100% - 6px));
  }

  body.mobile-scroll-ui:not(.mobile-header-visible) .mobile-nav.open {
    top: 0 !important;
  }

  body.mobile-scroll-ui.mobile-header-visible .mobile-nav.open {
    top: var(--mobile-header-stack, 132px) !important;
  }
}
