/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&display=swap');

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; animation-fill-mode: both; }

/* Links */
a { text-decoration: none !important; }
a:hover { text-decoration: none !important; }
a:visited { color: #00d4ff; text-decoration: none !important; }
a:link { text-decoration: none !important; }

/* =========================
   GLOBAL BACKGROUND (SEAMLESS, INFINITE, DIAGONAL)
   ========================= */
:root{
  --bg-tile: url('backgroundbook.png');
  --tile-w: 1536px;
  --tile-h: 1024px;
  --tile-scale: 0.9;
  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

html, body { height: -webkit-fill-available; min-height: 100%; }
html { background: #000; }

/* keep body transparent so the animated layers show through */
body {
  font-family: 'Inter', sans-serif;
  color: white;
  min-height: 100vh;
  background: transparent !important;   /* remove any static bg/cover */
}

/* Animated tiling pattern (behind content) */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;                 /* content sits above this */
  pointer-events: none;

  /* two repeated layers for depth */
  background-image: var(--bg-tile), var(--bg-tile);
  background-repeat: repeat, repeat;
  background-size: var(--tile-w-size) var(--tile-h-size), var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);

  /* move exactly one tile → perfect seamless loop */
  animation: bgA 38s linear infinite, bgB 62s linear infinite;
}

/* Readability overlay (on top of the animation, under content) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,0.45), rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.85));
}

/* diagonal seamless loops */
@keyframes bgA {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: var(--tile-w-size) var(--tile-h-size),
                          calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
}
@keyframes bgB {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: 0 0,
                          calc(var(--tile-w-size)*1.5) calc(var(--tile-h-size)*1.5); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  body::after{ animation: none; }
}

/* Ensure the hero left panel never reinstates the old grid */
#home.split-screen .text-side,
.split-screen .text-side {
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 3rem);
  padding: 1.5em 3em;
  background: linear-gradient(to right, #000, #111);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo with soap + sparkle */
.logo { display: flex; align-items: center; font-size: 2rem; font-weight: bold; color: #00d4ff;
  animation: fadeInUp 0.4s ease forwards; transform: translateY(-10px); opacity: 0; animation-delay: 0.2s; position: relative; }
.logo .soap { font-size: 2.5rem; margin-right: .5rem; transform: scale(1.1); opacity: 1;
  animation: popIn 1.2s ease; animation-delay: .2s; animation-fill-mode: backwards; position: relative; }
.logo .soap::after { content: '✨'; position: absolute; font-size: .9rem; top: -10px; right: -8px;
  animation: sparkle 1.2s ease-in-out infinite; color: #fff; opacity: .8; }
.logo-text { font-size: 1.8rem; text-transform: lowercase; letter-spacing: 1px;
  animation: fadeInUp 0.1s ease forwards; opacity: 0; animation-delay: .3s; }

@keyframes popIn { 0%{transform:scale(.5) rotate(-30deg);opacity:0} 60%{transform:scale(1.3) rotate(10deg);opacity:1} 100%{transform:scale(1.1)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes sparkle { 0%,100%{opacity:.8;transform:scale(1) rotate(0)} 50%{opacity:1;transform:scale(1.2) rotate(20deg)} }
@keyframes floatSoap { 0%,100%{transform:translateY(0) rotate(-4deg) scale(1);} 50%{transform:translateY(-12px) rotate(6deg) scale(1.06);} }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: #e9f7ff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: #00d4ff; }

/* =========================
   HERO SPLIT
   ========================= */
.split-screen { display: flex; height: 90vh; width: 100%; position: relative; z-index: 2; }
.text-side {
  flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4em;
  gap: 1.5rem;
  /* (grid removed above) */
}
.image-side { flex: 1; overflow: hidden; display: flex; justify-content: flex-start; align-items: center; position: relative; z-index: 1; }
.image-side::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none; z-index: 2; }
.image-side::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 120px;
  background: linear-gradient(to right, black, transparent); z-index: 3; pointer-events: none; }
.image-top-diffuse { position: absolute; inset: 0 0 auto 0; height: 150px; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
  filter: blur(24px);
}
.hero-carousel{ position:relative; width:100%; height:100%; }
.hero-slide{ position:absolute; inset:0; opacity:0; transition: opacity .7s ease; pointer-events:none; }
.hero-slide.active{ opacity:1; z-index:2; pointer-events:auto; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; position:relative; z-index:1; transform:translateX(-80px); -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0.2) 92%, rgba(0,0,0,0) 100%); mask-image:linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0.2) 92%, rgba(0,0,0,0) 100%); -webkit-mask-size:100% 100%; mask-size:100% 100%; }
.hero-dots{ position:absolute; left:50%; bottom:28px; transform:translateX(-50%); display:flex; gap:.6rem; z-index:4; }
.hero-dot{ width:11px; height:11px; border-radius:50%; border:1.5px solid rgba(0,212,255,.8); background:rgba(0,0,0,0.35); box-shadow:0 0 12px rgba(0,212,255,0.25); cursor:pointer; opacity:.7; transition: opacity .2s ease, transform .2s ease, background-color .2s ease; }
.hero-dot.active{ background:#00d4ff; opacity:1; transform:scale(1.1); }
.floating-soap { position: absolute; top: 32px; right: 28px; font-size: 3.4rem; z-index: 4;
  animation: floatSoap 4.5s ease-in-out infinite; text-shadow: 0 10px 24px rgba(0, 212, 255, 0.25);
  pointer-events: none;
}
.floating-soap::after { content: '✨'; position: absolute; top: -16px; right: -14px; font-size: 1.1rem;
  animation: sparkle 1.6s ease-in-out infinite; opacity: .9; }
.floating-soap::before { content: ""; position: absolute; inset: 40% -20% -35% -45%;
  background: radial-gradient(circle at 50% 50%, rgba(0,212,255,.35), transparent 70%);
  filter: blur(14px); z-index: -1; }
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Headline */
.headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: clamp(1.75rem, 4vw, 3.5rem);
}
.headline span { display: inline-block; animation: fadeIn 1s ease forwards; opacity: 0; }
.headline span:nth-child(1){animation-delay:.3s}
.headline span:nth-child(2){animation-delay:.6s}
.headline span:nth-child(3){animation-delay:.9s}
.headline span:nth-child(4){animation-delay:1.2s}
.headline-image { height: 1em; width: auto; display: inline-block; margin-left: .5rem; vertical-align: baseline;
  animation: fadeIn 1s ease forwards; opacity: 0; animation-delay: 1.5s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* Subtext & CTAs */
.subtext { font-size: 1.1rem; margin-top: 2rem; color: #ccc; max-width: 500px; }
.quote-btn-home {
  margin-top: 2.4rem; padding: .8em 2em; background: #00d4ff; color: #000 !important; font-weight: bold;
  border: none; border-radius: 14px; font-size: 1.5rem; cursor: pointer; align-self: flex-start;
  animation: fadeInUp 1.5s ease forwards; opacity: 0; transform: translateY(20px);
  transition: background .3s ease, transform .3s ease;
}
.quote-btn-home:hover { background: white; color: black !important; }
.quote-btn-home:visited, .quote-btn-home:link { color: black !important; }

.services-btn-home {
  margin-top: 1.5rem; padding: .8em 2em; background: transparent; color: #00d4ff; font-weight: bold;
  border: 2px solid #00d4ff; border-radius: 50px; font-size: 1.2rem; align-self: flex-start;
  animation: fadeInUp 1.8s ease forwards; opacity: 0; transform: translateY(20px);
  transition: all .3s ease; text-transform: lowercase;
}

/* =========================
   QUOTE PANEL
   ========================= */
.hero-quote {
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
  width: 100%;
  max-width: clamp(520px, 48vw, 720px);
  display: flex;
  align-self: flex-start;
}

.quote-card {
  width: 100%;
  flex: 1;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  border-radius: 22px;
  border: 1.8px solid rgba(0, 212, 255, 0.55);
  background: linear-gradient(135deg, rgba(8, 19, 30, 0.82), rgba(10, 26, 38, 0.58));
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.58),
    0 0 22px rgba(0, 212, 255, 0.22),
    inset 0 0 28px rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2.2px solid rgba(0, 212, 255, 0.28);
  pointer-events: none;
  box-shadow: 0 0 45px rgba(0, 212, 255, 0.2);
  opacity: 0.6;
}

.hero-quote.quote-spotlight .quote-card {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 2px rgba(0, 212, 255, 0.65),
    0 32px 70px rgba(0, 0, 0, 0.6),
    inset 0 0 32px rgba(0, 212, 255, 0.12);
}

.hero-quote.quote-spotlight .quote-card::before {
  animation: quotePulse 1.2s ease-in-out 2;
}

@keyframes quotePulse {
  0%, 100% {
    opacity: 0.6;
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.2);
  }
  50% {
    opacity: 0.95;
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.35);
  }
}

.quote-card-header {
  margin-bottom: 1.1rem;
}

