/* =============================================================================
   PREMIUM DESIGN SYSTEM — Las Vegas Mobile Auto Glass
   Centralized tokens, shared components, and base styles.
   ============================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors — Backgrounds */
  --bg-darkest: #080808;
  --bg-dark: #111111;
  --bg-card: #161616;
  --bg-charcoal: #1a1a1a;
  --bg-light: #f7f7f8;
  --bg-white: #ffffff;

  /* Colors — Accent */
  --accent-red: #D81324;
  --accent-red-dk: #b01020;
  --accent-gold: #c9a84c;

  /* Colors — Text */
  --text-white: #ffffff;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --text-muted: #777777;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-subtle: #888888;

  /* Colors — Borders */
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-light: #e8e8e8;

  /* Typography — Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-hero: clamp(2.25rem, 4vw, 3.25rem);

  /* Typography — Weight */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Typography — Line Height */
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Typography — Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;

  /* Spacing (8px base) */
  --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-section: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-red: 0 8px 24px rgba(216, 19, 36, 0.3);
  --shadow-red-lg: 0 16px 40px rgba(216, 19, 36, 0.4);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Font Families */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}


/* ---------- Base Typography ---------- */
body {
  font-family: var(--font-body);
}


/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- Section Bases ---------- */
.section-dark {
  background: var(--bg-darkest);
  padding: var(--space-section) 0;
}

.section-light {
  background: var(--bg-light);
  padding: var(--space-section) 0;
}

.section-charcoal {
  background: var(--bg-dark);
  padding: var(--space-section) 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(216, 19, 36, 0.08);
  border: 1px solid rgba(216, 19, 36, 0.2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent-red);
  font-family: var(--font-heading);
  margin-bottom: var(--space-4);
}

.section-tag.tag-gold {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.section-title span {
  color: var(--accent-red);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  max-width: 620px;
  margin-bottom: var(--space-12);
}

.section-subtitle.text-muted-light {
  color: var(--text-secondary);
}


/* ---------- Unified Button System ---------- */
.btn-primary-dark {
  background: var(--accent-red);
  color: var(--text-white);
  border: none;
  padding: var(--space-4) var(--space-10);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--ease-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-primary-dark:hover {
  background: var(--accent-red-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
  color: var(--text-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-4) var(--space-10);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--ease-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-outline-dark:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}


/* ---------- Hero Badge ---------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: var(--space-5);
}

.hero-badge i {
  font-size: 13px;
}


/* ---------- Card — Dark Background ---------- */
.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dk));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.card-dark:hover {
  border-color: rgba(216, 19, 36, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-dark:hover::before {
  transform: scaleX(1);
}

.card-dark .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(216, 19, 36, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-dark .card-icon i {
  color: var(--accent-red);
  font-size: 22px;
}

.card-dark h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--text-white);
  margin-bottom: var(--space-3);
}

.card-dark p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

.card-dark .card-link {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--ease-base);
}

.card-dark .card-link:hover {
  gap: var(--space-3);
  color: #e53935;
}


/* ---------- Card — Light Background ---------- */
.card-light {
  padding: 35px;
  border-radius: var(--radius-md);
  height: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all var(--ease-base);
}

.card-light:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-light .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(216, 19, 36, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-light .card-icon i {
  color: var(--accent-red);
  font-size: 22px;
}

.card-light h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: var(--space-3);
}

.card-light p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-normal);
  margin-bottom: 0;
}


/* ---------- Testimonial Card ---------- */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transition: all var(--ease-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  color: rgba(216, 19, 36, 0.15);
  font-size: 36px;
  margin-bottom: 15px;
}

.testimonial-stars {
  margin-bottom: var(--space-4);
}

.testimonial-stars i {
  color: var(--accent-gold);
  font-size: var(--text-sm);
}

.testimonial-card .review-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-card .reviewer {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-card .review-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ---------- Credential Item ---------- */
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
}

