/* ==========================================================
   Parul Daynight Outcall Spa — Aurora Wellness Theme
   ========================================================== */

:root {
  --white: #FAFCFF;
  --mist: #E7F6F2;
  --teal: #006D77;
  --teal-700: #00525a;
  --teal-300: #4caab1;
  --coral: #FF8A65;
  --coral-600: #f56a44;
  --indigo: #4B3F72;
  --indigo-600: #3a305a;
  --ink: #2B2B2B;
  --ink-soft: #5b5b66;
  --line: rgba(0, 109, 119, 0.12);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.7);
  --shadow-sm: 0 6px 18px rgba(0, 60, 70, 0.08);
  --shadow-md: 0 18px 48px rgba(0, 60, 70, 0.12);
  --shadow-lg: 0 30px 80px rgba(0, 60, 70, 0.18);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --grad-cta: linear-gradient(135deg, #FF8A65 0%, #f56a44 45%, #006D77 100%);
  --grad-text: linear-gradient(135deg, #FF8A65 0%, #006D77 100%);
  --container: 1240px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-btn: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--teal); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 500; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }

/* ==========================================================
   Aurora Animated Background
   ========================================================== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 10% 0%, #E7F6F2 0%, transparent 60%),
    radial-gradient(900px 600px at 90% 10%, #F4ECFB 0%, transparent 55%),
    radial-gradient(1000px 800px at 50% 100%, #FFF1EA 0%, transparent 60%),
    linear-gradient(180deg, #FAFCFF 0%, #F3FAF8 100%);
  overflow: hidden;
}
.aurora {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: auroraFloat 22s ease-in-out infinite alternate;
}
.aurora-1 { background: radial-gradient(circle, #FF8A65 0%, transparent 60%); top: -20vmax; left: -10vmax; }
.aurora-2 { background: radial-gradient(circle, #006D77 0%, transparent 60%); top: 30vmax; right: -20vmax; animation-duration: 28s; }
.aurora-3 { background: radial-gradient(circle, #4B3F72 0%, transparent 60%); bottom: -25vmax; left: 10vmax; animation-duration: 32s; }
.aurora-4 { background: radial-gradient(circle, #B7E4D9 0%, transparent 60%); top: 60vmax; left: 40vmax; animation-duration: 36s; opacity: .4; }

@keyframes auroraFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(6vmax, -4vmax) scale(1.1); }
  100% { transform: translate(-4vmax, 6vmax) scale(.95); }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,138,101,.4) 40%, transparent 70%);
  box-shadow: 0 0 12px rgba(255, 138, 101, .5);
  animation: floatUp linear infinite;
  opacity: .8;
}
@keyframes floatUp {
  0%   { transform: translateY(20vh) scale(.6); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(0,109,119,.18) 0%, rgba(255,138,101,.08) 30%, transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  transition: transform .15s ease-out;
  mix-blend-mode: multiply;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-cta);
  z-index: 100;
  transition: width .12s linear;
}

/* ==========================================================
   Glass Surfaces
   ========================================================== */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
  pointer-events: none;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 22px;
  border-radius: 999px;
  letter-spacing: .01em;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  user-select: none;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 138, 101, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 138, 101, .45);
  color: #fff;
}

.btn-coral {
  background: linear-gradient(135deg, #FF8A65, #ff6e3c);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 138, 101, .35);
}
.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 138, 101, .45);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--teal);
  border-color: rgba(0,109,119,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal-700);
}

.btn-link {
  background: transparent;
  color: var(--teal);
  padding: 14px 4px;
  border-radius: 0;
  border-bottom: 2px solid var(--coral);
}
.btn-link:hover { color: var(--coral); }