.quote-card-header h2 {
  font-size: clamp(1.32rem, 2.6vw, 1.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e6f8ff;
  margin-bottom: 0.45rem;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

.quote-card-header p {
  color: rgba(212, 235, 255, 0.75);
  font-size: 0.86rem;
  max-width: 30ch;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.quote-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-inline {
  gap: 0.3rem;
}

.field-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(173, 214, 255, 0.82);
}

.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(5, 14, 24, 0.75);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 14px;
  padding: 0.1rem 0.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.select-wrap::after {
  content: "▾";
  font-size: 0.65rem;
  color: rgba(173, 214, 255, 0.8);
  pointer-events: none;
  margin-left: 0.3rem;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.45rem 1.4rem 0.45rem 0.35rem;
  font-size: 0.9rem;
  color: #ecf5ff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.select-wrap select option {
  color: #0b161e;
  background: #ecf5ff;
}

.select-wrap select:focus {
  outline: none;
}

.select-wrap:focus-within {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
  transform: translateY(-1px);
}

.select-wrap.compact {
  padding: 0.05rem 0.35rem;
}

.select-wrap.compact select {
  font-size: 0.82rem;
  padding: 0.35rem 1.2rem 0.35rem 0.3rem;
}

.field input,
.field select {
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1.2px solid rgba(0, 212, 255, 0.22);
  background: rgba(8, 19, 32, 0.72);
  color: #f2fbff;
  font-size: 0.92rem;
  box-shadow: inset 0 0 14px rgba(0, 212, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
  transform: translateY(-1px);
}

.mini-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mini-pill {
  appearance: none;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(6, 16, 26, 0.75);
  color: #e9faff;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 58px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.mini-pill:hover,
.mini-pill:focus-visible {
  border-color: rgba(0, 212, 255, 0.5);
  color: #fff;
  outline: none;
}

.mini-pill.active {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(0, 128, 255, 0.35));
  border-color: rgba(0, 212, 255, 0.75);
  color: #0b161e;
  box-shadow: 0 8px 18px rgba(0, 212, 255, 0.25);
}


.service-details {
  margin-top: 0.15rem;
  display: grid;
  gap: 0.45rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.35s ease;
}

.service-details.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 320px;
}

.service-detail-group {
  display: none;
  gap: 0.5rem;
}

.service-detail-group.active {
  display: grid;
  gap: 0.5rem;
  animation: detailFade 0.3s ease forwards;
}

.service-detail-group.detail-inline {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
  position: relative;
}

.service-detail-group.detail-inline[data-service-detail="home"] {
  max-height: 235px;
  overflow-y: auto;
  padding-right: 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.35) transparent;
}

.service-detail-group.detail-inline[data-service-detail="home"]::-webkit-scrollbar {
  width: 6px;
}

.service-detail-group.detail-inline[data-service-detail="home"]::-webkit-scrollbar-track {
  background: transparent;
}

.service-detail-group.detail-inline[data-service-detail="home"]::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.35);
  border-radius: 12px;
}

/* Ensure navigation typography matches the quote heading across pages */
.nav-links a {
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: #e9f7ff !important;
}

@keyframes detailFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-detail-title {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 214, 255, 0.6);
}

.detail-card-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.detail-inline-field {
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(4, 16, 27, 0.75);
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.05);
  min-height: 100%;
}

.detail-inline-basement {
  justify-self: stretch;
}

.detail-basement-extra {
  grid-column: 1 / -1;
  display: none;
  gap: 0.45rem;
  padding-top: 0.1rem;
  animation: detailFade 0.3s ease forwards;
}

.detail-basement-extra.visible {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.detail-inline-field .detail-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(173, 214, 255, 0.75);
}

.number-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  background: rgba(2, 14, 24, 0.78);
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.05);
}

.number-wrap input[type="number"] {
  width: 100%;
  border: none;
  background: transparent;
  color: #e6f4ff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 0.35rem 0.25rem;
}

.number-wrap input::-webkit-outer-spin-button,
.number-wrap input::-webkit-inner-spin-button,
.addon-qty::-webkit-outer-spin-button,
.addon-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-wrap input[type="number"],
.addon-qty {
  -moz-appearance: textfield;
}

.number-wrap input[type="number"]:focus {
  outline: none;
  color: #ffffff;
}

.number-wrap:focus-within {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.16);
}

.detail-inline-pets .mini-pill-group {
  justify-content: space-between;
}

.detail-card {
  display: grid;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: radial-gradient(circle at top, rgba(10, 26, 38, 0.75), rgba(6, 14, 26, 0.82));
  box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.08);
  position: relative;
  overflow: hidden;
  align-content: start;
}

.detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.detail-card:focus-within::after,
.detail-card:hover::after {
  opacity: 1;
}

.detail-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 214, 255, 0.72);
}

.mini-pill-group.tight {
  gap: 0.35rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mini-pill-group.tight .mini-pill {
  min-width: 48px;
  padding: 0.35rem 0.7rem;
}

.quote-summary {
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(10, 22, 34, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: inset 0 0 22px rgba(0, 212, 255, 0.08);
  display: grid;
  gap: 0.85rem;
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.quote-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.quote-see-price {
  appearance: none;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 212, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.1));
  color: #f2fbff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  font-size: 0.86rem;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.quote-see-price:not(:disabled):hover,
.quote-see-price:not(:disabled):focus-visible {
  border-color: rgba(0, 212, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.45), rgba(0, 212, 255, 0.2));
  transform: translateY(-1px);
}

.quote-see-price:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background: rgba(8, 19, 32, 0.45);
  border-color: rgba(0, 212, 255, 0.18);
  color: rgba(214, 238, 255, 0.6);
}

.quote-form.quote-ready .quote-summary {
  opacity: 1;
}

.quote-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(214, 238, 255, 0.85);
}

.quote-summary-line strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #f7fdff;
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.quote-summary-line.total {
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .split-screen {
    gap: clamp(1rem, 2vw, 1.6rem);
  }

  .split-screen .text-side {
    padding: clamp(2.2rem, 4vw, 3.1rem);
    gap: 1.1rem;
  }

  .split-screen .hero-quote {
    max-width: clamp(500px, 46vw, 720px);
    flex: 0 1 clamp(500px, 46vw, 720px);
  }

  .split-screen .hero-quote .quote-card {
    padding: 1.2rem 1.4rem;
    border-radius: 22px;
    box-shadow:
      0 24px 68px rgba(0, 0, 0, 0.48),
      0 0 20px rgba(0, 212, 255, 0.22),
      inset 0 0 22px rgba(0, 212, 255, 0.08);
  }

  .split-screen .hero-quote .quote-card-header {
    margin-bottom: 0.85rem;
  }

  .split-screen .hero-quote .quote-card-header h2 {
    font-size: 1.42rem;
    letter-spacing: 0.14em;
  }

  .split-screen .hero-quote .quote-card-header p {
    font-size: 0.75rem;
    max-width: 26ch;
  }

  .split-screen .hero-quote .quote-form {
    gap: 0.9rem;
  }

  .split-screen .hero-quote .quote-grid {
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .split-screen .hero-quote .field {
    gap: 0.3rem;
  }

  .split-screen .hero-quote .field-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .split-screen .hero-quote .field input,
  .split-screen .hero-quote .field select {
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .split-screen .hero-quote .mini-pill-group {
    gap: 0.35rem;
  }

  .split-screen .hero-quote .mini-pill {
    padding: 0.32rem 0.55rem;
    min-height: 28px;
    min-width: 52px;
    font-size: 0.68rem;
  }

  .split-screen .hero-quote .service-details {
    gap: 0.5rem;
  }

  .split-screen .hero-quote .service-details.visible {
    padding: 0;
  }

  .split-screen .hero-quote .service-detail-group {
    gap: 0.45rem;
  }

  .split-screen .hero-quote .detail-basement-extra.visible {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .split-screen .hero-quote .detail-card-grid {
    gap: 0.45rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .split-screen .hero-quote .detail-card {
    padding: 0.55rem;
  }

  .split-screen .hero-quote .quote-summary {
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    gap: 0.55rem;
  }

  .split-screen .hero-quote .quote-summary-line {
    font-size: 0.82rem;
  }

  .split-screen .hero-quote .quote-summary-line strong {
    font-size: 0.92rem;
  }

  .split-screen .hero-quote .quote-actions {
    margin-top: 0.65rem;
  }

  .split-screen .hero-quote .quote-see-price {
    padding: 0.55rem 1.15rem;
    border-radius: 12px;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }
}

.quote-customize {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: max-height 0.6s ease, opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.quote-customize.visible {
  max-height: 1600px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.customize-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #b5f3ff;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
  margin-bottom: 1.4rem;
  animation: customizeGlow 1.8s ease-in-out infinite;
}

@keyframes customizeGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(0, 212, 255, 0.35), 0 0 36px rgba(76, 198, 255, 0.25); }
  50% { text-shadow: 0 0 28px rgba(0, 212, 255, 0.55), 0 0 48px rgba(76, 198, 255, 0.35); }
}

.addon-groups {
  display: grid;
  gap: 1.4rem;
}

.addon-group-title {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(190, 231, 255, 0.75);
  margin-bottom: 1rem;
}

.addon-group {
  display: none;
}


.addon-group.active {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.addon-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: 18px;
  background: rgba(10, 24, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.addon-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.addon-pill:hover,
.addon-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.18);
}

.addon-pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.addon-pill:hover::after,
.addon-pill:focus-visible::after,
.addon-pill.active::after {
  opacity: 0.65;
}

.addon-pill.active {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(0, 212, 255, 0.35);
}

.addon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #f6fbff;
  flex-shrink: 0;
}

.addon-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.35s ease;
}

.addon-pill:hover .addon-icon svg,
.addon-pill:focus-visible .addon-icon svg,
.addon-pill.active .addon-icon svg {
  transform: translateY(-2px) scale(1.08);
}

.addon-name {
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.2;
  color: rgba(226, 245, 255, 0.92);
  font-weight: 600;
}

.addon-stepper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  grid-template-rows: repeat(2, minmax(20px, 1fr));
  align-items: stretch;
  padding: 0;
  border-radius: 14px;
  background: rgba(3, 18, 30, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.22);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
  min-height: 48px;
}