.credential-check {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-check i {
  color: var(--accent-gold);
  font-size: var(--text-sm);
}

.credential-item h4 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--text-white);
  margin-bottom: var(--space-1);
}

.credential-item p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 0;
  line-height: 1.5;
}


/* ---------- Area Card ---------- */
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: var(--space-5) var(--space-6);
  text-align: center;
  transition: all var(--ease-base);
  text-decoration: none;
  display: block;
}

.area-card:hover {
  border-color: rgba(216, 19, 36, 0.3);
  background: var(--bg-charcoal);
  transform: translateY(-3px);
}

.area-card i {
  color: var(--accent-red);
  font-size: var(--text-sm);
  margin-right: var(--space-1);
}

.area-card span {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.area-card:hover span {
  color: var(--text-white);
}


/* ---------- Map Container ---------- */
.map-container,
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-container iframe,
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}


/* ---------- CTA Phone ---------- */
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(216, 19, 36, 0.1);
  border: 1px solid rgba(216, 19, 36, 0.25);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--ease-base);
}

.cta-phone:hover {
  background: rgba(216, 19, 36, 0.15);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.cta-phone i {
  color: var(--accent-red);
  font-size: 20px;
}

.cta-phone .phone-number {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  letter-spacing: 0.5px;
}

.cta-phone .phone-sub {
  color: var(--text-subtle);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  display: block;
}


/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 100%);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-4xl);
  color: var(--text-white);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.cta-title span {
  color: var(--accent-red);
}

.cta-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
}


/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-8) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  padding: var(--space-2) 0;
}

.trust-item i {
  color: var(--accent-gold);
  font-size: var(--text-base);
}

.trust-item span {
  color: #ccc;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.3px;
}


/* ---------- Hero Checklist ---------- */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
}

