/* ============================================================
   SHINEWORKS CUSTOMS — Premium Automotive Styling
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ===== Design System ===== */
:root {
  --bg:         #07070e;
  --bg-2:       #0b0b18;
  --bg-3:       #10101f;
  --bg-card:    rgba(255, 255, 255, 0.03);

  --purple:       #8f3fe8;
  --purple-light: #a855f7;
  --purple-pale:  #c084fc;
  --purple-dark:  #6b21d4;
  --glow:         rgba(143, 63, 232, 0.35);
  --glow-sm:      rgba(143, 63, 232, 0.18);
  --glow-xs:      rgba(143, 63, 232, 0.1);

  --white:      #f0f0fa;
  --gray-100:   #d0d0e4;
  --gray-300:   #8888aa;
  --gray-500:   #50506a;
  --gray-700:   #28283c;

  --border:     rgba(255, 255, 255, 0.06);
  --border-p:   rgba(143, 63, 232, 0.28);

  --font-h:     'Antonio', sans-serif;
  --font-b:     'DM Sans', sans-serif;

  --max-w:      1200px;
  --nav-h:      78px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font-b); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* ===== Utilities ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-pale);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
}
.section-title span { color: var(--purple-light); }
.section-sub {
  font-size: 16px;
  color: var(--gray-300);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 16px;
}
.rule {
  width: 52px;
  height: 2px;
  background: var(--purple);
  margin: 22px 0;
}
.rule.center { margin: 22px auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 38px;
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 28px var(--glow), 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-purple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.14) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-purple:hover { background: var(--purple-light); box-shadow: 0 0 50px var(--glow), 0 0 90px var(--glow-sm), 0 4px 20px rgba(0,0,0,0.5); transform: translateY(-3px); }
.btn-purple:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-p); color: var(--purple-pale); box-shadow: 0 0 18px var(--glow-xs); transform: translateY(-3px); }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(7, 7, 14, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo span { color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--purple-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
  padding: 10px 22px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--purple);
  color: #fff;
  border: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--glow);
  white-space: nowrap;
}
.btn-book:hover { background: var(--purple-light); box-shadow: 0 0 36px var(--glow); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile Menu ===== */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 28px;
  z-index: 899;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav ul a {
  display: block;
  padding: 13px 12px;
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav ul a:hover { color: var(--white); }

/* ===== Hero (Home) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(7,7,14,0.98) 0%, rgba(7,7,14,0.6) 35%, rgba(7,7,14,0.15) 65%, rgba(7,7,14,0.5) 100%),
    linear-gradient(to right, rgba(7,7,14,0.9) 0%, rgba(7,7,14,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 90px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--purple-pale);
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--purple);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--purple-light);
}
.hero-desc {
  font-size: 16px;
  color: var(--gray-300);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
  animation: scrollPulse 2s infinite;
}
.hero-scroll span {
  font-family: var(--font-h);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.stat {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-num em { font-style: normal; color: var(--purple-light); }
.stat-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  font-family: var(--font-h);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--bg-2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: rgba(143, 63, 232, 0.05); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--purple-light);
  margin-bottom: 26px;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.75;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  transition: gap 0.3s, color 0.3s;
}
.service-link svg { width: 14px; height: 14px; }
.service-link:hover { gap: 11px; color: var(--purple-pale); }

/* ===== Featured Image Sections ===== */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.feature-img {
  position: relative;
  overflow: hidden;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.feature-img:hover img { transform: scale(1.04); }
.feature-body {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 60px;
  border: 1px solid var(--border);
  border-left: none;
}
.feature-pair.reverse .feature-body { border-left: 1px solid var(--border); border-right: none; }

/* ===== Gallery Grid ===== */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray-300);
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--border-p);
  color: var(--purple-pale);
  background: var(--glow-xs);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.g-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.g-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,14,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-label {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-pale);
  margin-bottom: 4px;
}
.g-title { font-family: var(--font-h); font-size: 16px; text-transform: uppercase; font-weight: 600; }