.addon-stepper .addon-qty {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #f2fbff;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  align-self: stretch;
}

.addon-stepper .stepper-button {
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  padding: 0;
  border-radius: 0;
  border: none;
  display: grid;
  place-items: center;
  color: rgba(235, 248, 255, 0.92);
  background: rgba(12, 44, 66, 0.75);
}

.addon-stepper .stepper-button span {
  display: none;
}

.addon-stepper .stepper-button[data-qty-step="1"]::after {
  content: "▲";
  font-size: 0.85rem;
}

.addon-stepper .stepper-button[data-qty-step="-1"]::after {
  content: "▼";
  font-size: 0.85rem;
}

.addon-stepper .stepper-button[data-qty-step="1"] {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
}

.addon-stepper .stepper-button[data-qty-step="-1"] {
  grid-column: 2;
  grid-row: 2;
}

.addon-stepper .stepper-button:focus-visible {
  outline: 2px solid rgba(255, 144, 220, 0.8);
  outline-offset: -2px;
}

@media (max-width: 720px) {
  .addon-group.active {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 520px) {
  .addon-group.active {
    grid-template-columns: 1fr;
  }
}

.addon-stepper:focus-within,
.addon-pill.active .addon-stepper {
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(6, 26, 44, 0.82);
}

.addon-qty {
  width: 100%;
}

.addon-qty:focus {
  outline: none;
}


.addon-pill:not(.active) .addon-qty {
  opacity: 0.4;
}

.addon-pill.color-cyan { background: linear-gradient(135deg, rgba(0, 212, 255, 0.32), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-lime { background: linear-gradient(135deg, rgba(159, 255, 99, 0.32), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-magenta { background: linear-gradient(135deg, rgba(255, 99, 189, 0.32), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-orange { background: linear-gradient(135deg, rgba(255, 171, 94, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-indigo { background: linear-gradient(135deg, rgba(138, 138, 255, 0.32), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-gold { background: linear-gradient(135deg, rgba(255, 232, 140, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-sky { background: linear-gradient(135deg, rgba(122, 217, 255, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-rose { background: linear-gradient(135deg, rgba(255, 158, 173, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-mint { background: linear-gradient(135deg, rgba(144, 255, 214, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-teal { background: linear-gradient(135deg, rgba(118, 238, 225, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-plum { background: linear-gradient(135deg, rgba(190, 153, 255, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-azure { background: linear-gradient(135deg, rgba(126, 185, 255, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-amber { background: linear-gradient(135deg, rgba(255, 200, 122, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-blue { background: linear-gradient(135deg, rgba(108, 180, 255, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-lavender { background: linear-gradient(135deg, rgba(215, 177, 255, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-crimson { background: linear-gradient(135deg, rgba(255, 134, 134, 0.35), rgba(10, 30, 48, 0.7)); }
.addon-pill.color-emerald { background: linear-gradient(135deg, rgba(134, 255, 184, 0.35), rgba(10, 30, 48, 0.7)); }

@media (max-width: 768px) {
  .hero-quote {
    max-width: none;
  }

  .quote-card {
    padding: 2.25rem 1.75rem;
  }

  .quote-card-header p {
    font-size: 0.95rem;
  }

  .quote-summary {
    padding: 1.1rem 1.3rem;
  }

  .addon-group.active {
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  }

  .addon-pill {
    width: 68px;
    min-height: 68px;
    padding: 0.35rem;
    gap: 0.28rem;
  }

  .addon-name {
    font-size: 0.62rem;
  }

  .addon-qty {
    font-size: 0.7rem;
  }
}
.services-btn-home:hover { background:#00d4ff; color:#000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,212,255,.3); }

/* =========================
   SERVICES
   ========================= */
.services-page { min-height: 100vh; padding: 2em 0; position: relative; z-index: 2; }
.services-header { text-align: center; padding: 3em 2em 1em; }
.services-header h1 { font-size: 3.5rem; color: #00d4ff; margin-bottom: 1rem; animation: fadeInUp .8s ease forwards; }
.services-header p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto;
  animation: fadeInUp 1s ease forwards; animation-delay: .2s; opacity: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: 2em clamp(1.5rem, 3vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  text-align: left;
  transition: all .4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.service-card:nth-child(1){animation-delay:.3s}
.service-card:nth-child(2){animation-delay:.5s}
.service-card:nth-child(3){animation-delay:.7s}
.service-card::before{
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.1), transparent);
  transition:left .5s ease;
}
.service-card:hover::before { left:100%; }
.service-card:hover {
  transform: translateY(-10px);
  border-color:#00d4ff;
  box-shadow:0 20px 40px rgba(0,212,255,.2);
  background: rgba(0,212,255,.1);
}
.service-image {
  width: 100%;
  height: clamp(200px, 32vw, 240px);
  object-fit:cover;
  border-radius:18px;
  transition: transform .3s ease;
}
.service-card:hover .service-image { transform: scale(1.03); }
.service-copy { display: grid; gap: 0.75rem; }
.service-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color:#00d4ff;
  margin: 0;
  transition: color .3s ease;
}
.service-card:hover h3 { color:#fff; }
.service-card p {
  color:#ccc;
  line-height:1.65;
  font-size:1rem;
  transition: color .3s ease;
  margin: 0;
}
.service-card:hover p { color:#fff; }
.service-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,212,255,0.22), rgba(255,144,220,0.32));
  color: #f4fbff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.service-card:hover .service-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.45), rgba(255,144,220,0.6));
  color:#0a0f1c;
  transform: translateY(-2px);
}

/* =========================
   ABOUT
   ========================= */
.about-section { padding: 6em 2em 7em; position: relative; z-index: 2; }
.about-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(0,212,255,0.25); border-radius: 28px; padding: 3em;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
.about-content { max-width: 640px; }
.about-intro { letter-spacing: .35rem; font-size: .85rem; text-transform: uppercase; color: rgba(0,212,255,0.75);
  margin-bottom: 1rem; animation: fadeInUp .8s ease forwards; opacity: 0; }
.about-title { margin-bottom: 1.2rem; position: relative; }
.about-script { font-family: 'Great Vibes', cursive; font-size: 4rem; display: inline-block; text-transform: lowercase;
  color: #f3fbff; letter-spacing: .1rem; opacity: 0; animation: scriptReveal 1s ease forwards .2s; position: relative; }
.about-script::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 4px; width: 100%;
  background: linear-gradient(90deg, rgba(0,212,255,0) 0%, rgba(0,212,255,0.8) 35%, rgba(0,212,255,1) 55%, rgba(0,212,255,0) 100%);
  transform-origin: left center; transform: scaleX(0); animation: underlineSweep .7s ease forwards .8s;
  border-radius: 999px;
}
.about-slogan { font-size: 1.35rem; color: #d2ebff; line-height: 1.6; margin-bottom: 1.75rem;
  opacity: 0; animation: fadeInUp 1s ease forwards .6s; max-width: 28ch; }
.about-description { display: grid; gap: 1rem; color: #cfe9ff; font-size: 1.05rem; line-height: 1.7; }
.about-description span { display: block; opacity: 0; transform: translateY(12px); animation: textReveal .8s ease forwards; }
.about-description span:nth-child(1) { animation-delay: .9s; }
.about-description span:nth-child(2) { animation-delay: 1.15s; }
.about-soap { font-size: 5rem; color: #00d4ff; position: relative; flex: 1; display: flex; justify-content: flex-end; pointer-events: none; }
.about-soap::before { content: ""; position: absolute; top: 45%; left: 30%; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.3) 0%, rgba(0,212,255,0) 70%); filter: blur(18px); }
.about-soap::after { content: '✨'; position: absolute; top: -10px; right: 24px; font-size: 1.5rem;
  animation: sparkle 1.6s ease-in-out infinite; opacity: .9; }
.about-soap span { display: none; }
.about-soap { animation: floatSoap 5s ease-in-out infinite; align-items: flex-start; padding-top: .5rem; }

@keyframes scriptReveal { 0% { opacity: 0; transform: translateY(20px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes underlineSweep { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes textReveal { to { opacity: 1; transform: translateY(0); } }

/* Quote section (unchanged) */
.quote-form-section { padding: 4em 2em; background: linear-gradient(to bottom, #000, #333); color:#fff; text-align:center; }
.quote-form-section h1 { font-size: 2.5rem; margin-bottom: 2rem; color:#00d4ff; }
.quote-form { max-width: 600px; margin: 0 auto; text-align: left; }
.quote-form label { display:block; margin-top:1.5rem; font-weight:bold; }
.quote-form input, .quote-form textarea, .quote-form select {
  width:100%; padding:.8em; margin-top:.5rem; border:none; border-radius:6px; background:#222; color:#fff;
}
.quote-form button { margin-top:2rem; padding:.8em 2em; background:#00d4ff; color:#000; font-weight:bold; border:none; border-radius:8px; cursor:pointer; transition: background .3s ease; }
.quote-form button:hover { background:#fff; }

/* Announcement (static) */
.announcement { width:100%; background:#000; border-bottom:1px solid rgba(255,255,255,.1);
  padding:.9rem 1.25rem; display:flex; justify-content:center; align-items:center; z-index: 999; position: relative; }
.announcement-inner { width:100%; max-width:1200px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.75rem; text-align:center; }
.announce-line { color:#f2f2f2; font-size:1rem; line-height:1.35; opacity:.95; margin:0; }
.announcement-cta { display:inline-block; padding:.55em 1.2em; font-weight:800; font-size:.98rem; line-height:1;
  border-radius:12px; background:#00d4ff; color:#000 !important; border:2px solid transparent; transition: background .2s ease, transform .2s ease; }
.announcement-cta:hover { background:#fff; transform: translateY(-1px); }
@media (max-width: 768px){
  .announcement-inner { gap:.6rem; }
}

/* iOS-only tweaks */
html.ios .announcement { background:#f6f7f8; border-bottom:1px solid rgba(0,0,0,.1); }
html.ios .announce-line { color:#000 !important; }
html.ios .announcement-cta { background:#00ff88 !important; color:#000 !important; }
html.ios .announcement-cta:hover { background:#00cc6d !important; }

html.ios,
html.ios body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html.ios body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

html.ios body > * {
  width: 100%;
  max-width: 100%;
}

html.ios .split-screen {
  flex-direction: column;
  height: auto;
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: auto;
  padding: 3.25rem clamp(1.6rem, 4.5vw, 2.75rem) calc(2.4rem + env(safe-area-inset-bottom));
  gap: 1.6rem;
  box-sizing: border-box;
}

html.ios .image-side { display: none !important; }
html.ios .text-side {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.35) 100%),
    url('cleanuptransformation.jpg') center center / cover no-repeat;
  min-height: 100svh;
  padding: 3rem clamp(1.4rem, 5vw, 2.75rem) calc(1.4rem + env(safe-area-inset-bottom));
  display:flex; flex-direction:column; justify-content:center; align-items:stretch;
  border-radius:20px; overflow:hidden; position:relative;
  width: 100%;
  box-sizing: border-box;
}
html.ios .text-side > * {
  width: 100%;
}
html.ios .text-side::before { display: none; }
html.ios .headline { font-size:3rem; line-height:1.15; font-weight:900; color:#f6fbff; position:relative; text-shadow: 0 14px 32px rgba(0,0,0,0.55); }
html.ios .subtext { font-size:1.3rem; font-weight:600; color:#e4f4ff; max-width:30ch; position:relative; text-shadow: 0 12px 28px rgba(0,0,0,0.45); }
html.ios .quote-btn-home, html.ios .services-btn-home {
  background:#00d4ff !important; color:#001220 !important; border:none; border-radius:14px; font-weight:800;
  font-size:1.4rem; padding:.8em 2em; text-transform:lowercase; transition: background .3s ease, transform .3s ease; position:relative; z-index:2;
}
html.ios .quote-btn-home:hover, html.ios .services-btn-home:hover { background:#33e1ff !important; transform: translateY(-2px); }
html.ios .navbar { z-index: 1003; }

html.ios .hero-quote {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

html.ios section:not(#home),
html.ios footer {
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1.6rem, 4.5vw, 2.75rem);
  box-sizing: border-box;
}

html.ios footer {
  align-self: center;
}

html.ios .services-grid {
  padding-inline: 0;
}

html.ios .about-inner {
  padding: 3em clamp(1.2rem, 4vw, 2.4rem);
}

html.ios .hero-quote .quote-card {
  padding: 1.6rem clamp(1.2rem, 5vw, 1.75rem);
  border-radius: 26px;
  max-height: min(78svh, 620px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-sizing: border-box;
  overscroll-behavior: contain;
  border: 2px solid rgba(0, 212, 255, 0.55);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(0, 212, 255, 0.24);
  background: rgba(0, 12, 22, 0.82);
}

html.ios .quote-card-header {
  margin-bottom: 0.25rem;
}

html.ios .quote-card-header p {
  font-size: 0.95rem;
  max-width: none;
  line-height: 1.55;
}

html.ios .quote-form {
  gap: 1.35rem;
}

html.ios .quote-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

html.ios .field {
  gap: 0.55rem;
}

html.ios .service-details {
  gap: 1rem;
}

html.ios .service-details.visible {
  max-height: none;
  opacity: 1;
  pointer-events: auto;
}

html.ios .service-details:not(.visible) {
  display: none;
}

html.ios .service-detail-group {
  display: none;
}

html.ios .service-detail-group.active {
  display: grid;
  gap: 1rem;
  background: rgba(4, 12, 22, 0.78);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  padding: 1rem;
  animation: detailFade 0.25s ease forwards;
}

html.ios .service-detail-group.detail-inline {
  grid-template-columns: 1fr;
}

html.ios .service-detail-group.detail-inline[data-service-detail="home"] {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

html.ios .detail-inline-field,
html.ios .detail-card {
  gap: 0.65rem;
}

html.ios .detail-inline-field {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(6, 16, 26, 0.78);
}

html.ios .detail-card {
  padding: 1rem;
  border-radius: 18px;
}

html.ios .detail-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

html.ios .mini-pill-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.85rem;
}

html.ios .mini-pill-group.tight {
  gap: 0.85rem;
}

html.ios .mini-pill {
  min-height: 48px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  width: 100%;
}

html.ios .detail-inline-field .mini-pill,
html.ios .mini-pill-group.tight .mini-pill {
  min-width: 0;
}

html.ios .number-wrap {
  padding: 0.65rem;
}

html.ios .number-wrap input[type="number"] {
  font-size: 1rem;
}

html.ios .quote-summary {
  gap: 1.1rem;
}

html.ios .quote-actions {
  justify-content: center;
}

html.ios .quote-see-price {
  width: min(260px, 100%);
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
}

/* Responsive */
@media (max-width: 768px){
  .split-screen { flex-direction: column; height: auto; }
  .text-side, .image-side { flex: none; }
  .headline { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; padding: 2em 1em; }
  .service-image { width: 150px; height: 150px; }
  .navbar { padding: 1em 2em; }
  .logo { font-size: 1.5rem; }
  .floating-soap { font-size: 2.6rem; top: 18px; right: 18px; }
  .image-top-diffuse { height: 120px; }
  .about-inner { flex-direction: column; padding: 2.75em 2em; }
  .about-soap { align-self: flex-end; margin-top: 2rem; font-size: 4rem; }
}

/* Orbital (unused but retained) */
.orbital-grid { position: relative; overflow: hidden; background-color: black; }
.orbital-grid::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: repeating-radial-gradient(circle, rgba(255,165,0,.2) 0px, rgba(0,212,255,.2) 1px, transparent 2px, transparent 20px);
  animation: rotateGrid 60s linear infinite; z-index: 0; pointer-events: none;
}
@keyframes rotateGrid { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
#services-grid { scroll-margin-top: 80px; }
/* ===== FINAL: Seamless diagonal infinite background + safe stacking ===== */
:root{
  /* 👉 point to your seamless cleaning-supplies tile */
  --bg-tile: url('cleaning-pattern.png');   /* e.g. /assets/bg/cleaning-pattern-wide.png */

  /* 👉 set to the tile PNG’s native pixel size (exact) */
  --tile-w: 1024px;   /* CHANGE if your tile differs */
  --tile-h: 512px;    /* CHANGE if your tile differs */

  /* icon size (1.00 = native). Try 0.9–1.1 */
  --tile-scale: 0.95;

  /* derived sizes */
  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

/* keep the page black behind everything */
html { background:#000; }

/* content will sit above the animated layer */
body { background: transparent !important; }

/* One pseudo-element = overlay + two tiled layers (in that order) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;            /* base layer; content is forced above below */
  pointer-events: none;

  /* [0]=overlay, [1]=tile A, [2]=tile B */
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(0,0,0,.45), rgba(0,0,0,.75) 60%, rgba(0,0,0,.85)),
    var(--bg-tile),
    var(--bg-tile);

  background-repeat:
    no-repeat,
    repeat,
    repeat;

  background-size:
    cover,
    var(--tile-w-size) var(--tile-h-size),
    var(--tile-w-size) var(--tile-h-size);

  background-position:
    center,
    0 0,
    calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);

  /* move exactly one tile → perfect seamless loop */
  animation: bgA 38s linear infinite, bgB 62s linear infinite;
}

/* Put ALL main sections above the animated layer */
.navbar,
.announcement,
.split-screen,
.services-page,
footer {
  position: relative;
  z-index: 2;   /* safely above body::after */
}

/* Ensure hero left panel never reintroduces the old grid */
#home.split-screen .text-side,
.split-screen .text-side {
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
}

/* Seamless diagonal loops */
@keyframes bgA {
  from {
    background-position: center, 0 0,
      calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);
  }
  to {
    background-position: center, var(--tile-w-size) var(--tile-h-size),
      calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);
  }
}
@keyframes bgB {
  from {
    background-position: center, 0 0,
      calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);
  }
  to {
    background-position: center, 0 0,
      calc(var(--tile-w-size)*1.5) calc(var(--tile-h-size)*1.5);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  body::after { animation: none; }
}
/* === SITEWIDE: seamless diagonal background (1536×1024 tile) === */
:root{
  --bg-tile: url('backgroundbook.png');  /* your file */
  --tile-w: 1536px;                      /* native tile size */
  --tile-h: 1024px;
  --tile-scale: 0.90;                    /* make icons slightly smaller (0.85–0.95) */

  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));

  /* overlay strength (tune 0.55–0.75) */
  --overlay-a: rgba(0,0,0,0.50);
  --overlay-b: rgba(0,0,0,0.78);
  --overlay-c: rgba(0,0,0,0.88);
}

html { background:#000; }
body { background: transparent !important; }

/* Animated tile (under content) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;                  /* stays under your content */
  pointer-events: none;

  background-image: var(--bg-tile), var(--bg-tile);
  background-repeat: repeat, repeat;
  background-size: var(--tile-w-size) var(--tile-h-size), var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);

  /* move EXACTLY one tile -> perfect loop */
  animation: bgA 46s linear infinite, bgB 78s linear infinite;
}

/* Readability overlay (also under content) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;                  /* merged below, we’ll lift content above */
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              var(--overlay-a), var(--overlay-b) 60%, var(--overlay-c));
}

/* Force core sections above both ::before/::after */
main, .navbar, .announcement, .split-screen, .services-page, footer, section {
  position: relative;
  z-index: 2;
}

/* Old grid never returns on hero-left */
#home.split-screen .text-side,
.split-screen .text-side {
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
}

/* Seamless loops */
@keyframes bgA {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: var(--tile-w-size) var(--tile-h-size),
                           calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
}
@keyframes bgB {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: 0 0,
                           calc(var(--tile-w-size)*1.5) calc(var(--tile-h-size)*1.5); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){ body::after{ animation:none; } }
/* Desktop: make service cards larger and denser */
@media (min-width: 980px){
  .services-page { padding: 3em 0 4.5em; }
  .services-grid {
    max-width: 1320px;
    gap: 32px;
    padding: 2.5em 2.5em;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
  }
  .service-card { padding: 32px; }
  .service-image { height: 260px; }
  .service-card h3 { font-size: 2.4rem; }
  .services-header h1 { font-size: 4rem; }
}
/* iOS: keep the announcement bar dark to match desktop */
html.ios .announcement { background:#000 !important; border-bottom:1px solid rgba(255,255,255,0.1) !important; }
html.ios .announce-line { color:#f2f2f2 !important; }
html.ios .announcement-cta { background:#00d4ff !important; color:#000 !important; }
.announcement { padding: calc(0.9rem + env(safe-area-inset-top)) 1.25rem 0.9rem; }
/* Neutralize any page-level background/overlay left in inline styles */
body { background: transparent !important; }
/* === SITEWIDE: seamless diagonal background (animated icons) === */
:root{
  /* Use the SEAMLESS tile file (not backgroundbook.png) */
  --bg-tile: url('backgroundbook.png');

  /* Set to the tile image's native pixel size */
  --tile-w: 1024px;   /* <- change if your tile is a different size */
  --tile-h: 512px;

  /* Make icons a tiny bit smaller */
  --tile-scale: 0.88;  /* tweak 0.84–0.92 to taste */

  /* Derived sizes */
  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

html { background:#000; }
body { background: transparent !important; }

/* Animated tiling (under content) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;                 /* content sits above */
  pointer-events: none;

  background-image: var(--bg-tile), var(--bg-tile);
  background-repeat: repeat, repeat;
  background-size: var(--tile-w-size) var(--tile-h-size), var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2);

  /* Move EXACTLY one tile -> perfect seamless loop */
  animation: bgA 46s linear infinite, bgB 78s linear infinite;
}

/* Single readability overlay, under content */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;  /* keep with ::after; content is lifted above below */
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,.50), rgba(0,0,0,.78) 60%, rgba(0,0,0,.88));
}

/* Lift core sections above background layers */
.navbar, .announcement, .split-screen, .services-page, section, footer, main {
  position: relative; z-index: 2;
}

/* Kill any leftover grid on hero left */
#home.split-screen .text-side,
.split-screen .text-side { background: transparent !important; background-image: none !important; animation: none !important; }

/* Seamless diagonal loops */
@keyframes bgA {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: var(--tile-w-size) var(--tile-h-size), calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
}
@keyframes bgB {
  from { background-position: 0 0, calc(var(--tile-w-size)/2) calc(var(--tile-h-size)/2); }
  to   { background-position: 0 0, calc(var(--tile-w-size)*1.5) calc(var(--tile-h-size)*1.5); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){ body::after{ animation:none; } }
/* === ONE-LAYER, SITE-WIDE, SEAMLESS DIAGONAL BACKGROUND === */
/* Uses a single tile, repeated across the entire page, with a perfect loop. */
:root{
  /* Your tile image (the cleaning-icons PNG you want). */
  --bg-tile: url('backgroundbook.png');     /* or 'cleaning-pattern.png' if that's the seamless one */

  /* Native tile size of your PNG */
  --tile-w: 1536px;                         /* you told me 1536 × 1024 */
  --tile-h: 1024px;

  /* Make icons a tiny bit smaller or bigger (0.86–0.96 range works well) */
  --tile-scale: 0.90;

  /* Derived size */
  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

html, body { min-height: 100%; }
html { background: #000; }

/* Keep body transparent so the single animated layer shows through */
body {
  background: transparent !important;
}

/* SINGLE animated layer for the WHOLE SITE (no second layer, no parallax) */
body::after{
  content:"";
  position: fixed;      /* covers viewport; repeats across full scroll */
  inset: 0;
  z-index: 0;           /* content stays above */
  pointer-events: none;

  background-image: var(--bg-tile);
  background-repeat: repeat;   /* duplicates seamlessly */
  background-size: var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0;

  /* Move by EXACTLY one tile → perfect seamless loop corner-to-corner */
  animation: bgInfinite 56s linear infinite;
}

/* Optional: subtle readability (turn to 0.00 to remove any dim) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 1;           /* above pattern, below content */
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,0.40), rgba(0,0,0,0.66) 60%, rgba(0,0,0,0.80));
}

/* Ensure ALL content sits above the background layers */
.navbar, .announcement, .split-screen, .services-page, main, section, footer {
  position: relative;
  z-index: 2;
}

/* Kill any section backgrounds that might “break” the continuous canvas */
#home.split-screen .text-side,
.split-screen .text-side,
.services-page,
section,
main {
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
}

/* One single diagonal seamless loop */
@keyframes bgInfinite {
  from { background-position: 0 0; }
  to   { background-position: var(--tile-w-size) var(--tile-h-size); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  body::after{ animation: none; }
}
body {
  background: url('backgroundbook.png') repeat;
  background-size: 300px; /* scale so icons are smaller */
  animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px; /* same as background-size for seamless diagonal */
  }
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&display=swap');

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; animation-fill-mode: both; }

/* Links */
a { text-decoration: none !important; }
a:hover { text-decoration: none !important; }
a:visited { color: #00d4ff; text-decoration: none !important; }
a:link { text-decoration: none !important; }

/* =========================
   GLOBAL BACKGROUND
   ========================= */
:root{
  --bg-tile: url('backgroundbook.png');     /* seamless tile */
  --tile-w: 1536px;                         /* native size */
  --tile-h: 1024px;
  --tile-scale: 0.90;                       /* tweak 0.86–0.96 */

  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

html, body { min-height: 100%; }
html { background: #000; }

body {
  font-family: 'Inter', sans-serif;
  color: white;
  min-height: 100vh;
  background: transparent !important;
}

/* Animated tiling background */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: var(--bg-tile);
  background-repeat: repeat;
  background-size: var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0;

  /* seamless diagonal loop */
  animation: bgInfinite 56s linear infinite;
}

/* readability overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,0.40), rgba(0,0,0,0.66) 60%, rgba(0,0,0,0.80));
}

/* lift site content above background */
.navbar, .announcement, .split-screen, .services-page, main, section, footer {
  position: relative;
  z-index: 2;
}

/* background animation */
@keyframes bgInfinite {
  from { background-position: 0 0; }
  to   { background-position: var(--tile-w-size) var(--tile-h-size); }
}

@media (prefers-reduced-motion: reduce){
  body::after{ animation: none; }
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5em 3em;
  background: linear-gradient(to right, #000, #111);
  position: sticky; top: 0; z-index: 1000;
}

.logo { display: flex; align-items: center; font-size: 2rem; font-weight: bold; color: #00d4ff;
  animation: fadeInUp 0.4s ease forwards; transform: translateY(-10px); opacity: 0; animation-delay: 0.2s; position: relative; }
.logo .soap { font-size: 2.5rem; margin-right: .5rem; transform: scale(1.1); opacity: 1;
  animation: popIn 1.2s ease; animation-delay: .2s; animation-fill-mode: backwards; position: relative; }
.logo .soap::after { content: '✨'; position: absolute; font-size: .9rem; top: -10px; right: -8px;
  animation: sparkle 1.2s ease-in-out infinite; color: #fff; opacity: .8; }
.logo-text { font-size: 1.8rem; text-transform: lowercase; letter-spacing: 1px;
  animation: fadeInUp 0.1s ease forwards; opacity: 0; animation-delay: .3s; }

@keyframes popIn { 0%{transform:scale(.5) rotate(-30deg);opacity:0} 60%{transform:scale(1.3) rotate(10deg);opacity:1} 100%{transform:scale(1.1)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes sparkle { 0%,100%{opacity:.8;transform:scale(1) rotate(0)} 50%{opacity:1;transform:scale(1.2) rotate(20deg)} }

/* nav links */
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: #eee; font-size: 1rem; transition: color .3s ease; }
.nav-links a:hover { color: #00d4ff; }
.nav-links .quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.2em;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.16);
  color: #e9f7ff;
  box-shadow: 0 10px 22px rgba(0, 212, 255, 0.16);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-links .quote-btn:hover,
.nav-links .quote-btn:focus-visible {
  background: rgba(0, 212, 255, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 212, 255, 0.25);
}
.nav-links .quote-btn[aria-current="page"] {
  background: linear-gradient(135deg, rgba(255, 144, 220, 0.55), rgba(0, 212, 255, 0.7));
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 144, 220, 0.32);
}
.nav-links a[aria-current="page"] {
  color: #00d4ff;
  position: relative;
}
.nav-links a[aria-current="page"]:not(.quote-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,212,255,0), rgba(0,212,255,0.85), rgba(0,212,255,0));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.25rem);
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cart {
  gap: 0.55rem;
  padding: 0.55em 1.1em;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(3, 18, 30, 0.55);
  color: #e9f7ff;
  backdrop-filter: blur(6px);
  position: relative;
}

.nav-cart:hover,
.nav-cart:focus-visible {
  background: rgba(0, 212, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.18);
}

.nav-cart.nav-cart-has-items {
  border-color: rgba(255, 128, 210, 0.8);
  background: linear-gradient(135deg, rgba(255, 165, 228, 0.2), rgba(255, 79, 195, 0.95));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 79, 195, 0.32);
  animation: navCartBreath 2.8s ease-in-out infinite;
}

.nav-cart.nav-cart-has-items.nav-cart-pulse {
  animation: navCartPulse 0.9s ease, navCartBreath 2.8s ease-in-out infinite;
}

.nav-cart.nav-cart-has-items:hover,
.nav-cart.nav-cart-has-items:focus-visible {
  background: linear-gradient(135deg, rgba(255, 195, 240, 0.35), rgba(255, 79, 195, 1));
  box-shadow: 0 20px 48px rgba(255, 79, 195, 0.4);
}

.nav-cart.nav-cart-has-items .nav-cart-count {
  background: linear-gradient(135deg, #ffe7f7, #ff9ee4);
  color: #3f0f30;
}

.nav-cart-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff90dc, #ff4fc3);
  color: #051320;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(255, 79, 195, 0.35);
}

.nav-cart:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.nav-cart-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.nav-cart-label.muted {
  opacity: 0.6;
}

.nav-cart.nav-cart-has-items::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 79, 195, 0.35) 0%, rgba(255, 79, 195, 0) 65%);
  opacity: 0.6;
  filter: blur(4px);
  z-index: -1;
}

.nav-cart.nav-cart-has-items:hover::before,
.nav-cart.nav-cart-has-items:focus-visible::before {
  opacity: 0.85;
}

.nav-cart-pulse {
  animation: navCartPulse 0.9s ease;
}

@keyframes navCartPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); }
  60% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

@keyframes navCartBreath {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(255, 79, 195, 0.32), 0 0 0 0 rgba(255, 79, 195, 0.36);
  }
  50% {
    box-shadow: 0 20px 50px rgba(255, 79, 195, 0.45), 0 0 0 16px rgba(255, 79, 195, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cart.nav-cart-has-items {
    animation: none;
  }
}

.nav-cart-popover {
  position: fixed;
  top: clamp(72px, 6vw, 96px);
  right: clamp(16px, 4vw, 42px);
  width: min(360px, calc(100vw - 28px));
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-cart-popover:not([hidden]) {
  display: block;
}

.nav-cart-popover.nav-cart-popover-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-cart-popover-inner {
  background: rgba(4, 12, 20, 0.92);
  border: 2px dotted rgba(255, 116, 201, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
  padding: 1.1rem;
  backdrop-filter: blur(8px);
  color: #f1fbff;
  position: relative;
  overflow: hidden;
}

.nav-cart-popover-inner::before {
  content: "";
  position: absolute;
  inset: -40% -50% auto auto;
  height: 180px;
  width: 180px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.cart-popover-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  appearance: none;
  border: none;
  background: rgba(2, 10, 18, 0.65);
  color: rgba(255, 255, 255, 0.75);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-popover-close:hover,
.cart-popover-close:focus-visible {
  background: rgba(0, 212, 255, 0.24);
  color: #051320;
  outline: none;
}

.cart-popover-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.cart-popover-header img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.cart-popover-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.cart-popover-subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(221, 241, 255, 0.78);
}

.cart-popover-status {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 212, 112, 0.95);
}

.cart-popover-empty {
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  color: rgba(221, 241, 255, 0.68);
}

.cart-popover-details {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
}

.cart-popover-details dt {
  font-weight: 600;
  color: rgba(221, 241, 255, 0.75);
}

.cart-popover-details dd {
  margin: 0;
  color: rgba(241, 250, 255, 0.9);
}

.cart-popover-totals {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.cart-popover-totals div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-popover-payments {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

[data-paypal-container] {
  width: 100%;
}

.cart-popover-paypal-status {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(221, 241, 255, 0.85);
}

.cart-popover-paypal-status.error {
  color: #ff86ac;
}

.cart-popover-google {
  background: linear-gradient(135deg, #4aa9ff, #006bff);
  color: #ffffff;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 30px rgba(0, 107, 255, 0.28);
}

.cart-popover-google[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  background: linear-gradient(135deg, rgba(74, 169, 255, 0.35), rgba(0, 107, 255, 0.25));
  box-shadow: none;
}

@media (max-width: 620px) {
  .nav-cart-popover {
    right: 50%;
    left: 50%;
    transform: translate(-50%, -14px) scale(0.96);
    width: min(360px, calc(100vw - 20px));
  }

  .nav-cart-popover.nav-cart-popover-open {
    transform: translate(-50%, 0) scale(1);
  }
}

.cart-flight {
  position: fixed;
  z-index: 1500;
  pointer-events: none;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  opacity: 0;
}

.cart-flight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1.25em 2.25em;
    gap: clamp(1rem, 2vw, 2.2rem);
  }

  .nav-links {
    gap: 1.3rem;
  }

}

@media (max-width: 900px) {
  .navbar {
    padding: 1.1em 1.75em;
  }

  .nav-cart {
    gap: 0.4rem;
    padding: 0.45em 0.8em;
  }

  .nav-cart-label {
    display: none;
  }

}

@media (max-width: 640px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .logo {
    order: 1;
  }

  .nav-links {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }

  .nav-actions {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   HERO SPLIT
   ========================= */
.split-screen { display: flex; height: 90vh; width: 100%; position: relative; z-index: 2; }
.text-side { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4em; }
.image-side { flex: 1; overflow: hidden; display: flex; justify-content: flex-start; align-items: center; position: relative; z-index: 1; }
.image-side::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 120px;
  background: linear-gradient(to right, black, transparent); z-index: 3; pointer-events: none; }
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transform: translateX(-40px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* headline */
.headline { font-size: 3rem; font-weight: 800; line-height: 1.2; }
.headline span { display: inline-block; animation: fadeIn 1s ease forwards; opacity: 0; }
.headline span:nth-child(1){animation-delay:.3s}
.headline span:nth-child(2){animation-delay:.6s}
.headline span:nth-child(3){animation-delay:.9s}
.headline span:nth-child(4){animation-delay:1.2s}
.headline-image { height: 1em; width: auto; display: inline-block; margin-left: .5rem; vertical-align: baseline;
  animation: fadeIn 1s ease forwards; opacity: 0; animation-delay: 1.5s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* subtext & CTAs */
.subtext { font-size: 1.1rem; margin-top: 2rem; color: #ccc; max-width: 500px; }
.quote-btn-home {
  margin-top: 2.4rem; padding: .8em 2em; background: #00d4ff; color: #000 !important; font-weight: bold;
  border: none; border-radius: 14px; font-size: 1.5rem; cursor: pointer; align-self: flex-start;
  animation: fadeInUp 1.5s ease forwards; opacity: 0; transform: translateY(20px);
  transition: background .3s ease, transform .3s ease;
}
.quote-btn-home:hover { background: white; color: black !important; }

.services-btn-home {
  margin-top: 1.5rem; padding: .8em 2em; background: transparent; color: #00d4ff; font-weight: bold;
  border: 2px solid #00d4ff; border-radius: 50px; font-size: 1.2rem;
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&display=swap');

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; animation-fill-mode: both; }

/* Links */
a { text-decoration: none !important; }
a:hover { text-decoration: none !important; }
a:visited { color: #00d4ff; text-decoration: none !important; }
a:link { text-decoration: none !important; }

/* =========================
   GLOBAL BACKGROUND
   ========================= */
:root{
  --bg-tile: url('backgroundbook.png');     /* seamless tile */
  --tile-w: 1536px;                         /* native size */
  --tile-h: 1024px;
  --tile-scale: 0.90;                       /* tweak 0.86–0.96 */

  --tile-w-size: calc(var(--tile-w) * var(--tile-scale));
  --tile-h-size: calc(var(--tile-h) * var(--tile-scale));
}

html, body { min-height: 100%; }
html { background: #000; }

body {
  font-family: 'Inter', sans-serif;
  color: white;
  min-height: 100vh;
  background: transparent !important;
}

/* Animated tiling background */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: var(--bg-tile);
  background-repeat: repeat;
  background-size: var(--tile-w-size) var(--tile-h-size);
  background-position: 0 0;

  /* seamless diagonal loop */
  animation: bgInfinite 56s linear infinite;
}

/* readability overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,0.40), rgba(0,0,0,0.66) 60%, rgba(0,0,0,0.80));
}

/* lift site content above background */
.navbar, .announcement, .split-screen, .services-page, main, section, footer {
  position: relative;
  z-index: 2;
}

/* background animation */
@keyframes bgInfinite {
  from { background-position: 0 0; }
  to   { background-position: var(--tile-w-size) var(--tile-h-size); }
}

@media (prefers-reduced-motion: reduce){
  body::after{ animation: none; }
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5em 3em;
  background: linear-gradient(to right, #000, #111);
  position: sticky; top: 0; z-index: 1000;
}

.logo { display: flex; align-items: center; font-size: 2rem; font-weight: bold; color: #00d4ff;
  animation: fadeInUp 0.4s ease forwards; transform: translateY(-10px); opacity: 0; animation-delay: 0.2s; position: relative; }
.logo .soap { font-size: 2.5rem; margin-right: .5rem; transform: scale(1.1); opacity: 1;
  animation: popIn 1.2s ease; animation-delay: .2s; animation-fill-mode: backwards; position: relative; }
.logo .soap::after { content: '✨'; position: absolute; font-size: .9rem; top: -10px; right: -8px;
  animation: sparkle 1.2s ease-in-out infinite; color: #fff; opacity: .8; }
.logo-text { font-size: 1.8rem; text-transform: lowercase; letter-spacing: 1px;
  animation: fadeInUp 0.1s ease forwards; opacity: 0; animation-delay: .3s; }

@keyframes popIn { 0%{transform:scale(.5) rotate(-30deg);opacity:0} 60%{transform:scale(1.3) rotate(10deg);opacity:1} 100%{transform:scale(1.1)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes sparkle { 0%,100%{opacity:.8;transform:scale(1) rotate(0)} 50%{opacity:1;transform:scale(1.2) rotate(20deg)} }

/* nav links */
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: #eee; font-size: 1rem; transition: color .3s ease; }
.nav-links a:hover { color: #00d4ff; }

/* =========================
   HERO SPLIT
   ========================= */
.split-screen { display: flex; height: 90vh; width: 100%; position: relative; z-index: 2; }
.text-side { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4em; }
.image-side { flex: 1; overflow: hidden; display: flex; justify-content: flex-start; align-items: center; position: relative; z-index: 1; }
.image-side::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 120px;
  background: linear-gradient(to right, black, transparent); z-index: 3; pointer-events: none; }
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transform: translateX(-40px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* headline */
.headline { font-size: 3rem; font-weight: 800; line-height: 1.2; }
.headline span { display: inline-block; animation: fadeIn 1s ease forwards; opacity: 0; }
.headline span:nth-child(1){animation-delay:.3s}
.headline span:nth-child(2){animation-delay:.6s}
.headline span:nth-child(3){animation-delay:.9s}
.headline span:nth-child(4){animation-delay:1.2s}
.headline-image { height: 1em; width: auto; display: inline-block; margin-left: .5rem; vertical-align: baseline;
  animation: fadeIn 1s ease forwards; opacity: 0; animation-delay: 1.5s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* subtext & CTAs */
.subtext { font-size: 1.1rem; margin-top: 2rem; color: #ccc; max-width: 500px; }
.quote-btn-home {
  margin-top: 2.4rem; padding: .8em 2em; background: #00d4ff; color: #000 !important; font-weight: bold;
  border: none; border-radius: 14px; font-size: 1.5rem; cursor: pointer; align-self: flex-start;
  animation: fadeInUp 1.5s ease forwards; opacity: 0; transform: translateY(20px);
  transition: background .3s ease, transform .3s ease;
}
.quote-btn-home:hover { background: white; color: black !important; }

.services-btn-home {
  margin-top: 1.5rem; padding: .8em 2em; background: transparent; color: #00d4ff; font-weight: bold;
  border: 2px solid #00d4ff; border-radius: 50px; font-size: 1.2rem;
  animation: fadeInUp 1.8s ease forwards; opacity: 0; transform: translateY(20px);
  transition: all .3s ease; text-transform: lowercase;
}
.services-btn-home:hover { background:#00d4ff; color:#000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,212,255,.3); }

/* =========================
   SERVICES
   ========================= */
.services-page { min-height: 100vh; padding: 2em 0; position: relative; z-index: 2; }
/* (rest of your services, about, announcement, responsive styles remain unchanged) */

/* =========================
   ROTATING HEADLINE WORDS
   ========================= */
.hd-static { white-space: nowrap; }

.rotator {
  position: relative;
  display: inline-block;
  min-width: 12ch;
  padding-bottom: .25rem;
}

.rotator .rot-word {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: rotateWords 9s linear infinite;
  white-space: nowrap;
}

.rotator .rot-word:nth-child(1) { animation-delay: 0s; }
.rotator .rot-word:nth-child(2) { animation-delay: 3s; }
.rotator .rot-word:nth-child(3) { animation-delay: 6s; }

@keyframes rotateWords {
  0%   { opacity: 0; transform: translateY(12px); }
  5%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

.rotator .rot-underline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,212,255,0), rgba(0,212,255,0.9), rgba(255,255,255,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: underlineSweep 3s ease infinite;
}

@keyframes underlineSweep {
  0%   { transform: scaleX(0); opacity: 0; }
  10%  { transform: scaleX(1); opacity: 1; }
  80%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}
/* =========================
   HERO CAROUSEL
   ========================= */
.headline-carousel {
  max-width: 580px;
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  animation: fadeInUp 0.8s ease forwards;
}

.carousel-slide.active {
  display: block;
}

.carousel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #00d4ff;
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
}

.carousel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0,212,255,0), rgba(0,212,255,0.9), rgba(255,255,255,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: underlineSweep 1s ease forwards;
}

.carousel-slide p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* dots */
.carousel-dots {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
}

.carousel-dots .dot {
  width: 12px; height: 12px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: #00d4ff;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 50% -10%,
              rgba(0,0,0,0.40), rgba(0,0,0,0.66) 60%, rgba(0,0,0,0.80));
}

@keyframes underlineSweep {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
/* ===== 1) ABOUT: precise soap position + centered glow ===== */
.about-section .about-inner { position: relative; }

/* Choose the target spot once, then fine-tune nudges if needed */
:root{
  --soap-x: 62%;        /* left → right (0% = far left, 100% = far right) */
  --soap-y: 66%;        /* top  → bottom (0% = top, 100% = bottom) */
  --soap-nudge-x: 0px;  /* small pixel nudge if you want later */
  --soap-nudge-y: 0px;
  --soap-visual-fix-y: -8%; /* compensates emoji’s visual center (−8% looks right) */
}

.about-section .about-soap{
  position: absolute !important;
  left: calc(var(--soap-x) + var(--soap-nudge-x)) !important;
  top:  calc(var(--soap-y) + var(--soap-nudge-y)) !important;

  /* Center visually (emoji sits a tad low inside its box, so lift it) */
  transform: translate(-50%, calc(-50% + var(--soap-visual-fix-y))) !important;

  display: flex; align-items: center; justify-content: center;
  margin: 0 !important; padding: 0 !important; line-height: 1;
  z-index: 2; pointer-events: none;
}

/* Glow perfectly centered behind the emoji */
.about-section .about-soap::before{
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.38) 0%, rgba(0,212,255,0) 70%);
  filter: blur(20px);
  z-index: -1;
}

/* Keep sparkle close to the emoji */
.about-section .about-soap::after{
  right: -10px; top: -10px;
}

/* Mobile: fall back to the original stacked layout */
@media (max-width: 768px){
  .about-section .about-soap{
    position: static !important;
    transform: none !important;
    align-self: center !important;
    margin-top: 2rem !important;
  }
  .about-section .about-soap::before{
    left: 50%; top: 55%; transform: translate(-50%, -50%);
  }
}

/* ===== 2) LOGO: use Great Vibes + left→right reveal sweep ===== */
.logo .logo-text{
  font-family: 'Great Vibes', cursive !important;
  font-size: 2.15rem;                 /* tweak if you want it larger */
  letter-spacing: .5px;
  color: #fff;
  position: relative;
  display: inline-block;

  /* reveal from left to right */
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: logoUnveil 1.1s ease forwards .25s;
}

/* subtle sheen passing across during the reveal */
.logo .logo-text::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,212,255,.8), rgba(255,255,255,.95));
  mix-blend-mode: screen; opacity: 0;
  animation: logoSweep 1.1s ease forwards .25s;
  pointer-events: none;
}

@keyframes logoUnveil{
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  40%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0);   opacity: 1; }
}
@keyframes logoSweep{
  0%   { opacity: 1; transform: translateX(-105%); }
  60%  { opacity: .75; }
  100% { opacity: 0;  transform: translateX(120%); }
}
<style id="hotfix-2025-09-30">
/* ========== ABOUT: place soap inside the outlined card, right-half ========== */
.about-section .about-inner{ position:relative !important; }
.about-section .about-content{ max-width: 640px; }

/* Anchor the emoji inside the card, right side, vertically centered */
.about-section .about-soap{
  position:absolute !important;
  right: clamp(16px, 4%, 48px) !important;  /* inside the border */
  top: 50% !important;
  transform: translate(0,-50%) !important;
  margin:0 !important; padding:0 !important; line-height:1 !important;
  font-size: 5rem !important;
  pointer-events:none !important; z-index: 2 !important;
}

/* Soft centered glow */
.about-section .about-soap::before{
  content:""; position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
  width: 240px; height: 240px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,212,255,.38) 0%, rgba(0,212,255,0) 70%);
  filter: blur(20px); z-index:-1;
}

/* Keep ✨ near the top-right of the emoji */
.about-section .about-soap::after{
  content:'✨'; position:absolute; right:-12px; top:-12px; font-size:1.5rem;
  animation: sparkle 1.6s ease-in-out infinite; opacity:.9;
}

/* ========== NAVBAR: transparent, bigger logo, nav font ========== */
.navbar{
  background: transparent !important;
  backdrop-filter: none !important;   /* remove dark bar */
  -webkit-backdrop-filter: none !important;
}

/* Bigger logo + keep your unveil animation */
.navbar .logo .logo-text{
  font-family: 'Great Vibes', cursive !important;
  font-size: 3rem !important;                 /* bigger */
  letter-spacing: .5px !important; color:#fff !important;
  position:relative !important; display:inline-block !important;
  clip-path: inset(0 100% 0 0); opacity:0;
  animation: logoUnveil 1.1s ease forwards .25s;
}
@keyframes logoUnveil{0%{clip-path:inset(0 100% 0 0);opacity:0}40%{opacity:1}100%{clip-path:inset(0 0 0 0);opacity:1}}
.navbar .logo .logo-text::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,212,255,.85), rgba(255,255,255,.95));
  mix-blend-mode: screen; opacity:0; pointer-events:none;
  animation: logoSweep 1.1s ease forwards .25s;
}
@keyframes logoSweep{0%{opacity:1;transform:translateX(-105%)}60%{opacity:.75}100%{opacity:0;transform:translateX(120%)}}

/* Nav links use same display font */
.nav-links a{
  font-family: 'Great Vibes', cursive !important;
  font-size: 1.35rem !important;
  letter-spacing: .02em !important;
  color: #f6fbff !important;
}

/* ========== HERO IMAGE: push to right edge, no gap ========== */
.image-side{ justify-content:flex-end !important; align-items:stretch !important; }
.image-side img{
  width: 100% !important; height: 100% !important; display:block !important;
  object-fit: cover !important; object-position: right center !important;
  transform: none !important;     /* remove the left shift */
  margin: 0 !important;
}

/* Keep your sparkle keyframes available */
@keyframes sparkle { 0%,100%{opacity:.8;transform:scale(1) rotate(0)} 50%{opacity:1;transform:scale(1.2) rotate(20deg)} }
</style>
@keyframes logoUnveil{0%{clip-path:inset(0 100% 0 0);opacity:0}40%{opacity:1}100%{clip-path:inset(0 0 0 0);opacity:1}}
@keyframes logoSweep{0%{opacity:1;transform:translateX(-105%)}60%{opacity:.75}100%{opacity:0;transform:translateX(120%)}}

.navbar .logo .logo-text{
  font-family: 'Great Vibes', cursive !important;
  font-size: 2.8rem;                /* bigger like you wanted */
  line-height: 1;
  letter-spacing: .4px;
  color:#fff !important;
  position:relative;
  display:inline-block;
  clip-path: inset(0 100% 0 0);
  opacity:0;
  animation: logoUnveil 1.1s ease forwards .25s;
}

/* subtle sheen during reveal */
.navbar .logo .logo-text::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,212,255,.85), rgba(255,255,255,.95));
  mix-blend-mode: screen; opacity:0; pointer-events:none;
  animation: logoSweep 1.1s ease forwards .25s;
}

/* nudge the soap so it doesn’t overlap */
.navbar .logo .soap{
  margin-right:.55rem;
  transform: translateY(2px);
}
.announcement {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically */
  min-height: 200px;        /* adjust height as needed */
}

.announcement-inner {
  display: flex;
  flex-direction: column;   /* stack number & button vertically */
  align-items: center;      /* center contents horizontally */
  gap: 10px;                /* spacing between number & button */
}

.announce-line {
  font-size: 1.5rem;        /* adjust size */
  font-weight: bold;
  margin: 0;
}

.announcement-cta {
  display: inline-block;
  padding: 8px 16px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}
)
.stepper-button {
  appearance: none;
  border: none;
  background: rgba(6, 22, 34, 0.6);
  color: rgba(187, 229, 255, 0.9);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.stepper-button span {
  pointer-events: none;
  transform: translateY(-1px);
}

.stepper-button:hover,
.stepper-button:focus-visible {
  background: rgba(0, 212, 255, 0.16);
  color: #ffffff;
}

.stepper-button:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.35);
  outline-offset: 2px;
}

.stepper-button:active {
  transform: translateY(1px);
}

.stepper-button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
/* === Dock cart beside the step-1 package overview === */
@media (min-width: 980px){
  .step-extras-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 380px;
    gap: clamp(22px, 3vw, 36px);
    align-items:start;
  }
  /* Create a right-side “dock” for the cart */
  .step-extras-layout::after{
    content:"";
    grid-column: 2;
  }
  /* Send the package overview to the left track */
  .step-extras-layout .package-overview{
    grid-column: 1;
  }
  /* Move the actual cart card into the right track visually */
  #summaryColumn{
    grid-column: 2;
    position: sticky;
    top: 96px; /* adjust to clear your sticky header */
    max-width: 380px;
    align-self:start;
  }
}

/* When step > 1, we let your existing JS hide the cart as before.
   On narrow screens, stack naturally. */
@media (max-width: 979.98px){
  #summaryColumn{ position: static; max-width:none; }
}
/* === Step 1: package (left) + cart (right) === */
.extras-with-cart{
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}
.extras-with-cart #summaryColumn{
  position: sticky;
  top: 96px;          /* adjust if your header height differs */
  max-width: 380px;
  align-self: start;
}
@media (max-width: 979.98px){
  .extras-with-cart{ grid-template-columns: 1fr; }
  .extras-with-cart #summaryColumn{ position: static; max-width: none; }
}

/* make sure sticky/overflow doesn’t break */
.booking-card, .booking-layout, .form-columns, .form-steps{ min-height: 0; }
/* Enable sticky cart on desktop */
@media (min-width: 780px){
  /* Parent overflow blocks sticky; make it visible on larger screens */
  .booking-card{ overflow: visible; }
}

/* Pin the cart to the top-right under the stepper */
@media (min-width: 780px){
  .summary-column{
    position: sticky;
    top: clamp(24px, 3.6vw, 46px); /* matches your existing offset */
    align-self: start;
    justify-self: end;
    margin-top: 0 !important;
  }
}

/* Make sure grid isn’t pushing items down */
.form-columns{ align-items: start !important; }
.booking-card{ overflow: visible !important; }

@media (min-width: 780px){
  .form-columns{ align-items: start !important; }
  #summaryColumn{
    position: sticky !important;
    top: clamp(24px, 3.6vw, 46px) !important;
    align-self: start !important;
    justify-self: end !important;
  }
}

/* neutralize any leftover floating wrapper */
#cartFloatingWrap{
  position: static !important;
  inset: auto !important;
  width: auto !important;
  max-width: none !important;
  filter: none !important;
}

/* =========================
   INNER PAGES (ABOUT / CONTACT / THANK YOU)
   ========================= */
.page-main {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 92vw);
  margin: clamp(4rem, 7vw, 6rem) auto clamp(5rem, 9vw, 7rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.page-hero {
  text-align: center;
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.6rem);
}

.page-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.72);
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: #f7fbff;
  margin: 0;
}

.page-lede {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
  color: #d8ecff;
  max-width: 58ch;
  margin: 0 auto;
}

.page-card {
  background: rgba(5, 12, 22, 0.78);
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(1.5rem, 2.6vw, 2.1rem);
}

.page-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #f7fbff;
  margin: 0;
}

.page-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: #86e7ff;
  margin: 0 0 0.45rem;
}

.page-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cde5ff;
}

.page-card.centered {
  text-align: center;
}

.page-card.centered .quote-btn-home {
  justify-self: center;
}

.contact-list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.contact-list div {
  display: grid;
  gap: 0.4rem;
}

.contact-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.72);
}

.contact-list dd {
  margin: 0;
  font-size: 1.1rem;
  color: #f4fbff;
}

.contact-list a {
  color: #7fe2ff;
}

.contact-cta {
  text-align: center;
}

.contact-cta .quote-btn-home {
  justify-self: center;
}

.about-values {
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.about-values article {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 20px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.about-values article p {
  font-size: 1rem;
  color: #d8f2ff;
}

.about-cta {
  text-align: center;
}

.about-cta .quote-btn-home {
  justify-self: center;
}

.thankyou-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.thankyou-links .quote-btn-home {
  margin-top: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .page-main {
    margin-top: clamp(3.5rem, 10vw, 4.5rem);
  }

  .page-card {
    padding: clamp(1.6rem, 6vw, 2.4rem);
  }
}
/* === Cart: pin to top-right of the viewport (desktop), bottom-docked (mobile) === */
body[data-cart-fixed] .nav-cart-popover {
  position: fixed !important;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: clamp(280px, 28vw, 420px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  z-index: 2147483000;
  inset-inline: auto;
  inset-block: auto;
  isolation: isolate;
  will-change: transform;
}

@media (max-width: 900px) {
  body[data-cart-fixed] .nav-cart-popover {
    left: 0;
    right: 0;
    top: auto;
    bottom: max(0px, env(safe-area-inset-bottom));
    width: 100%;
    max-height: 55vh;
    border-radius: 16px 16px 0 0;
  }
}
