/* === Top Bar === */
.top-bar {
  background: var(--car-blue);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-hours { display: none; }
@media (min-width: 640px) { .top-bar-hours { display: inline; } }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}
.site-brand-icon { font-size: 2rem; }
.site-brand-text strong { display: block; font-size: 1.1rem; }
.site-brand-text small { display: block; font-size: 0.75rem; color: var(--text-muted); }
.site-brand img, .site-brand .custom-logo { height: 40px; width: auto; }

/* Nav */
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.nav-list {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-link:hover { background: var(--bg-light); text-decoration: none; }
.nav-link-active { background: var(--car-blue); color: #fff; }
.nav-link-active:hover { background: var(--car-blue); }

/* Mobile toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Mobile open state */
.menu-open .hamburger { background: transparent; }
.menu-open .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-open .hamburger::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border-color);
  padding: 0 16px 16px;
}
.mobile-nav.active { display: block; }
.mobile-nav .nav-list {
  flex-direction: column;
  gap: 0;
}
.mobile-nav .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  font-size: 1rem;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero-placeholder.jpg') center/cover no-repeat;
  background-color: var(--car-blue);
}
@media (min-width: 768px) { .hero { min-height: 80vh; } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,61,165,0.85), rgba(27,115,64,0.7));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 40px 16px;
}
.hero h1 { font-size: 2rem; margin-bottom: 16px; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
.hero-subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.hero-buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 480px) { .hero-buttons { flex-direction: row; justify-content: center; } }

/* === Page Header === */
.page-header {
  background: var(--car-blue);
  color: #fff;
  padding: 48px 0;
}
@media (min-width: 768px) { .page-header { padding: 64px 0; } }
.page-header h1 { font-size: 2rem; margin-bottom: 12px; }
@media (min-width: 768px) { .page-header h1 { font-size: 2.5rem; } }
.page-header p { font-size: 1.1rem; opacity: 0.8; }

/* === Hours band === */
.hours-band {
  background: var(--car-yellow);
  color: var(--text-dark);
  padding: 12px 0;
  font-size: 0.9rem;
}

/* === CTA Band === */
.cta-band {
  background: var(--car-green);
  color: #fff;
  padding: 48px 0;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { opacity: 0.85; margin-bottom: 24px; }

/* === Footer === */
.site-footer {
  background: var(--car-blue);
  color: #fff;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer h3 { font-size: 1.1rem; margin-bottom: 16px; }
.footer-contact-list {
  list-style: none;
  line-height: 2;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-links {
  list-style: none;
  line-height: 2;
  font-size: 0.9rem;
}
.footer-links a { color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--car-yellow); text-decoration: none; }
.footer-hours {
  width: 100%;
  font-size: 0.9rem;
  border-collapse: collapse;
}
.footer-hours td {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}
.footer-hours td:last-child { text-align: right; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* === Elementor Override Helpers === */
.elementor-section.full-width { max-width: 100%; padding: 0; }
