/* ============================================================
   A1 Mobile Detailing & Ceramic – Main Stylesheet
   Dark Premium Automotive Palette
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-bg: #0a0a0a;
  --clr-bg-2: #111111;
  --clr-bg-3: #1a1a1a;
  --clr-bg-card: #161616;
  --clr-gold: #c9a84c;
  --clr-gold-light: #e2c06e;
  --clr-gold-dark: #a07828;
  --clr-white: #ffffff;
  --clr-off-white: #f0ede8;
  --clr-text: #cccccc;
  --clr-text-muted: #888888;
  --clr-border: #2a2a2a;
  --clr-red: #e53935;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.15);
  --transition: 0.3s ease;

  --max-w: 1200px;
  --section-pad: 90px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--clr-white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-desc { color: var(--clr-text); max-width: 640px; }
.section-desc.center { margin: 0 auto; text-align: center; }
.gold-text { color: var(--clr-gold); }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--clr-bg-2); }
.section-dark { background: var(--clr-bg-3); }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-sm { gap: 16px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-gold);
  color: #0a0a0a;
  border: 2px solid var(--clr-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-bg);
  border: 2px solid var(--clr-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.7); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 4px; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--clr-white);
  line-height: 1.2;
}
.logo-text span { display: block; font-size: 0.7rem; color: var(--clr-gold); letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body); font-weight: 400; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--clr-off-white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--clr-gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.75rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--clr-text);
  font-size: 0.88rem;
  border-radius: 4px;
}
.dropdown-menu a:hover { background: var(--clr-bg-3); color: var(--clr-gold); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--clr-gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--clr-off-white);
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--clr-gold); }
.mobile-nav-sub { padding-left: 16px; }
.mobile-nav-sub a { font-size: 0.88rem; color: var(--clr-text); }

/* ============================================================
   HERO / PAGE BANNER
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.85) 100%),
    url('https://images.unsplash.com/photo-1600705722908-bef50b702060?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.hero h1 { color: var(--clr-white); margin-bottom: 20px; }
.hero h1 span { color: var(--clr-gold); }
.hero p { font-size: 1.1rem; color: var(--clr-off-white); margin-bottom: 36px; max-width: 560px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-gold);
  font-family: var(--font-head);
  line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--clr-text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Page Banner (inner pages) */
.page-banner {
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-2);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.page-banner .breadcrumb a { color: var(--clr-gold); }
.page-banner .breadcrumb span { color: var(--clr-text-muted); }
.page-banner h1 { color: var(--clr-white); margin-bottom: 16px; }
.page-banner p { color: var(--clr-text); max-width: 620px; font-size: 1.05rem; }
.page-banner-gold-line {
  width: 60px;
  height: 3px;
  background: var(--clr-gold);
  margin: 20px 0 0;
  border-radius: 2px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.2);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { color: var(--clr-text); font-size: 0.93rem; margin-bottom: 20px; }