.hero-checklist li {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-checklist li i {
  color: var(--accent-gold);
  font-size: var(--text-sm);
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ---------- Contact Card (contact page) ---------- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.contact-card:hover {
  border-color: rgba(216, 19, 36, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  background: rgba(216, 19, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.contact-card .card-icon i {
  color: var(--accent-red);
  font-size: 24px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.contact-card p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: 0;
}

.contact-card a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: var(--weight-semibold);
  transition: color var(--ease-fast);
}

.contact-card a:hover {
  color: #e53935;
}


/* ---------- Legal Page Styles ---------- */
.legal-hero {
  background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  padding: 160px 0 60px;
  position: relative;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(216, 19, 36, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-4xl);
  color: var(--text-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.legal-hero h1 span {
  color: var(--accent-red);
}

.legal-hero p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  max-width: 700px;
}

.legal-content {
  background: var(--bg-light);
  padding: var(--space-20) 0;
}

.legal-card {
  background: var(--bg-white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  margin: 35px 0 var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid #f0f0f0;
}

.legal-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-card p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.legal-card ul {
  padding-left: 0;
  list-style: none;
}

.legal-card ul li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  padding: var(--space-1) 0 var(--space-1) var(--space-6);
  position: relative;
}

.legal-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
}

.legal-contact-info {
  background: var(--bg-light);
  border: 1px solid #eee;
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: var(--space-5);
}

.legal-contact-company {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.legal-contact-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-contact-row:last-child {
  border-bottom: none;
}

.legal-contact-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  min-width: 120px;
  flex-shrink: 0;
}

.legal-contact-value {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  text-decoration: none;
}

a.legal-contact-value:hover {
  color: var(--accent-red);
}

.contact-footer {
  background: var(--bg-dark);
  padding: var(--space-12) 0;
  border-top: 3px solid var(--accent-red);
}

.contact-footer p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

.contact-footer strong {
  color: var(--text-white);
}

.contact-footer a {
  color: var(--accent-red);
  text-decoration: none;
}


/* ---------- Quote Form Section Overrides ---------- */
.quote-form-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
  padding: var(--space-20) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-form-section .red-form-section {
  background: transparent;
  padding: 0;
}

.quote-form-section .red-form-inner {
  max-width: 100%;
}

.quote-form-section .red-form-eyebrow h2 {
  color: var(--text-white);
}

.quote-form-section .red-form-eyebrow h2 span {
  background: linear-gradient(130deg, var(--accent-red), var(--accent-red-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-form-section .red-form-eyebrow p {
  color: var(--text-subtle);
}

.quote-form-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-4xl);
  color: var(--text-white);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
}

.quote-form-title span {
  color: var(--accent-red);
}

.quote-form-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.quote-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.quote-benefit i {
  color: var(--accent-gold);
  font-size: 15px;
  flex-shrink: 0;
}

.quote-benefit span {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}


/* ---------- Warranty Card (contact page) ---------- */
.warranty-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-10);
  height: 100%;
  transition: all var(--ease-base);
}

.warranty-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.warranty-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(216, 19, 36, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.warranty-card .card-icon i {
  color: var(--accent-red);
  font-size: 24px;
}

.warranty-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: var(--space-3);
}

.warranty-card p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-normal);
  margin-bottom: 0;
}


/* ---------- Quote Info Item ---------- */
.quote-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.quote-info-item i {
  color: var(--accent-gold);
  font-size: var(--text-base);
  margin-top: 3px;
  flex-shrink: 0;
}

.quote-info-item span {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}


/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  padding: 160px 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(216, 19, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  color: var(--text-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.page-hero h1 span {
  color: var(--accent-red);
}

.page-hero p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  max-width: 600px;
}

.page-hero .hero-img {
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 400px;
  object-fit: cover;
}


/* ---------- Location Hero ---------- */
.loc-hero {
  background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  padding: 160px 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.loc-hero h1 {
  text-align: left;
}

.loc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(216, 19, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.loc-hero h1 {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--text-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.loc-hero h1 span {
  color: var(--accent-red);
}

.loc-hero p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  max-width: 600px;
  margin-bottom: var(--space-6);
}

.loc-hero .hero-img {
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 380px;
  object-fit: cover;
}


/* ---------- Premium Homepage Hero ---------- */
.premium-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  display: flex;
  align-items: center;
  padding: 160px 0 var(--space-20);
  overflow: hidden;
}

.premium-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(216, 19, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-hero);
  color: var(--text-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
  text-align: left !important;

}

.hero-title span {
  color: var(--accent-red);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-image-wrap img {
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: -15px;
  left: 30px;
  background: var(--accent-red);
  color: var(--text-white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-red-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-image-badge i {
  font-size: 18px;
}


/* ---------- Credential Item (simple — location pages) ---------- */
.cred-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.cred-item i {
  color: var(--accent-gold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.cred-item span {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}


/* ---------- Staggered Reveal Animation ---------- */
.reveal-stagger .reveal {
  transition-delay: calc(var(--reveal-i, 0) * 0.08s);
}


/* ---------- Section Dividers & Texture Overlays ---------- */
.section-dark::before,
.section-charcoal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(216, 19, 36, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark,
.section-charcoal {
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture on dark sections */
.section-dark::after,
.section-charcoal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section-dark>.container,
.section-charcoal>.container {
  position: relative;
  z-index: 1;
}

/* Gradient edge between sections */
.section-light+.section-dark::before,
.section-light+.section-charcoal::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 40px),
    radial-gradient(ellipse at 20% 50%, rgba(216, 19, 36, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
}


/* ---------- Enhanced Card Hover Glow ---------- */
.service-card::after,
.card-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(216, 19, 36, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity var(--ease-base);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::after,
.card-dark:hover::after {
  opacity: 1;
}


/* ---------- Enhanced Trust Bar ---------- */
.trust-bar {
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.03) 50%, transparent);
  pointer-events: none;
}

.trust-item {
  transition: transform var(--ease-base);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-item:hover i {
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}


/* ---------- Enhanced CTA Section ---------- */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(216, 19, 36, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-section>.container {
  position: relative;
  z-index: 1;
}


/* ---------- Enhanced Testimonial Card ---------- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
  border-radius: 0 0 4px 0;
  transition: height var(--ease-slow);
}

.testimonial-card:hover::before {
  height: 100%;
}


/* ---------- Enhanced Credential Section ---------- */
.credential-item {
  transition: all var(--ease-base);
  border-radius: var(--radius-sm);
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  margin-left: calc(var(--space-3) * -1);
}

.credential-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.credential-check {
  transition: all var(--ease-base);
}

.credential-item:hover .credential-check {
  transform: scale(1.1);
  background: rgba(201, 168, 76, 0.2);
}


/* ---------- Enhanced Area Card ---------- */
.area-card {
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dk));
  transform: scaleX(0);
  transition: transform var(--ease-base);
}

.area-card:hover::before {
  transform: scaleX(1);
}


/* ---------- Hero Image Enhanced ---------- */
.hero-image-wrap img {
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.hero-image-wrap:hover img {
  transform: scale(1.02);
}

.hero-image-badge {
  transition: all var(--ease-base);
}

.hero-image-wrap:hover .hero-image-badge {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(216, 19, 36, 0.5);
}


/* ---------- Quote Form Section Enhanced ---------- */
.quote-form-section {
  position: relative;
  overflow: hidden;
}

.quote-form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(216, 19, 36, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.quote-form-section>.container {
  position: relative;
  z-index: 1;
}

.quote-benefit {
  transition: all var(--ease-base);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  margin-left: calc(var(--space-3) * -1);
}

.quote-benefit:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateX(4px);
}


/* ---------- Premium Footer ---------- */
.premium-footer {
  background: var(--bg-darkest);
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--accent-red) 50%, transparent 90%);
}

.premium-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(216, 19, 36, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-main {
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: 1.5rem;
  color: var(--text-white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-5);
}

.footer-brand span {
  color: var(--accent-red);
}

.footer-brand:hover {
  color: var(--text-white);
}

.footer-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--ease-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent-red);
  transition: width var(--ease-base);
}

.footer-links a:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item i {
  color: var(--accent-red);
  font-size: var(--text-sm);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--accent-red);
}

.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  margin-top: var(--space-6);
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.8);
  transition: filter var(--ease-base);
}

.footer-map:hover iframe {
  filter: grayscale(0.1) contrast(1.05) brightness(0.9);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: var(--space-6) 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* Footer responsive */
@media (max-width: 991px) {
  .footer-main {
    padding: var(--space-12) 0 var(--space-8);
  }
}

@media (max-width: 576px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .footer-legal-links {
    justify-content: center;
  }
}


/* ---------- Responsive ---------- */
@media (max-width: 991px) {

  .section-dark,
  .section-light,
  .section-charcoal {
    padding: 70px 0;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .premium-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-image-wrap {
    margin-top: var(--space-10);
  }

  .page-hero {
    padding: 180px 0 60px;
  }



  .loc-hero {
    padding: 180px 0 60px;
  }


  .legal-hero {
    padding: 180px 0 50px;
  }

  .legal-card {
    padding: 30px 24px;
  }

  .quote-form-section {
    padding: 60px 0;
  }

  .quote-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {

  .section-dark,
  .section-light,
  .section-charcoal {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .premium-hero {
    padding: 180px 0 50px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-dark,
  .btn-outline-dark {
    text-align: center;
    justify-content: center;
  }

  .loc-hero .hero-img {
    height: 260px;
  }

  .quote-form-title {
    font-size: 1.5rem;
  }

  .legal-hero h1 {
    font-size: 1.6rem;
  }
}

.page-hero h1 {
  text-align: left !important;
}