/*
Theme Name: Whyte Knyte Inspections
Theme URI: https://whyteknyteinspections.com
Author: Whyte Knyte Inspection Services, LLC
Author URI: https://whyteknyteinspections.com
Description: Official theme for Whyte Knyte Inspection Services, LLC - Nationwide Pre-Purchase Vehicle Inspection Experts.
Version: 3.0.0
License: Private
Text Domain: whyteknyte
Tags: business, automotive, inspections, mobile-ready
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --orange:       #E8610A;
  --orange-light: #FF7A1F;
  --orange-dark:  #BF4E06;
  --purple:       #6B35A8;
  --purple-light: #8B4FD0;
  --purple-dark:  #4A1F7A;
  --green:        #1A9448;
  --green-light:  #22C05C;
  --green-dark:   #126634;

  --text-dark:    #1A1A2E;
  --text-mid:     #444455;
  --text-light:   #777788;
  --bg-white:     #FFFFFF;
  --bg-off:       #F7F8FC;
  --bg-light:     #EEF0F8;
  --border:       #D8DBE8;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;
  --section-pad:  80px;
  --container:    1200px;
  --radius:       8px;
  --radius-lg:    16px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,97,10,0.35);
}
.btn-primary:hover { background: var(--orange-light); box-shadow: 0 6px 24px rgba(232,97,10,0.5); }

.btn-secondary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(107,53,168,0.3);
}
.btn-secondary:hover { background: var(--purple-light); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,148,72,0.3);
}
.btn-green:hover { background: var(--green-light); }

.btn-xl { font-size: 1.35rem; padding: 20px 48px; border-radius: var(--radius-lg); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.label-orange { background: var(--orange); color: #fff; }
.label-purple { background: var(--purple); color: #fff; }
.label-green  { background: var(--green);  color: #fff; }

/* ============================================================
   THREE-COLOR STRIPE (reusable)
   ============================================================ */
.tricolor-stripe {
  display: flex;
  height: 5px;
  width: 100%;
}
.tricolor-stripe span:nth-child(1) { flex: 1; background: var(--orange); }
.tricolor-stripe span:nth-child(2) { flex: 1; background: var(--purple); }
.tricolor-stripe span:nth-child(3) { flex: 1; background: var(--green); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header-stripe { display: flex; height: 4px; }
.header-stripe span:nth-child(1) { flex: 1; background: var(--orange); }
.header-stripe span:nth-child(2) { flex: 1; background: var(--purple); }
.header-stripe span:nth-child(3) { flex: 1; background: var(--green); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 46px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo-text span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 7px 11px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); background: rgba(232,97,10,0.08); }
.main-nav a.join-link { color: var(--green); }
.main-nav a.join-link:hover { background: rgba(26,148,72,0.08); }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 9px 20px; font-size: 0.85rem; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; }

@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px; align-items: stretch;
  }
  .main-nav.open a { padding: 11px 16px; border-bottom: 1px solid var(--bg-light); }
}

/* ============================================================
   HERO — WHITE/LIGHT background, colorful accents
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Soft color washes — light, NOT dark */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at -5% 50%,  rgba(232,97,10,0.08)  0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 108% 5%,  rgba(107,53,168,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 108% 98%, rgba(26,148,72,0.07)  0%, transparent 55%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107,53,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,53,168,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
  padding-left: 28px;
  border-left: 6px solid transparent;
  border-image: linear-gradient(to bottom, var(--orange) 33%, var(--purple) 33% 66%, var(--green) 66%) 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 2px; background: var(--green);
}

.hero h1 { color: var(--text-dark); margin-bottom: 8px; }
.hero h1 .accent { color: var(--orange); }

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--purple);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 560px; line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; margin-bottom: 44px;
}