.service-card a.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card a.learn-more:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US / COMPARISON
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table thead tr { background: var(--clr-gold); }
.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr { background: var(--clr-bg-card); border-bottom: 1px solid var(--clr-border); transition: background var(--transition); }
.comparison-table tbody tr:hover { background: var(--clr-bg-3); }
.comparison-table td { padding: 14px 20px; font-size: 0.92rem; color: var(--clr-text); vertical-align: middle; }
.comparison-table td:first-child { color: var(--clr-white); font-weight: 600; }
.check { color: #4caf50; font-size: 1.1rem; }
.cross { color: var(--clr-text-muted); }
.check-text { color: #4caf50; font-size: 0.88rem; }
.cross-text { color: var(--clr-text-muted); font-size: 0.88rem; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(201,168,76,0.15);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h4 { color: var(--clr-white); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--clr-text); }

/* ============================================================
   TRUST SIGNALS / STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-gold) 100%);
  padding: 48px 0;
}
.stats-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ============================================================
   WHY CHOOSE US – BULLETS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.why-list { margin-top: 24px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-text strong { color: var(--clr-white); display: block; margin-bottom: 2px; font-size: 0.95rem; }
.why-text span { font-size: 0.87rem; color: var(--clr-text-muted); }
.why-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.why-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--clr-gold);
  color: #0a0a0a;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--clr-bg-card);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-gold); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--clr-gold); color: #0a0a0a; }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--clr-text);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }
.review-stars { color: var(--clr-gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { color: var(--clr-text); font-size: 0.93rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { color: var(--clr-white); font-weight: 600; font-size: 0.92rem; }
.review-location { font-size: 0.8rem; color: var(--clr-text-muted); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.contact-info-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.contact-info-text strong { color: var(--clr-white); display: block; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { color: var(--clr-text); font-size: 0.95rem; }
.contact-info-text a:hover { color: var(--clr-gold); }

/* Contact Form */
.contact-form-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--clr-white);
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clr-gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.15); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--clr-bg-2); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  margin-top: 48px;
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr td { padding: 6px 0; font-size: 0.9rem; color: var(--clr-text); }
.hours-table tr td:first-child { color: var(--clr-white); font-weight: 500; width: 55%; }
.hours-open { color: #4caf50 !important; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--clr-gold); transform: translateY(-2px); }
.area-card .area-icon { font-size: 1.5rem; margin-bottom: 8px; }
.area-card .area-name { color: var(--clr-white); font-weight: 600; font-size: 0.95rem; }
.area-card .area-state { font-size: 0.78rem; color: var(--clr-text-muted); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; }
.service-detail-image img { width: 100%; height: 380px; object-fit: cover; }
.numbered-list { margin-top: 24px; }
.numbered-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
}
.numbered-list li:last-child { border-bottom: none; }
.list-num {
  width: 36px; height: 36px;
  background: var(--clr-gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.list-text strong { color: var(--clr-white); display: block; margin-bottom: 4px; font-size: 0.95rem; }
.list-text span { color: var(--clr-text); font-size: 0.88rem; }

/* Benefit cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
}
.benefit-card:hover { border-color: rgba(201,168,76,0.3); }
.benefit-card .b-icon { font-size: 1.6rem; margin-bottom: 12px; }
.benefit-card h4 { color: var(--clr-white); margin-bottom: 8px; font-size: 1rem; }
.benefit-card p { font-size: 0.88rem; color: var(--clr-text); margin: 0; }

/* Check list bullets */
.check-list { margin: 16px 0 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--clr-text);
  font-size: 0.93rem;
}
.check-list li::before {
  content: '✓';
  color: var(--clr-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--clr-white); margin-bottom: 16px; }
.cta-banner p { color: var(--clr-text); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #050505;
  border-top: 1px solid var(--clr-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand p { color: var(--clr-text-muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { width: 44px; height: 44px; object-fit: contain; }
.footer-logo-text { font-family: var(--font-head); color: var(--clr-white); font-size: 1rem; line-height: 1.2; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: #0a0a0a; }
.footer-col h4 {
  color: var(--clr-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--clr-text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--clr-gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--clr-gold); margin-top: 3px; font-size: 0.85rem; }
.footer-contact-item span, .footer-contact-item a { color: var(--clr-text-muted); font-size: 0.88rem; }
.footer-contact-item a:hover { color: var(--clr-gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--clr-text-muted); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--clr-text-muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--clr-gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story-grid img { border-radius: var(--radius-lg); width: 100%; height: 460px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.value-card .v-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { color: var(--clr-white); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--clr-text); margin: 0; }

/* ============================================================
   NOTIFICATION / ALERT
   ============================================================ */
.form-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius);
  padding: 16px;
  color: #4caf50;
  font-size: 0.92rem;
  margin-top: 16px;
  display: none;
}
.form-success.show { display: block; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--clr-gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-gold);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--clr-gold-light); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE TWO-COLUMN HELPER
   ============================================================ */
.responsive-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .responsive-two-col { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-grid img { height: 340px; }
  .service-detail-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .main-nav, .header-cta .btn { display: none; }
  .header-phone { font-size: 0.85rem; }
  .hamburger { display: flex; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 90vh; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-table { display: block; overflow-x: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { padding: 100px 0 50px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .stats-bar .container { flex-direction: column; align-items: center; }
}
