/*
Theme Name: VUA HVAC
Theme URI: https://vuahvac.com
Author: nablOS
Author URI: https://vuahvac.com
Description: Veteran-owned HVAC theme for VUA HVAC. Dual brand skins (Crimson / Olive-OD), ACF-driven text-only editing, no page builder.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vua
*/

/* ==========================================================================
   SKIN TOKENS
   Two brand skins share every component below. Only variables change.
   Skin is set on <html data-skin="crimson|olive"> by inc/skin.php
   ========================================================================== */

:root,
html[data-skin="crimson"] {
  --navy: #0B1F3A;
  --navy-dark: #061526;
  --accent: #B31942;
  --accent-dark: #8F1435;
  --gold: #C5A572;
  --surface: #F2F4F7;
  --text: #0F172A;
  --muted: #5B6B85;
  --white: #ffffff;
  --border: #1c2f52;
  --shadow: 4px 4px 0px var(--accent);
  --shadow-hover: 6px 6px 0px var(--accent-dark);
  --radius: 0px;
  --max: 1440px;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html[data-skin="olive"] {
  --navy: #1A1F16;
  --navy-dark: #0F120E;
  --accent: #556B2F;
  --accent-dark: #3F5123;
  --gold: #C5A572;
  --surface: #EEF0EA;
  --text: #12150F;
  --muted: #5C6157;
  --white: #ffffff;
  --border: #2b3323;
  --shadow: 4px 4px 0px var(--accent);
  --shadow-hover: 6px 6px 0px var(--accent-dark);
  --radius: 0px;
  --max: 1440px;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { 
  font-family: var(--font-heading); 
  text-transform: uppercase; 
  line-height: 1.15; 
  letter-spacing: 0.02em; 
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow);
}
.btn:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: var(--surface);
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn-secondary:hover { background: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-dark:hover { background: var(--navy-dark); }
.btn-xl { padding: 20px 36px; font-size: 1.2rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */

.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 4px solid var(--accent);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.veteran-badge::before { content: "★"; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { color: var(--gold); }
@media (max-width: 720px) { .topbar-right span:not(.topbar-phone) { display: none; } }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 12px 20px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--white); display: block; border-radius: 2px; }

.desktop-nav { border-top: 1px solid rgba(255,255,255,0.08); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}
.nav-links > li > a:hover,
.nav-links > li.menu-item-has-children:hover > a { color: var(--gold); }
.nav-links .arrow { font-size: 0.6rem; margin-left: 4px; }
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
}
.nav-links li:hover > .sub-menu { display: block; }
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: none;
}
.sub-menu li a:hover { background: var(--surface); color: var(--accent); }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
}

/* Mobile slide menu */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-slide-menu {
  position: fixed; top: 0; right: -100%; width: 88%; max-width: 400px; height: 100vh;
  background: var(--navy); z-index: 999; transition: right 0.35s ease; overflow-y: auto;
  padding: 90px 24px 40px;
}
.mobile-slide-menu.active { right: 0; }
.mobile-slide-menu .close-btn {
  position: absolute; top: 18px; right: 18px; background: none; border: none;
  font-size: 32px; color: var(--white); cursor: pointer;
}
.mobile-slide-menu > ul > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-slide-menu > ul > li > a {
  display: flex; justify-content: space-between; padding: 16px 0;
  font-size: 1.1rem; font-weight: 800; color: var(--white); text-transform: uppercase;
}
.mobile-sub { display: none; padding: 0 0 12px 12px; }
.mobile-sub li a { display: block; padding: 10px 0; color: rgba(255,255,255,0.75); font-weight: 600; }
.mobile-slide-menu .call-btn { margin-top: 20px; }

/* ==========================================================================
   HERO (shared aggressive layout)
   ========================================================================== */

.hero, .page-hero {
  background: var(--navy);
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2) 20px, transparent 20px, transparent 40px);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--accent);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent-dark);
  padding: 6px 14px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.5);
}
.hero h1, .page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.6);
  letter-spacing: 0.03em;
}
.hero .subtitle, .page-hero .subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 90%;
  line-height: 1.5;
}
.hero .cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero .availability { color: var(--gold); font-weight: 700; font-size: 0.95rem; }