/* ===== Before/After Slider ===== */
.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.ba-comparison {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before img { filter: saturate(0.2) brightness(0.75); }
.ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.02s; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--purple-light);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 14px var(--glow);
}
.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--glow);
  pointer-events: none;
}
.ba-btn svg { width: 20px; height: 20px; color: #fff; }
.ba-pill {
  position: absolute;
  top: 14px;
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 11px;
  backdrop-filter: blur(10px);
}
.ba-before-pill { left: 14px; background: rgba(0,0,0,0.55); border: 1px solid var(--border); color: var(--gray-300); }
.ba-after-pill  { right: 14px; background: rgba(143,63,232,0.25); border: 1px solid var(--border-p); color: var(--purple-pale); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  appearance: none;
}
.ba-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.ba-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.ba-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-300);
}
.ba-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-light); flex-shrink: 0; }

/* ===== Process Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.step {
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-h);
  font-size: 72px;
  font-weight: 700;
  color: rgba(143,63,232,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.step:hover .step-num { color: rgba(143,63,232,0.25); }
.step h3 {
  font-family: var(--font-h);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--gray-300); line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.testimonial {
  background: var(--bg-2);
  padding: 40px 36px;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { width: 16px; height: 16px; fill: var(--purple-light); color: var(--purple-light); }
.testimonial-text { font-size: 15px; color: var(--gray-100); line-height: 1.75; font-style: italic; margin-bottom: 24px; font-weight: 300; }
.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.author-name { font-family: var(--font-h); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.author-car { font-size: 12px; color: var(--gray-300); }

/* ===== About Page ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 75%;
  overflow: hidden;
}
.about-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 54%;
  height: 54%;
  overflow: hidden;
  border: 3px solid var(--bg-2);
}
.about-img-main img, .about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 56%;
  right: 22%;
  background: var(--bg-2);
  border: 1px solid var(--border-p);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 0 36px var(--glow-sm);
}
.badge-num {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}
.badge-lbl {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 4px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.value-card {
  background: var(--bg-2);
  padding: 40px 32px;
  text-align: center;
}
.value-icon { width: 40px; height: 40px; color: var(--purple-light); margin: 0 auto 20px; }
.value-card h3 { font-family: var(--font-h); font-size: 17px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.value-card p { font-size: 13px; color: var(--gray-300); line-height: 1.75; }

/* ===== Contact Page ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glow-xs);
  border: 1px solid var(--border-p);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-text h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-300);
  font-family: var(--font-h);
  margin-bottom: 5px;
  font-weight: 500;
}
.contact-text p, .contact-text a { font-size: 16px; color: var(--white); transition: color 0.3s; }
.contact-text a:hover { color: var(--purple-pale); }
.contact-hours { margin-top: 40px; }
.contact-hours h3 {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.hours-day { font-size: 13px; color: var(--gray-300); }
.hours-time { font-size: 13px; color: var(--white); }

/* ===== Booking Form ===== */
.booking-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 52px 48px;
}
.booking-form-wrap h2 {
  font-family: var(--font-h);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-300);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 17px;
  font-family: var(--font-b);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 2px var(--glow-xs); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%238888aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-3); }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-status {
  display: none;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 3px solid;
}
.form-status.success { display: block; background: rgba(16,185,129,0.1); border-color: #10b981; color: #6ee7b7; }
.form-status.error   { display: block; background: rgba(239,68,68,0.1);  border-color: #ef4444; color: #fca5a5; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--glow-xs) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { text-align: center; position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(52px, 9vw, 104px);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  font-weight: 700;
}
.page-hero-title span { color: var(--purple-light); }
.page-hero-sub { font-size: 16px; color: var(--gray-300); font-weight: 300; margin-top: 20px; }

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, var(--glow-xs) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { margin-bottom: 20px; }
.cta-section .section-sub { margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: var(--font-h); font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-logo span { color: var(--purple-light); }
.footer-desc { font-size: 14px; color: var(--gray-300); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--border-p); color: var(--purple-pale); box-shadow: 0 0 14px var(--glow-xs); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li { font-size: 14px; color: var(--gray-300); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p { font-size: 12px; color: var(--gray-500); }

/* ===== Fade-in scroll animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-pair { grid-template-columns: 1fr; min-height: auto; }
  .feature-body { border-left: 1px solid var(--border) !important; border-right: 1px solid var(--border) !important; padding: 52px 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .ba-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links, .btn-book { display: none; }
  .burger { display: flex; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }
  .booking-form-wrap { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .g-item.tall { aspect-ratio: 4/3; grid-row: span 1; }
  .hero-title { letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .cta-btns, .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-img-stack { height: 280px; }
}