/* ============================================================
   SUPER IVAN LLC — Premium Moving Company Website
   Black & Gold Design System | Conversion-Optimized
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --black: #0D0D0D;
  --black-light: #141414;
  --black-surface: #1a1a1a;
  --black-card: #1E1E1E;
  --black-border: #2A2A2A;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A8893D;
  --gold-glow: rgba(201,168,76,0.3);
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --gray-50: #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EA;
  --gray-300: #CED4DA;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --gray-900: #212529;
  --green: #27AE60;
  --green-hover: #219150;
  --orange: #F39C12;
  --red: #E74C3C;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --shadow-gold-lg: 0 8px 40px rgba(201,168,76,0.4);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
  --dark-gradient: linear-gradient(180deg, #0D0D0D 0%, #1a1a1a 100%);
  --hero-gradient: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 40%, #141414 100%);

  /* Spacing Tokens (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: all var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- UTILITY ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.section { padding: 70px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--white-70); }
.section-gray { background: var(--gray-50); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* ---------- GOLD TEXT ---------- */
.text-gold { color: var(--gold); }
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}
h1 { font-size: 2rem; margin-bottom: 16px; font-weight: 800; }
h2 { font-size: 1.6rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
p { margin-bottom: 12px; color: var(--gray-700); }
.lead { font-size: 1.125rem; color: var(--gray-500); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 1.8rem; }
.section-title p { max-width: 600px; margin: 12px auto 0; }
.section-title .gold-line {
  width: 60px; height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}
.btn-green:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(39,174,96,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { display: flex; width: 100%; }

/* Shimmer effect on primary buttons */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-primary {
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}
.btn-primary:hover { animation: none; background-position: center; }

/* ---------- HEADER ---------- */
.top-bar {
  background: var(--black);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 8px 0;
  display: none;
  border-bottom: 1px solid var(--gold-dark);
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

.header {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
  position: sticky; top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w); margin: 0 auto;
}
.logo {
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }
.logo img { height: 42px; }

/* Nav */
.nav { display: none; }
.nav.active {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--black-surface);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  z-index: 999;
  border-bottom: 1px solid var(--gold-dark);
}
.nav a {
  color: var(--white-70); font-weight: 500;
  padding: 12px 0; font-size: 0.95rem;
  border-bottom: 1px solid var(--white-05);
}
.nav a:hover { color: var(--gold); }
.nav .dropdown { position: relative; }
.nav .dropdown-menu {
  display: none; padding-left: 16px;
}
.nav .dropdown.active .dropdown-menu { display: block; }
.nav .dropdown-menu a { font-size: 0.9rem; color: var(--white-50); }
.nav .dropdown-menu a:hover { color: var(--gold); }

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

.header-phone {
  display: none;
  font-weight: 700; color: var(--green);
  font-size: 1rem;
}
.header-phone:hover { color: var(--green-hover); }
.header-cta { display: none; }

/* ---------- HERO ---------- */
.hero {
  background: var(--hero-gradient);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
/* Decorative gold particles */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(201,168,76,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(201,168,76,0.2), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(201,168,76,0.15), transparent),
    radial-gradient(2px 2px at 80% 50%, rgba(201,168,76,0.2), transparent),
    radial-gradient(3px 3px at 10% 80%, rgba(201,168,76,0.1), transparent),
    radial-gradient(2px 2px at 90% 10%, rgba(201,168,76,0.15), transparent);
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
/* Gold accent line */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  color: var(--white); font-size: 2.2rem; margin-bottom: 16px;
  font-weight: 800; letter-spacing: -0.03em;
}
.hero h1 .text-gold { color: var(--gold); }
.hero p {
  color: var(--white-70); font-size: 1.1rem;
  margin-bottom: 28px; max-width: 580px;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--white-10);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 1.8rem; font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label {
  font-size: 0.8rem; color: var(--white-50);
  margin-top: 4px; text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--black-surface);
  padding: 20px 0;
  border-bottom: 1px solid var(--white-10);
}
.trust-items {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--white-70);
}
.trust-item .icon {
  width: 30px; height: 30px;
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 12px; }
.card-link { font-weight: 600; font-size: 0.9rem; color: var(--gold); }
.card-link:hover { color: var(--gold-dark); }