.hero-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none;
  transition: color 0.2s;
}
.hero-phone:hover { color: var(--green); }
.hero-phone-label { font-size: 0.72rem; color: var(--text-light); font-family: var(--font-body); font-weight: 400; letter-spacing: normal; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: var(--text-mid); font-size: 0.88rem; font-weight: 600;
}
.trust-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
}
.trust-item:nth-child(1) .trust-icon { background: rgba(232,97,10,0.12);  border: 1px solid rgba(232,97,10,0.3); }
.trust-item:nth-child(2) .trust-icon { background: rgba(26,148,72,0.12);  border: 1px solid rgba(26,148,72,0.3); }
.trust-item:nth-child(3) .trust-icon { background: rgba(107,53,168,0.12); border: 1px solid rgba(107,53,168,0.3); }
.trust-item:nth-child(4) .trust-icon { background: rgba(232,97,10,0.12);  border: 1px solid rgba(232,97,10,0.3); }

/* ============================================================
   TRUST BAR — orange background, readable
   ============================================================ */
#trust-bar {
  background: var(--orange);
  padding: 0; overflow: hidden;
}
.trust-bar-inner {
  display: flex; gap: 0;
}
.trust-bar-item {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 7px; flex: 1; padding: 13px 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-bar-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item { flex: 0 0 50%; }
}

/* ============================================================
   ABOUT SECTION — light bg
   ============================================================ */
#about {
  padding: var(--section-pad) 0;
  background: var(--bg-off);
  border-top: 4px solid var(--orange);
}
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px; align-items: center;
}
.about-image-wrap {
  position: relative;
  width: 220px; flex-shrink: 0;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 220px; height: 280px;
  object-fit: cover; object-position: top center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
}
.about-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 800;
  text-align: center; padding: 13px 15px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(232,97,10,0.4);
  line-height: 1.1;
}
.about-badge .num { font-size: 1.7rem; display: block; }
.about-badge .text { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.stat-card {
  background: var(--bg-white);
  padding: 18px; border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stat-card:nth-child(2) { border-left-color: var(--purple); }
.stat-card:nth-child(3) { border-left-color: var(--green); }
.stat-card:nth-child(4) { border-left-color: var(--orange); }
.stat-card .num {
  font-family: var(--font-display); font-size: 1.9rem;
  font-weight: 800; color: var(--orange); line-height: 1;
}
.stat-card:nth-child(2) .num { color: var(--purple); }
.stat-card:nth-child(3) .num { color: var(--green); }
.stat-card .label { font-size: 0.82rem; color: var(--text-light); margin-top: 3px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { width: 180px; margin: 0 auto; }
  .about-image-wrap img { width: 180px; height: 230px; }
  .about-badge { bottom: -10px; right: -10px; }
}

/* ============================================================
   SERVICES SECTION — purple accent bg
   ============================================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--purple);
  position: relative;
}
#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--orange) 33%, var(--purple-dark) 33% 66%, var(--green) 66%);
}
#services h2 { color: #fff; }
.services-intro { color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 44px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.service-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 11px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: #fff;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:nth-child(2)::before { background: var(--green); }
.service-card:nth-child(3)::before { background: var(--orange); }
.service-card:nth-child(4)::before { background: var(--green); }
.service-card:nth-child(5)::before { background: var(--orange); }
.service-card:nth-child(6)::before { background: var(--green); }
.service-card:nth-child(7)::before { background: var(--orange); }
.service-card:nth-child(8)::before { background: var(--green); }
.service-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
}
.service-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; }
.service-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.5; flex: 1; }
.service-card .card-cta {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #FFD580; display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.service-card.external-link::after {
  content: '↗'; position: absolute; top: 14px; right: 14px;
  font-size: 1rem; color: rgba(255,255,255,0.3);
}
.service-card.external-link:hover::after { color: #FFD580; }

/* ============================================================
   ORDER SECTION — clean white
   ============================================================ */
#order {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  border-top: 4px solid var(--green);
}
.order-intro { max-width: 600px; margin-bottom: 44px; }
.order-intro p { color: var(--text-mid); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px; margin-bottom: 36px;
}
.order-card {
  background: var(--bg-off);
  border-radius: var(--radius-lg); padding: 22px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.order-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.order-card-icon { font-size: 2.2rem; }
.order-card h4 { font-family: var(--font-display); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.order-card p { font-size: 0.82rem; color: var(--text-mid); flex: 1; }

/* ============================================================
   SAMPLE REPORT — orange bg
   ============================================================ */
#sample-report {
  background: var(--orange);
  padding: 56px 0;
}
.sample-report-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.sample-report-inner h2 { color: #fff; }
.sample-report-inner p { color: rgba(255,255,255,0.88); margin-top: 10px; }

/* ============================================================
   SERVICE AREAS — green bg
   ============================================================ */
#service-areas {
  padding: var(--section-pad) 0;
  background: var(--green);
}
#service-areas h2 { color: #fff; }
.areas-sub { color: rgba(255,255,255,0.88); margin-bottom: 36px; }

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px; margin-bottom: 28px;
}
.state-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-display); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.state-chip .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.state-chip:nth-child(3n+1) .dot { background: #fff; }
.state-chip:nth-child(3n+2) .dot { background: var(--orange); }
.state-chip:nth-child(3n+3) .dot { background: var(--purple-light); }

.nationwide-banner {
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-lg); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.25);
}
.nationwide-banner h3 { color: #fff; font-size: 1.7rem; }
.nationwide-banner p { color: rgba(255,255,255,0.88); margin-top: 5px; }

/* ============================================================
   REVIEWS — light bg
   ============================================================ */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--bg-off);
  border-top: 4px solid var(--purple);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px; margin-top: 36px;
}
.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 11px;
  border-top: 3px solid var(--purple);
}
.review-card:nth-child(2) { border-top-color: var(--orange); }
.review-card:nth-child(3) { border-top-color: var(--green); }
.review-card:nth-child(4) { border-top-color: var(--orange); }
.review-card:nth-child(5) { border-top-color: var(--green); }
.review-card:nth-child(6) { border-top-color: var(--purple); }
.review-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; color: var(--text-mid); font-style: italic; line-height: 1.65; flex: 1; }
.review-author { font-family: var(--font-display); font-weight: 700; font-size: 0.83rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.reviews-cta {
  text-align: center; margin-top: 36px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   GALLERY — light bg
   ============================================================ */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
  border-top: 4px solid var(--green);
}

/* ============================================================
   BLOG PREVIEW — white
   ============================================================ */
#blog-preview {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  border-top: 4px solid var(--orange);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px; margin-top: 36px;
}
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--bg-white);
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 18px 22px; }
.blog-cat {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 7px; color: var(--text-dark); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-mid); }
.blog-card-body .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-top: 10px; transition: gap 0.2s;
}
.blog-card:hover .read-more { gap: 10px; }