/* Ripple */
.btn::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,.6);
  width: 100px;
  height: 100px;
  top: var(--ry, 50%);
  left: var(--rx, 50%);
  margin: -50px;
  opacity: 0;
  pointer-events: none;
}
.btn:active::after {
  animation: ripple .6s ease-out;
}
@keyframes ripple {
  0% { transform: scale(0); opacity: .6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Magnetic helper */
.magnetic { transition: transform .25s ease; }

/* ==========================================================
   Header / Navigation
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 14px 0;
  background: rgba(250, 252, 255, .55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(250, 252, 255, .85);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(0,60,70,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
}
.brand-text em {
  font-style: normal;
  font-size: .8rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text em { color: rgba(255,255,255,.7); }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  position: relative;
  padding: 10px 14px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.primary-nav a:hover {
  color: var(--teal);
  background: rgba(0,109,119,.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .btn { padding: 10px 18px; font-size: .9rem; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background .25s ease;
}
.hamburger:hover { background: #fff; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  z-index: 75;
  transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid transparent;
}
.mobile-menu a:hover {
  background: rgba(0,109,119,.08);
  color: var(--teal);
}
.mobile-cta { display: grid; gap: 10px; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,138,101,.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hero h1 {
  margin: 22px 0 18px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
}
.badge-ico {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist);
  border-radius: 10px;
  font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: grid;
  gap: 24px;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-image:hover img { transform: scale(1.05); }
.float-card {
  position: absolute;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  animation: floatY 4s ease-in-out infinite;
}
.float-card strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--teal);
}
.float-card small { color: var(--ink-soft); font-size: .8rem; }
.float-card-1 { top: 28px; left: -22px; }
.float-card-2 { bottom: 28px; right: -22px; animation-delay: 1s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.counter {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.counter:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.counter .count {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.counter small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Hero Marquee */
.hero-marquee {
  margin-top: 60px;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ink-soft);
}
.marquee-track span:nth-child(odd) {
  color: var(--teal);
  font-weight: 600;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   CTA Ribbon
   ========================================================== */
.cta-ribbon {
  padding: 30px 0;
}
.cta-ribbon .ribbon-inner {
  background: var(--grad-cta);
  border-radius: var(--radius-lg);
  padding: 32px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  box-shadow: 0 28px 60px rgba(0,109,119,.3);
  position: relative;
  overflow: hidden;
}
.cta-ribbon .ribbon-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255,255,255,.12), transparent 50%);
  pointer-events: none;
}
.cta-ribbon h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.5rem;
}
.cta-ribbon p { color: rgba(255,255,255,.85); margin: 0; }
.ribbon-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-ribbon .btn-primary {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.cta-ribbon .btn-primary:hover { color: var(--teal); }
.cta-ribbon .btn-coral {
  background: var(--ink);
  color: #fff;
}
.cta-ribbon-alt .ribbon-inner {
  background: linear-gradient(135deg, #4B3F72 0%, #006D77 100%);
}

/* ==========================================================
   Sections
   ========================================================== */
.section {
  padding: 110px 0;
  position: relative;
}
.section-soft { background: linear-gradient(180deg, rgba(231,246,242,.45) 0%, rgba(255,255,255,0) 100%); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-btn);
  font-size: .8rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head p { font-size: 1.05rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .6s ease;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.tile:hover img { transform: scale(1.08); }
.tile-1 { grid-row: 1 / 3; }
.tile-2 { grid-column: 2; grid-row: 1; }
.tile-3 { grid-column: 2; grid-row: 2; }
.about-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 22px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.about-badge strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
}
.about-badge span { font-size: .78rem; color: var(--ink-soft); }

.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mist);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.check-list.compact { grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }

.about-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s ease, box-shadow .5s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-body h3 { font-size: 1.35rem; }
.service-body p { flex: 1; font-size: .95rem; }
.service-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--mist);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.highlight-card {
  background: linear-gradient(180deg, rgba(255,138,101,.18) 0%, rgba(0,109,119,.18) 100%);
  border: 1px solid rgba(255,138,101,.35);
}
.highlight-card .service-ico { background: rgba(255,255,255,.6); }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mist), #fff);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 6px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .5s ease, box-shadow .5s ease;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease, filter .5s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.12); filter: brightness(.85); }
.glass-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 10px 14px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.gallery-item:hover .glass-overlay { transform: translateY(0); opacity: 1; }