/* Dark cards (for dark sections) */
.section-dark .card {
  background: var(--black-card);
  border-color: var(--black-border);
}
.section-dark .card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.section-dark .card p { color: var(--white-70); }
.section-dark .card h3, .section-dark .card h4 { color: var(--white); }

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-surface) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 2.5rem;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover .service-card-img::after { transform: scaleX(1); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 14px; color: var(--gray-500); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-weight: 600;
  font-size: 0.875rem; margin-bottom: 6px;
  color: var(--gray-700);
}
.form-control {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem; color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr; }

/* Quote Form Box */
.quote-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.quote-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient);
}
.quote-box h3 { text-align: center; margin-bottom: 4px; font-size: 1.3rem; }
.quote-box .subtitle { text-align: center; font-size: 0.875rem; color: var(--gray-500); margin-bottom: 24px; }

/* Dark form style */
.quote-box-dark {
  background: var(--black-card);
  border-color: var(--black-border);
}
.quote-box-dark .form-control {
  background: var(--black-surface);
  border-color: var(--black-border);
  color: var(--white);
}
.quote-box-dark .form-control::placeholder { color: var(--white-50); }
.quote-box-dark .form-control:focus { border-color: var(--gold); }
.quote-box-dark h3 { color: var(--white); }
.quote-box-dark .subtitle { color: var(--white-50); }
.quote-box-dark label { color: var(--white-70); }

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-size: 4rem; font-weight: 800;
  color: var(--gold); opacity: 0.15;
  line-height: 1; font-family: Georgia, serif;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { font-size: 0.95rem; font-style: italic; color: var(--gray-700); margin-bottom: 16px; line-height: 1.6; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.testimonial-location { font-size: 0.8rem; color: var(--gray-500); margin-top: 2px; }

/* ---------- PROCESS / HOW IT WORKS ---------- */
.process-step {
  text-align: center;
  padding: 28px;
  position: relative;
}
.process-step-number {
  width: 56px; height: 56px;
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--gray-500); }

/* ---------- COUNTER / STATS ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-size: 2.5rem; font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.85rem; color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  border: none; width: 100%;
  text-align: left;
  transition: all var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.active .faq-question { color: var(--gold-dark); }
.faq-question .arrow {
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem; color: var(--gray-700);
  line-height: 1.7;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05), transparent 60%);
}
.cta-banner * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { color: var(--white-70); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 6px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: var(--white-70);
  padding: 60px 0 20px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 30px; margin-bottom: 40px;
}
.footer h4 { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 0.03em; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--white-50); font-size: 0.875rem; }
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-brand p { font-size: 0.875rem; margin-bottom: 8px; color: var(--white-50); }
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem; color: var(--white-50);
}
.footer-bottom p { color: var(--white-50); margin-bottom: 6px; }
.footer-bottom a { color: var(--white-50); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ---------- STATE / CITY HERO ---------- */
.state-hero {
  background: var(--black);
  color: var(--white);
  padding: 50px 0 44px;
  position: relative;
  overflow: hidden;
}
.state-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 60%);
}
.state-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.state-hero * { position: relative; z-index: 2; }
.state-hero h1 { color: var(--white); font-size: 2rem; }
.state-hero p { color: var(--white-70); }

.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.city-link {
  display: block; padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--black); font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 2px solid var(--gray-200);
}
.city-link:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---------- ROUTE PAGE ---------- */
.route-hero {
  background: var(--black);
  color: var(--white);
  padding: 50px 0;
  position: relative;
}
.route-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.route-hero h1 { color: var(--white); }
.route-info {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 20px;
}
.route-info-item {
  background: var(--white-10);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
}
.route-info-item .label { font-size: 0.75rem; color: var(--white-50); text-transform: uppercase; letter-spacing: 0.05em; }
.route-info-item .value { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ---------- BLOG ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--black), var(--black-surface));
}
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--black); }
.blog-card-body h3 a:hover { color: var(--gold); }

