/* RevLux Detailing — Premium Dark Theme */

:root {
  --bg: #080e1c;
  --surface: #0d1424;
  --surface-2: #111a2e;
  --gold: #bd953d;
  --gold-bright: #d4a84b;
  --gold-dim: rgba(189, 149, 61, 0.12);
  --silver: #acadac;
  --text: #efefed;
  --muted: #6b7280;
  --border: rgba(189, 149, 61, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== SHARED ===== */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.centered { text-align: center; margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: #080e1c;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(189, 149, 61, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(8,14,28,0.95) 0%, transparent 100%);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.header-cta {
  font-size: 12px;
  padding: 10px 24px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn svg { stroke: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(189,149,61,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(100,130,200,0.05) 0%, transparent 50%),
    linear-gradient(165deg, #080e1c 0%, #0a1020 50%, #080e1c 100%);
  z-index: 0;
}
.hero-shine {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(189,149,61,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 60px 100px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(189,149,61,0.3);
  padding: 8px 16px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline .accent { color: var(--gold); }
.hero-tagline {
  font-size: 17px;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-meta-item { text-align: left; }
.hero-meta-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 60px;
  background: var(--surface);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.services-header { text-align: center; margin-bottom: 72px; }
.services-head {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.services-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-card {
  background: var(--bg);
  padding: 48px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-card:hover {
  border-color: rgba(189,149,61,0.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.svc-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg) 0%, #0d1a30 100%);
}
.svc-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.featured-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.svc-icon {
  color: var(--gold);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}
.svc-card .btn { align-self: flex-start; }

/* ===== WHY REVLUX ===== */
.why-section {
  padding: 100px 60px;
  position: relative;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { margin-bottom: 72px; }
.why-head {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.why-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== SUBSCRIPTION ===== */
.sub-section {
  padding: 100px 60px;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(189,149,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sub-inner { position: relative; max-width: 700px; margin: 0 auto; }
.sub-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(189,149,61,0.3);
  padding: 8px 20px;
  margin-bottom: 28px;
}
.sub-head {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}
.sub-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.sub-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.sub-feature {
  font-size: 13px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ===== RIDESHARE ===== */
.rideshare-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, #0a1526 0%, #080e1c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rideshare-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.rideshare-content { flex: 1; }
.rideshare-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.rideshare-head {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.rideshare-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.rideshare-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.ride-stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.ride-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rideshare-graphic {
  flex-shrink: 0;
  width: 280px;
  text-align: center;
}
.ride-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(189,149,61,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, rgba(189,149,61,0.08) 0%, transparent 70%);
}
.ride-circle-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ride-circle-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== LOCATION ===== */
.location-section {
  padding: 100px 60px;
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-content {}
.location-head {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.location-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.location-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.loc-tag {
  font-size: 12px;
  color: var(--silver);
  border: 1px solid var(--border);
  padding: 8px 16px;
}
.location-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(189,149,61,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189,149,61,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pulse {
  position: relative;
  text-align: center;
}
.map-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 12px;
  position: relative;
}
.map-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(189,149,61,0.4);
  animation: map-pulse 2s infinite;
}
@keyframes map-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}
.map-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.map-sublabel {
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060b14;
  padding: 56px 60px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ===== G-TECHNIQ SPOTLIGHT ===== */
.gtechniq-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #080e1c 0%, #0d1a2e 50%, #080e1c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gtechniq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(189,149,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.gtechniq-inner { position: relative; max-width: 800px; margin: 0 auto; }
.gtechniq-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(189,149,61,0.35);
  padding: 8px 20px;
  margin-bottom: 32px;
}
.gtechniq-head {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}
.gtechniq-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 48px;
}
.gtechniq-logos {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gtechniq-stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.gtechniq-stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.gtechniq-section { padding: 100px 60px; }
.sub-email-wrap {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.sub-email-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
}
.sub-email-input::placeholder { color: var(--muted); }
.sub-email-input:focus { border-color: var(--gold); }
.sub-email-btn { white-space: nowrap; }

.footer-copy { font-size: 12px; color: rgba(107,114,128,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-header { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; color: var(--text); }
  .mobile-menu-btn { display: block; z-index: 101; }
  .hero-content { padding: 120px 28px 80px; }
  .hero-meta { gap: 28px; }
  .services-section, .why-section, .sub-section, .location-section, .gtechniq-section { padding: 80px 28px; }
  .rideshare-section { padding: 60px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .rideshare-inner { flex-direction: column; gap: 40px; }
  .rideshare-graphic { display: none; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-map { height: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 28px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .sub-email-wrap { flex-direction: column; }
}