/* =========================================================
   AUTOBAZAAR AUTODRIVERS FEDERATION TAMIL NADU
   Shared Stylesheet — style.css
   Theme: Black / Auto Yellow / Federation Red
========================================================= */

:root {
  --auto-yellow: #FFD600;
  --auto-yellow-dark: #F5C800;
  --auto-yellow-light: #FFF8CC;
  --federation-red: #D32F2F;
  --federation-red-light: #FFEBEE;
  --coal-black: #0A0A0A;
  --off-black: #111111;
  --dark-surface: #1A1A1A;
  --dark-card: #222222;
  --mid-gray: #444444;
  --light-gray: #F5F5F5;
  --border-gray: #E0E0E0;
  --white: #FFFFFF;
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --bg-body: #FFFFFF;
  --bg-section: #F9F9F9;
  --card-bg: #FFFFFF;
  --card-border: #EEEEEE;
  --nav-bg: #0A0A0A;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Noto Sans', 'Poppins', 'Inter', sans-serif;
  --font-tamil: 'Noto Sans Tamil', 'Catamaran', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --text-primary: #F0F0F0;
  --text-secondary: #BBBBBB;
  --text-muted: #777777;
  --bg-body: #0A0A0A;
  --bg-section: #111111;
  --card-bg: #1A1A1A;
  --card-border: #2A2A2A;
  --border-gray: #333333;
  --light-gray: #1E1E1E;
  --auto-yellow-light: #2A2200;
  --federation-red-light: #1A0808;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
}

/* =========================================================
   BASE / RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
.tamil { font-family: var(--font-tamil); }
section { position: relative; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* Typography scale per brief: H1 40-48px, H2 32-36px, H3 24-28px, body 18-20px, mobile body min 16px */
h1, .h1-size { font-size: clamp(2.5rem, 5vw, 3rem); }
h2, .h2-size { font-size: clamp(2rem, 4vw, 2.25rem); }
h3, .h3-size { font-size: clamp(1.5rem, 3vw, 1.75rem); }
p, li { font-size: 1.125rem; }
@media (max-width: 576px) {
  body { font-size: 16px; }
  p, li { font-size: 1rem; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--auto-yellow);
  color: var(--coal-black);
  padding: 10px 16px;
  z-index: 2000;
  font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */
.announcement-bar {
  background: var(--federation-red);
  color: white;
  font-size: 0.78rem;
  padding: 6px 0;
  font-family: var(--font-display);
  font-weight: 600;
  overflow: hidden;
}
.announcement-ticker {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.announcement-ticker span { margin: 0 3rem; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* =========================================================
   NAVIGATION
========================================================= */
#mainNav {
  background: var(--coal-black);
  border-bottom: 3px solid var(--auto-yellow);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
  padding: 0.4rem 0;
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); padding: 0.15rem 0; }
.navbar-brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-logo-badge {
  width: 48px; height: 48px;
  background: var(--auto-yellow);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.35rem;
  color: var(--coal-black);
  flex-shrink: 0;
}
.brand-text { line-height: 1.15; }
.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--auto-yellow);
  letter-spacing: 0.4px;
}
.brand-text .brand-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.3px;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.65rem 1rem !important;
  letter-spacing: 0.3px;
  transition: var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: 4px;
  height: 2px;
  background: var(--auto-yellow);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.navbar-nav .nav-link:hover { color: var(--auto-yellow) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--auto-yellow) !important; }
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.nav-call-btn, .nav-wa-btn {
  border-radius: 8px;
  padding: 0.55rem 1.1rem !important;
  font-weight: 700 !important;
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}
.nav-call-btn { background: var(--auto-yellow) !important; color: var(--coal-black) !important; }
.nav-call-btn:hover { background: var(--auto-yellow-dark) !important; }
.nav-wa-btn { background: #25D366 !important; color: white !important; }
.nav-wa-btn:hover { background: #128C7E !important; }
.lang-toggle, .theme-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  min-height: 44px;
}
.lang-toggle:hover, .theme-toggle:hover { background: var(--auto-yellow); color: var(--coal-black); }
.navbar-toggler { border-color: rgba(255,214,0,0.5); min-height: 48px; min-width: 48px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,214,0,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991px) {
  .navbar-nav .nav-link { font-size: 1.1rem; min-height: 52px; }
}

/* Narrow desktop/tablet-landscape band: expanded navbar layout is active
   (navbar-expand-lg kicks in at 992px) but there isn't quite enough width
   for brand + 5 links + 4 action buttons on one row without crowding. */
@media (min-width: 992px) and (max-width: 1150px) {
  .navbar-nav .nav-link { font-size: 0.92rem; padding: 0.65rem 0.55rem !important; }
  .nav-call-btn, .nav-wa-btn { padding: 0.5rem 0.7rem !important; font-size: 0.85rem !important; }
  .nav-call-btn span { display: none; }
  .lang-toggle, .theme-toggle { padding: 0.5rem 0.6rem; font-size: 0.8rem; }
  .brand-text .brand-name { font-size: 1.1rem; }
  .brand-text .brand-sub { font-size: 0.62rem; }
}

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg-section); padding: 14px 0; border-bottom: 1px solid var(--card-border); }
.breadcrumb-bar .breadcrumb { margin: 0; font-size: 0.85rem; }
.breadcrumb-bar a { color: var(--text-secondary); }
.breadcrumb-bar a:hover { color: var(--federation-red); }
.breadcrumb-bar .active { color: var(--federation-red); font-weight: 600; }