/* ---------- COST ESTIMATOR ---------- */
.estimator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
}
.estimator-result {
  text-align: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-top: 20px;
  display: none;
  border: 1px solid var(--gray-200);
}
.estimator-result .price {
  font-size: 2.2rem; font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  padding: 12px 16px;
  z-index: 999;
  gap: 10px;
  border-top: 1px solid var(--gold-dark);
}
.mobile-cta a {
  flex: 1; text-align: center;
  padding: 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
}
.mobile-cta .call-btn { background: var(--green); color: var(--white); }
.mobile-cta .quote-btn {
  background: var(--gold-gradient);
  color: var(--black);
}

/* ---------- INTERNAL LINK BOX ---------- */
.link-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}
.link-box h4 { margin-bottom: 12px; }
.link-box ul { display: flex; flex-wrap: wrap; gap: 8px; }
.link-box ul li a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 500;
  transition: all var(--transition);
}
.link-box ul li a:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- PAGE CONTENT ---------- */
.page-content { padding: 40px 0; }
.page-content h2 { margin-top: 28px; color: var(--black); }
.page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; color: var(--gray-700); font-size: 0.95rem; line-height: 1.7; }
.page-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.page-content ol li { margin-bottom: 8px; color: var(--gray-700); line-height: 1.7; }
.page-content a { color: var(--gold-dark); text-decoration: underline; }
.page-content a:hover { color: var(--gold); }

/* ---------- TWO COL LAYOUT ---------- */
.two-col { display: grid; grid-template-columns: 1fr; gap: 30px; }
.sidebar-sticky { position: sticky; top: 90px; }

/* ---------- BADGE / PILL ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white-70);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  border-top: 1px solid var(--gold-dark);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.85rem; flex: 1; }
.cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; }

/* ---------- MULTI-STEP FORM ---------- */
.form-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }
.form-step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  background: var(--gray-200);
  color: var(--gray-500);
  transition: all var(--transition);
}
.form-step-dot.active {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.form-step-dot.completed {
  background: var(--green);
  color: var(--white);
}
.form-step-line {
  width: 40px; height: 2px;
  background: var(--gray-200);
  align-self: center;
  transition: all var(--transition);
}
.form-step-line.active { background: var(--gold); }

.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- EXIT INTENT POPUP ---------- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--gray-400);
  transition: color var(--transition);
}
.popup-close:hover { color: var(--black); }
.popup-box h3 { font-size: 1.4rem; margin-bottom: 8px; text-align: center; }
.popup-box p { text-align: center; margin-bottom: 20px; }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .top-bar { display: block; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 2fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.8rem; }
  .section-title h2 { font-size: 2rem; }
  .section { padding: 80px 0; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
    gap: 4px;
    background: none;
    border: none;
  }
  .nav a {
    padding: 8px 14px; border-bottom: none;
    font-size: 0.9rem; color: var(--white-70);
    position: relative;
  }
  .nav a::after {
    content: '';
    position: absolute; bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .nav a:hover { color: var(--gold); }
  .nav a:hover::after { transform: scaleX(1); }
  .nav .dropdown { position: relative; }
  .nav .dropdown-menu {
    display: none;
    position: absolute; top: 100%; left: 0;
    background: var(--black-surface);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    border: 1px solid var(--white-10);
    padding: 8px 0;
    min-width: 240px;
    z-index: 100;
  }
  .nav .dropdown:hover .dropdown-menu { display: block; }
  .nav .dropdown-menu a {
    display: block; padding: 10px 20px;
    white-space: nowrap; color: var(--white-50);
  }
  .nav .dropdown-menu a:hover { color: var(--gold); background: var(--white-05); }
  .nav .dropdown-menu a::after { display: none; }
  .header-phone { display: flex; align-items: center; gap: 6px; }
  .header-cta { display: inline-flex; }
  .mobile-cta { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 3rem; }
  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: 3.2rem; }
  .section { padding: 100px 0; }
  .state-hero { padding: 60px 0 50px; }
  .state-hero h1 { font-size: 2.4rem; }
}

/* ---------- HEADER SCROLL HIDE ---------- */
.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* ---------- SKIP TO CONTENT (A11Y) ---------- */
.skip-link {
  position: absolute; top: -100%;
  left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 700; z-index: 10001;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ---------- PRINT ---------- */
@media print {
  .header, .footer, .mobile-cta, .cta-banner, .cookie-banner { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
