/* GLOSS FORGE — LUXURY DETAILING & CAR WASH MASTER STYLESHEET */
:root {
  --bg: #07090e;
  --surface: #0d1118;
  --card: #121824;
  --border: rgba(255, 255, 255, 0.08);
  --cyan: #00e5ff;
  --cyan-b: rgba(0, 229, 255, 0.3);
  --purple: #9d4edd;
  --gold: #ffb703;
  --emerald: #10b981;
  --text: #f8fafc;
  --steel: #94a3b8;
  --fh: 'Space Grotesk', -apple-system, sans-serif;
  --fb: 'Inter', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 10px 20px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.5);
}

.btn-sec {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 20px;
  border-radius: 99px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-sec:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
}

/* HERO SECTION */
.hero {
  min-height: 92vh;
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(157, 78, 221, 0.12) 0%, transparent 60%), radial-gradient(circle at 20% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--cyan-b);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title span.grad {
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

/* SECTION HEADINGS */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.sec-h {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sec-sub {
  font-size: 0.95rem;
  color: var(--steel);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* 3-PHASE DETAILING WASH SELECTOR */
.wash-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.wash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .wash-grid {
    grid-template-columns: 1fr;
  }
}

.wash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.wash-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

.wash-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cyan);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.08em;
}

/* PPF 3D ARMOR ZONE CONFIGURATOR */
.ppf-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.ppf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .ppf-card {
    grid-template-columns: 1fr;
  }
}

.ppf-zones-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.ppf-zone-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ppf-zone-btn.active {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--cyan);
  color: #fff;
}

/* CERAMIC 9H MATRIX */
.ceramic-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.ceramic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.ceramic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.3s ease;
}

.ceramic-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

/* BEFORE & AFTER SLIDER */
.ba-frame {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid var(--cyan);
}

.ba-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--cyan);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
  pointer-events: none;
}

/* LIVE WASH BAY TRACKER */
.bay-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.bay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .bay-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .bay-grid {
    grid-template-columns: 1fr;
  }
}

.bay-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.bay-busy {
  border-color: rgba(255, 74, 0, 0.4);
}

.bay-free {
  border-color: rgba(16, 185, 129, 0.4);
}

/* WASH CLUB MEMBERSHIP */
.club-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.club-card {
  background: linear-gradient(135deg, #16122b 0%, #0d1527 100%);
  border: 1px solid var(--purple);
  border-radius: 20px;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 860px) {
  .club-card {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background: #05070a;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--steel);
}