/* Page header banner (for inner pages) */
.page-banner {
  background: var(--coal-black);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,214,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(211,47,47,0.07) 0%, transparent 50%);
}
.page-banner h1 { color: white; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.page-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin: 0; max-width: 600px; }
.page-banner .tamil-sub { color: rgba(255,255,255,0.45); font-size: 0.95rem; margin-top: 4px; }

/* =========================================================
   SECTION COMMON
========================================================= */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--federation-red);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-primary);
  line-height: 1.2;
}
.section-title .y { color: var(--auto-yellow); }
.section-title .r { color: var(--federation-red); }
.section-divider { width: 50px; height: 4px; background: var(--auto-yellow); border-radius: 2px; margin: 1rem 0 1.5rem; }
.section-divider.center { margin: 1rem auto 1.5rem; }
.bg-section { background: var(--bg-section); }
.bg-dark-section { background: var(--coal-black); color: white; }

/* =========================================================
   CARDS / BUTTONS (shared components)
========================================================= */
.card-modern {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}
.card-modern:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--auto-yellow); }

.btn-yellow {
  background: var(--auto-yellow);
  color: var(--coal-black);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  transition: var(--transition);
  min-height: 48px;
  font-size: 1rem;
}
.btn-yellow:hover { background: var(--auto-yellow-dark); transform: translateY(-1px); color: var(--coal-black); }
.btn-dark-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--card-border);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  transition: var(--transition);
  min-height: 48px;
}
.btn-dark-outline:hover { border-color: var(--auto-yellow); color: var(--federation-red); }
.btn-red {
  background: var(--federation-red);
  color: white;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  transition: var(--transition);
  min-height: 48px;
}
.btn-red:hover { background: #B71C1C; color: white; transform: translateY(-1px); }

.form-control-modern {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  min-height: 48px;
}
.form-control-modern:focus {
  border-color: var(--auto-yellow);
  box-shadow: 0 0 0 3px rgba(255,214,0,0.15);
  background: var(--card-bg);
  color: var(--text-primary);
  outline: none;
}
label.form-label-modern { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.35rem; display: block; }

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--coal-black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
  border-top: 3px solid var(--auto-yellow);
}
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--auto-yellow); }
.footer-seo-block { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 900px; }
.footer-links h6 { font-family: var(--font-display); font-weight: 700; color: white; margin-bottom: 1rem; font-size: 0.95rem; letter-spacing: 0.3px; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.5rem; transition: var(--transition); min-height: 24px; }
.footer-links a:hover { color: var(--auto-yellow); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; margin-top: 3rem; font-size: 0.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.social-links { display: flex; gap: 8px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.social-btn:hover { background: var(--auto-yellow); color: var(--coal-black); }

/* =========================================================
   FLOATING ACTIONS
========================================================= */
.floating-actions { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; border: none; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); text-decoration: none; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; color: white; }
.float-call { background: var(--federation-red); color: white; }
.float-top { background: var(--auto-yellow); color: var(--coal-black); }

/* =========================================================
   PAGE-SPECIFIC SHARED PATTERNS
========================================================= */

/* Plan / Pricing cards (Membership Plans page) */
.plan-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.plan-card.featured { border-color: var(--auto-yellow); box-shadow: var(--shadow-md); }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan-card.featured:hover { transform: translateY(-8px); }
@media (min-width: 768px) {
  .plan-card.featured { margin-top: -12px; padding-top: calc(2.25rem + 12px); }
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--auto-yellow); color: var(--coal-black);
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.5rem; }
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--federation-red); line-height: 1; }
.plan-price .plan-period { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.plan-features { list-style: none; padding: 0; margin: 1.5rem 0; text-align: left; }
.plan-features li { padding: 0.5rem 0; font-size: 0.92rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--card-border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: #2E7D32; margin-top: 2px; flex-shrink: 0; }
.plan-features li.not-included { opacity: 0.4; }
.plan-features li.not-included i { color: var(--text-muted); }

/* Service / Program cards (Welfare Programs page) */
.program-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); overflow: hidden; height: 100%; transition: var(--transition); }
.program-card:hover { box-shadow: var(--shadow-md); border-color: var(--auto-yellow); }
.program-card-header { padding: 1.75rem; border-bottom: 1px solid var(--card-border); }
.program-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; }
.program-card-body { padding: 1.75rem; }
.program-list { list-style: none; padding: 0; margin: 0; }
.program-list li { font-size: 0.9rem; color: var(--text-secondary); padding: 6px 0; display: flex; gap: 8px; }
.program-list li::before { content: '✓'; color: var(--auto-yellow-dark); font-weight: 700; }