.g-1 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 2; }

/* Local SEO */
.local-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.local-card {
  border-radius: var(--radius-lg);
  padding: 32px;
}
.local-card h3 { font-size: 1.5rem; }
.local-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.local-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.local-stats > div {
  text-align: center;
}
.local-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
}
.local-stats small {
  display: block;
  color: var(--ink-soft);
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testi-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.stars {
  color: var(--coral);
  letter-spacing: 4px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.testi-card p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.who {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.who strong { color: var(--teal); font-family: var(--font-body); font-size: .98rem; }
.who span { color: var(--ink-soft); font-size: .82rem; }

/* FAQ */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border-radius: var(--radius);
  padding: 0;
  transition: box-shadow .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-lg); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform .4s ease, background .3s ease, color .3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}
.faq-body {
  padding: 0 26px 24px;
}
.faq-body p { margin: 0; color: var(--ink-soft); }
.faq-body a { color: var(--teal); font-weight: 600; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
}
.location-info { display: flex; }
.info-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.info-card h3 { font-size: 1.4rem; color: var(--teal); }
.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}
.info-list li { color: var(--ink); font-size: .95rem; }
.info-list strong { color: var(--teal); margin-right: 6px; }
.info-list a { color: var(--teal); font-weight: 600; }
.location-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.contact-ico {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--mist);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { font-size: .95rem; min-height: 60px; }
.contact-card a { color: var(--teal); font-weight: 600; }
.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255,138,101,.4);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #06191c 0%, #0a262a 100%);
  color: rgba(255,255,255,.8);
  padding: 80px 0 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,101,.18), transparent 60%);
  filter: blur(40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-about { color: rgba(255,255,255,.65); margin-top: 16px; font-size: .95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-links a:hover { color: var(--coral); }
.footer-cta { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.2);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.6); margin: 0; font-size: .85rem; }
.footer-bottom a { color: var(--coral); }
.kw-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.kw-cloud li {
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.22); }
.float-call { bottom: 90px; background: linear-gradient(135deg, #006D77, #00525a); }
.float-wa { bottom: 30px; background: linear-gradient(135deg, #25D366, #128C7E); }

/* Mobile Ribbon */
.mobile-ribbon {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 65;
  display: none;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 30px rgba(0,0,0,.08);
}
.mobile-ribbon a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: .85rem;
}
.mr-call { background: var(--grad-cta); color: #fff; }
.mr-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }

/* Back to top */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 160px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.95);
  transition: transform .4s ease;
}
.lightbox.open img { transform: scale(1); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .25s ease, transform .25s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .95rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
}

/* ==========================================================
   Scroll Reveal Animations
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Tilt */
.tilt { transition: transform .6s ease; transform-style: preserve-3d; }
.tilt:hover { transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-4px); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .header-cta .btn-ghost { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-5 { grid-column: span 1; }
  .local-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 360px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 2.3rem; }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: 1fr; }
  .cta-ribbon .ribbon-inner { flex-direction: column; text-align: center; padding: 26px; }
  .ribbon-cta { justify-content: center; width: 100%; }
  .about-images { grid-template-rows: 200px 200px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .float-btn span { display: none; }
  .float-btn { width: 50px; height: 50px; padding: 0; justify-content: center; }
  .float-call { bottom: 90px; right: 16px; }
  .float-wa { bottom: 30px; right: 16px; }
  .back-top { right: 16px; bottom: 160px; }
  .mobile-ribbon { display: flex; }
  body { padding-bottom: 76px; }
  .check-list.compact { grid-template-columns: 1fr; }
  .local-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-marquee { margin-top: 36px; }
  .hero-image { aspect-ratio: 4/4; }
  .float-card-1 { left: -8px; }
  .float-card-2 { right: -8px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2rem; }
  .lede { font-size: 1rem; }
  .ribbon-cta .btn { width: 100%; }
  .header-cta .btn-primary { padding: 10px 14px; }
  .brand-text em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .aurora { display: none; }
  .particles { display: none; }
}
