/* ─── CLEARLINE AUTO SHOP — GLOBAL STYLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #F5C400;
  --blue-dark: #0f2347;
  --blue-mid: #1A3A6B;
  --blue-light: #1e4a8a;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-mid: #e2e2e2;
  --gray-text: #555;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--blue-dark); background: #fff; font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.7s ease forwards; }
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeIn 0.7s ease forwards; }
.slide-left { opacity: 0; }
.slide-left.visible { animation: slideInLeft 0.7s ease forwards; }
.slide-right { opacity: 0; }
.slide-right.visible { animation: slideInRight 0.7s ease forwards; }
.scale-in { opacity: 0; }
.scale-in.visible { animation: scaleIn 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* ─── NAV ─── */
nav {
  background: #fff; border-bottom: 3px solid var(--yellow);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--blue-dark);
  text-decoration: none; letter-spacing: 0.3px; text-transform: uppercase;
  transition: color 0.15s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--yellow); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--blue-mid); }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--blue-dark); text-decoration: none; }
.nav-cta {
  background: var(--yellow); color: var(--blue-dark);
  padding: 10px 22px; border-radius: 3px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: #e0b000; transform: translateY(-1px); }

/* ─── SECTION COMMON ─── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--yellow); flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 54px); font-weight: 900;
  text-transform: uppercase; color: var(--blue-dark);
  line-height: 1.0; margin-bottom: 12px;
}
.section-sub {
  font-size: 17px; color: var(--gray-text); line-height: 1.75;
  max-width: 520px; margin-bottom: 48px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--yellow); padding: 13px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-bar-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--blue-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 7px;
}
.tb-sep { color: rgba(15,35,71,0.2); font-size: 20px; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--yellow); color: var(--blue-dark);
  padding: 16px 32px; font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: #e0b000; transform: translateY(-2px); }
.btn-dark {
  background: var(--blue-dark); color: #fff;
  padding: 16px 32px; font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.15s;
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: #fff;
  padding: 16px 32px; font-weight: 600; font-size: 15px;
  letter-spacing: 0.3px; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--blue-dark); padding: 72px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 4px; background: var(--yellow);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--blue-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
  margin-bottom: 22px; position: relative;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7vw, 72px); font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 20px; position: relative;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p {
  color: rgba(255,255,255,0.65); font-size: 18px;
  max-width: 560px; line-height: 1.75; position: relative;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--yellow); padding: 80px 5%; text-align: center;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 64px); font-weight: 900;
  text-transform: uppercase; color: var(--blue-dark);
  line-height: 1.0; margin-bottom: 14px;
}
.cta-section p { font-size: 18px; color: var(--blue-dark); opacity: 0.65; margin-bottom: 36px; }
.cta-sub { margin-top: 18px; font-size: 14px; color: var(--blue-dark); opacity: 0.5; }

/* ─── FOOTER ─── */
footer { background: #0a1a35; padding: 60px 5% 28px; color: rgba(255,255,255,0.45); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 52px; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; margin-bottom: 14px; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; padding: 5px 0; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px;
}
.seo-keywords { font-size: 11px; color: rgba(255,255,255,0.15); max-width: 600px; line-height: 1.6; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-phone { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .page-hero { padding: 52px 4% 64px; }
  .trust-bar { gap: 10px; }
  .tb-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── SCROLL ANIMATION JS ─── */