/* Gallery grid */
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--coal-black); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,0.25); cursor: pointer; transition: var(--transition); position: relative; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: white; text-align: center; padding: 1rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { color: var(--auto-yellow); font-size: 1.8rem; margin-bottom: 6px; }
.gallery-filter-btn { background: transparent; border: 2px solid var(--card-border); color: var(--text-secondary); border-radius: 30px; padding: 0.45rem 1.25rem; font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); transition: var(--transition); min-height: 44px; }
.gallery-filter-btn.active, .gallery-filter-btn:hover { background: var(--auto-yellow); border-color: var(--auto-yellow); color: var(--coal-black); }

/* Testimonials */
.testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 2rem; position: relative; height: 100%; }
.testimonial-card::before { content: '"'; font-family: Georgia, serif; font-size: 5rem; color: var(--auto-yellow); opacity: 0.25; position: absolute; top: -10px; left: 16px; line-height: 1; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--auto-yellow), var(--federation-red)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-stars { color: var(--auto-yellow-dark); font-size: 0.85rem; }
.video-testimonial-card { background: var(--coal-black); border-radius: var(--radius-md); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; overflow: hidden; }
.video-testimonial-card .play-btn { width: 64px; height: 64px; background: var(--auto-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--coal-black); transition: var(--transition); }
.video-testimonial-card:hover .play-btn { transform: scale(1.1); }

/* FAQ accordion */
.faq-accordion .accordion-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.faq-accordion .accordion-button { background: var(--card-bg); color: var(--text-primary); font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: 1.1rem 1.4rem; box-shadow: none !important; min-height: 56px; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--auto-yellow-light); color: var(--text-primary); }
.faq-accordion .accordion-button::after { filter: var(--accordion-icon-filter, none); }
[data-theme="dark"] .faq-accordion .accordion-button::after { filter: invert(1); }
.faq-accordion .accordion-body { padding: 0 1.4rem 1.4rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; }
.faq-category-pill { background: var(--bg-section); border: 1px solid var(--card-border); border-radius: 30px; padding: 0.5rem 1.25rem; font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); color: var(--text-secondary); cursor: pointer; transition: var(--transition); min-height: 44px; }
.faq-category-pill.active { background: var(--federation-red); color: white; border-color: var(--federation-red); }

/* Contact page */
.contact-info-card { background: var(--coal-black); color: white; border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: rgba(255,214,0,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--auto-yellow); font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-value { font-size: 0.98rem; color: white; font-weight: 500; margin-top: 2px; }
.map-frame-wrap { border-radius: var(--radius-md); overflow: hidden; height: 320px; background: var(--bg-section); }
.business-hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--card-border); font-size: 0.92rem; }
.business-hours-row:last-child { border-bottom: none; }

/* Legal pages (Privacy / Terms) */
.legal-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; font-family: var(--font-display); font-weight: 700; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-toc { background: var(--bg-section); border-radius: var(--radius-md); padding: 1.5rem; position: sticky; top: 100px; }
.legal-toc a { display: block; padding: 6px 0; color: var(--text-secondary); font-size: 0.88rem; border-left: 2px solid transparent; padding-left: 10px; }
.legal-toc a:hover { color: var(--federation-red); border-left-color: var(--federation-red); }
.legal-updated-badge { background: var(--auto-yellow-light); color: var(--text-primary); display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1rem; }

/* About page specific */
.value-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 1.75rem; text-align: center; height: 100%; transition: var(--transition); }
.value-card:hover { border-color: var(--auto-yellow); transform: translateY(-4px); }
.team-card { text-align: center; }
.team-photo { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--auto-yellow), var(--federation-red)); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: white; margin: 0 auto 1rem; }

/* Counter stat blocks (reused) */
.stat-counter-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.stat-counter-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--auto-yellow); }
.counter-num { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; color: var(--auto-yellow); line-height: 1; }
.counter-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.5rem; font-weight: 500; }

/* Lazy load fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* Touch target minimums for accessibility across all pages */
button, a.btn, .nav-link, input, select, textarea { min-height: 44px; }
textarea { min-height: 90px; }

/* Responsive */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .page-banner { padding: 50px 0 40px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .legal-toc { position: static; margin-bottom: 1.5rem; }
}