/* Sub-service / area hero (smaller, still bold) */
.page-hero {
  padding: 80px 0 60px;
}
.page-hero .page-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}
.page-hero h1 { 
  font-size: clamp(2.2rem, 4vw, 3.2rem); 
  font-weight: 700; 
  margin-bottom: 14px; 
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}
.page-hero .subtitle { color: rgba(255,255,255,0.9); max-width: 680px; margin-bottom: 24px; font-size: 1.15rem; line-height: 1.5; }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--accent); font-weight: 700; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; color: var(--muted); }
.breadcrumb-current { color: var(--muted); font-weight: 700; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  background: var(--navy);
  color: var(--white);
  border-bottom: 4px solid var(--accent);
  padding: 16px 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}
.trust-bar-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}
.trust-bar-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar-inner span::before { content: "★"; color: var(--gold); font-size: 1.1em; }

/* ==========================================================================
   SECTIONS / CARDS
   ========================================================================== */

section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-surface { 
  background-color: var(--surface); 
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.015) 10px, rgba(0,0,0,0.015) 20px);
}
.section-dark { 
  background: var(--navy); 
  color: var(--white); 
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2) 20px, transparent 20px, transparent 40px);
}

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; }
.section-dark .section-head h2 { color: var(--white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--navy); text-transform: uppercase; }
.card p { color: var(--muted); margin-bottom: 14px; }
.card a.card-link { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 0.9rem; }

/* Hub tile (Cooling / Heating / HVAC Services children) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.hub-tile {
  display: block;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 6px solid var(--accent);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
}
.hub-tile:hover { 
  background: var(--navy-dark); 
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.hub-tile h3 { font-size: 1.25rem; margin-bottom: 6px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; }
.hub-tile span { color: var(--gold); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; }

/* Service area grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.area-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}
.area-card:hover { 
  border-color: var(--accent); 
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.faq-icon { color: var(--accent); font-size: 1.4rem; font-weight: 900; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text);
  background: var(--white);
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ==========================================================================
   OFFER / URGENCY BANNER (aggressive)
   ========================================================================== */

.offer-banner {
  background: var(--accent);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 40px);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}
.offer-banner a { text-decoration: underline; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 8px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.03em; }
.cta-banner p { color: rgba(255,255,255,0.8); }

.final-cta-section {
  background: var(--navy-dark);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 10px, transparent 10px, transparent 20px);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  border-top: 8px solid var(--accent);
}
.final-cta-section h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 14px; text-transform: uppercase; font-family: var(--font-heading); }
.final-cta-section .cta-subtitle { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 1.15rem; }
.final-cta-section .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.guarantee-badges { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; color: var(--gold); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-heading); }

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
.contact-info h2 { margin-bottom: 24px; color: var(--navy); }
.contact-item { margin-bottom: 26px; }
.contact-item h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); margin-bottom: 6px; }
.contact-form-container .card { padding: 34px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
  border-top: 2px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-grid p { font-size: 0.92rem; line-height: 1.7; }
.footer-brand .veteran-line { color: var(--gold); font-weight: 800; margin-top: 10px; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.04em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */

.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy-dark);
  border-top: 2px solid var(--accent);
}
.sticky-mobile-inner { display: flex; }
.sticky-mobile-inner a {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--white);
}
.sticky-mobile-call { background: var(--accent); }
.sticky-mobile-schedule { background: var(--navy); }
@media (max-width: 720px) {
  .sticky-mobile { display: block; }
  body { padding-bottom: 60px; }
}

/* ==========================================================================
   ADMIN SKIN TOGGLE (visible to logged-in admins only)
   ========================================================================== */