/* ============================================================
   CONTACT SECTION — off-white
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--bg-off);
  border-top: 4px solid var(--purple);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 44px; align-items: start;
}
.contact-info { color: var(--text-mid); }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(232,97,10,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 3px;
}
.contact-detail-text a { color: var(--text-dark); font-size: 1.05rem; font-weight: 600; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--orange); }

.hours-table { width: 100%; }
.hours-table td { padding: 5px 0; font-size: 0.88rem; color: var(--text-mid); }
.hours-table td:first-child {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dark); width: 110px;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 13px 15px;
  color: var(--text-dark); font-family: var(--font-body); font-size: 0.93rem;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { min-height: 115px; resize: vertical; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER — dark, readable
   ============================================================ */
#site-footer {
  background: #1A1A2E;
  padding: 0;
}
.footer-stripe { display: flex; height: 5px; }
.footer-stripe span:nth-child(1) { flex: 1; background: var(--orange); }
.footer-stripe span:nth-child(2) { flex: 1; background: var(--purple); }
.footer-stripe span:nth-child(3) { flex: 1; background: var(--green); }
.footer-inner { padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; }
.footer-tagline {
  margin-top: 14px; font-family: var(--font-display); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); font-style: italic;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); margin: 0; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-brand .logo-text { color: #fff; }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (blog/inner pages)
   ============================================================ */
.page-hero {
  background: var(--purple);
  padding: 120px 0 56px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.78); margin-top: 10px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 44px; padding: 56px 0;
}
.sidebar-widget {
  background: var(--bg-off);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px;
  border-top: 3px solid var(--orange);
}
.sidebar-widget h4 {
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
@media (max-width: 768px) { .blog-page-grid { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.section-header { margin-bottom: 44px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* SEO hidden text */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