.vua-skin-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: monospace;
  display: flex;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.vua-skin-toggle a { color: #fff; padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,0.15); }
.vua-skin-toggle a.active { background: var(--gold); color: #111; font-weight: 700; }

@media (max-width: 720px) {
  .vua-skin-toggle { display: none; }
}

/* ==========================================================================
   MISC PAGE (About / Privacy / generic content)
   ========================================================================== */

.entry-content { max-width: 820px; margin: 0 auto; }
.entry-content h2 { color: var(--navy); margin: 40px 0 16px; font-size: 1.8rem; font-family: var(--font-heading); text-transform: uppercase; }
.entry-content p { margin-bottom: 16px; color: var(--text); font-size: 1.1rem; }
.entry-content ul { margin: 0 0 16px 20px; list-style: disc; font-size: 1.1rem; }

/* ==========================================================================
   STRUCTURED CONTENT COMPONENTS
   Used inside page content (AC Repair, Furnace Repair, Ductwork, etc.) to
   give service pages the same depth as a stat bar / process / checklist —
   without needing repeater fields (free ACF constraint).
   ========================================================================== */

.vua-stat-bar {
  max-width: 980px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.vua-stat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: 0;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
/* Fallback: all spans in stat cards display as blocks */
.vua-stat-card span {
  display: block;
}
.vua-stat-card .vua-stat-label,
.vua-stat-card span:first-child {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.vua-stat-card .vua-stat-value,
.vua-stat-card span:nth-child(2) {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.vua-stat-card .vua-stat-detail,
.vua-stat-card span:nth-child(3) {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.vua-symptom-grid,
.vua-checklist-grid,
.vua-choose-grid {
  max-width: 980px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.vua-symptom-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 18px;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
.vua-symptom-card strong { 
  display: block; 
  color: var(--navy); 
  margin-bottom: 6px; 
  font-family: var(--font-heading); 
  text-transform: uppercase; 
  font-size: 1.15rem; 
  letter-spacing: 0.03em; 
}
.vua-symptom-card span { 
  display: block;
  color: var(--text); 
  font-size: 1rem; 
}

.vua-checklist-item,
.vua-choose-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 16px;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
.vua-checklist-item::before,
.vua-choose-item::before {
  content: "★";
  flex-shrink: 0;
  color: var(--gold);
  background: var(--navy);
  width: 26px;
  height: 26px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.vua-checklist-item span,
.vua-choose-item span { color: var(--text); font-size: 1.05rem; line-height: 1.4; }
.vua-checklist-item strong,
.vua-choose-item strong { color: var(--navy); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.15rem; }

.vua-process-steps {
  max-width: 980px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: vua-step;
}
.vua-process-step {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 24px 20px 20px;
  counter-increment: vua-step;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
.vua-process-step::before {
  content: counter(vua-step);
  position: absolute;
  top: -16px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--accent);
}
.vua-process-step h4 { margin: 12px 0 6px; color: var(--navy); font-size: 1.2rem; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.03em; }
.vua-process-step p { margin: 0; font-size: 1rem; color: var(--text); }

.vua-comparison-grid {
  max-width: 980px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.vua-comparison-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 26px;
  box-shadow: var(--shadow);
}
.vua-comparison-card.is-recommended { border-color: var(--accent); border-width: 3px; }
.vua-comparison-card h4 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.vua-comparison-card.is-recommended h4 { border-color: var(--accent); color: var(--accent); }
.vua-comparison-card ul { margin: 0 0 16px 0; list-style: none; }
.vua-comparison-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text);
}
.vua-comparison-card ul li::before { content: "★"; position: absolute; left: 0; color: var(--gold); font-size: 1.1em; line-height: 1; top: 3px; }
.vua-comparison-card .vua-comparison-best {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
}

@media (max-width: 640px) {
  .vua-stat-bar, .vua-symptom-grid, .vua-checklist-grid, .vua-choose-grid, .vua-process-steps, .vua-comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CUSTOM CONTACT FORM
   ========================================================================== */

.form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  box-shadow: var(--shadow-hard);
}

.vua-custom-form {
  width: 100%;
  max-width: 100%;
}

.vua-form-field {
  margin-bottom: 20px;
}

.vua-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.vua-form-row .vua-form-field {
  margin-bottom: 20px;
}

.vua-custom-form input[type="text"],
.vua-custom-form input[type="email"],
.vua-custom-form input[type="tel"],
.vua-custom-form select,
.vua-custom-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.vua-custom-form input:focus,
.vua-custom-form select:focus,
.vua-custom-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.vua-custom-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Light backgrounds */
.card .vua-custom-form input,
.card .vua-custom-form select,
.card .vua-custom-form textarea,
.section-light .vua-custom-form input,
.section-light .vua-custom-form select,
.section-light .vua-custom-form textarea {
  background: var(--white);
  border-color: var(--border);
}

.vua-custom-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card .vua-custom-form label,
.section-light .vua-custom-form label {
  color: var(--navy);
}

.vua-custom-form .required {
  color: var(--accent);
}

.vua-form-submit {
  background: var(--accent);
  color: var(--white);
  border: 0;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-hard);
  border-radius: 0;
  width: 100%;
  margin-top: 8px;
}

.vua-form-submit:hover {
  background: var(--navy);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.vua-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vua-form-response {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.vua-form-response.success {
  display: block;
  background: rgba(76, 175, 80, 0.15);
  border: 2px solid #4CAF50;
  color: #4CAF50;
}

.vua-form-response.error {
  display: block;
  background: rgba(244, 67, 54, 0.15);
  border: 2px solid #f44336;
  color: #f44336;
}

@media (max-width: 640px) {
  .form-wrapper {
    padding: 24px 20px;
  }
  
  .vua-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
