/* =========================================
   AirDuctVet - Chimney Services Website
   Main Stylesheet
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --navy: #0a1f5c;
  --navy-dark: #071549;
  --navy-light: #1a3a8c;
  --red: #c0392b;
  --red-dark: #a93226;
  --red-light: #e74c3c;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f1f3f8;
  --gray: #6c757d;
  --dark-gray: #333333;
  --text-dark: #1a1a2e;
  --text-light: #555;
  --gold: #f0a500;
  --green: #27ae60;
  --border-color: #e0e5ef;
  --shadow: 0 4px 20px rgba(10,31,92,0.10);
  --shadow-lg: 0 10px 40px rgba(10,31,92,0.15);
  --shadow-card: 0 2px 15px rgba(0,0,0,0.08);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
input, textarea, select { font-family: var(--font-main); }
button { cursor: pointer; font-family: var(--font-main); }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.top-bar a:hover { color: var(--gold); }
.top-bar a i { font-size: 12px; }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}
.top-bar .social-links a:hover { background: var(--red); color: var(--white); }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img { height: 55px; width: auto; }
.logo-text { margin-left: 10px; }
.logo-text .name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  background: var(--light-gray);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--red); background: var(--light-gray); padding-left: 22px; }
.dropdown-menu a i { color: var(--red); font-size: 12px; width: 16px; }
.nav-toggle { display: none; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-call i { font-size: 14px; }

/* =========================================
   CONTAINER
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-fluid { width: 100%; padding: 0 20px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.section-bg-light { background: var(--off-white); }
.section-bg-navy { background: var(--navy); color: var(--white); }
.section-bg-dark { background: var(--navy-dark); color: var(--white); }
.section-bg-red { background: var(--red); color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header.left { text-align: left; }
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-bg-navy .section-tag,
.section-bg-dark .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-bg-navy .section-title,
.section-bg-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-bg-navy .section-subtitle,
.section-bg-dark .section-subtitle { color: rgba(255,255,255,0.8); }
.section-header.left .section-subtitle { margin: 0; }
.title-bar {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0;
  display: block;
}
.section-header.left .title-bar { margin: 16px 0 0; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a8c 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 30px; flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-form-wrap h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 800;
}
.hero-form-wrap p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,92,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 15px; }

/* Trust badges below form */
.trust-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}
.trust-badge i { color: var(--green); }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; }
.announcement-bar a:hover { color: var(--white); }

/* =========================================
   SERVICES CARDS
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--white);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-light));
}
.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 13.5px;
}
.service-card .card-link:hover { gap: 10px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content .why-items { margin-top: 30px; }
.why-item {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.why-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), #e74c3c);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-text p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.why-image-wrap { position: relative; }
.why-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.why-badge-overlay {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.why-badge-overlay .badge-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.why-badge-overlay .badge-text .num {
  font-size: 20px; font-weight: 900;
  color: var(--navy); font-family: var(--font-heading);
  line-height: 1;
}
.why-badge-overlay .badge-text .txt {
  font-size: 11px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  color: var(--white);
  font-family: var(--font-heading);
  margin: 0 auto 16px;
}
.step-card h4 {
  font-size: 17px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars {
  display: flex; gap: 3px;
  margin-bottom: 14px;
}
.stars i { color: var(--gold); font-size: 14px; }
.testimonial-text {
  font-size: 14.5px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.author-date { font-size: 12px; color: var(--gray); }
.google-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--gray);
  margin-top: 2px;
}
.google-badge i { color: #4285F4; }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-item .number {
  font-size: 42px; font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-item .label {
  font-size: 13px; color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  font-weight: 700; font-size: 15px;
  color: var(--navy);
  transition: var(--transition);
  gap: 14px;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-question i {
  font-size: 13px; flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--red);
}
.faq-question.open i { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  display: none;
  padding: 18px 22px;
  background: var(--off-white);
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
}
.faq-answer.open { display: block; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent, rgba(192,57,43,0.2));
  pointer-events: none;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(240,165,0,0.3);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* =========================================
   CONTENT SECTIONS (inner pages)
   ========================================= */
.content-block { margin-bottom: 40px; }
.content-block h2 {
  font-size: 26px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}
.content-block h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.content-block h3 {
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 24px;
}
.content-block p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-block ul {
  margin: 14px 0 14px 0;
  list-style: none;
}
.content-block ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}
.content-block ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--green);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

/* Sidebar */
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}
.sidebar-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font-heading);
}
.sidebar-card-header.red { background: var(--red); }
.sidebar-card-body { padding: 20px 22px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--red); padding-left: 6px; }
.sidebar-links a i { color: var(--red); font-size: 12px; width: 14px; }
.sidebar-links a.active { color: var(--red); }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.contact-info-item .icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 14px;
}
.contact-info-item .text .label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.contact-info-item .text .value { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.contact-info-item .text .value a { color: var(--navy); }
.contact-info-item .text .value a:hover { color: var(--red); }

/* Benefits grid (2-col in content area) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border-left: 4px solid var(--red);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.benefit-card h4 {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.benefit-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.benefit-card .bicon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 17px;
  margin-bottom: 12px;
}

/* Warning box */
.warning-box {
  background: linear-gradient(135deg, #fff3cd, #ffe8a1);
  border: 1px solid #ffc107;
  border-left: 5px solid #f0a500;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.warning-box .warn-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: #7d5a00;
  font-size: 15px; margin-bottom: 8px;
}
.warning-box p { font-size: 14px; color: #5a4000; margin: 0; line-height: 1.65; }

/* Info box */
.info-box {
  background: linear-gradient(135deg, #e8f4fd, #cce7f9);
  border: 1px solid #90c9f0;
  border-left: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.info-box .info-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy);
  font-size: 15px; margin-bottom: 8px;
}
.info-box p { font-size: 14px; color: #1a3a5c; margin: 0; line-height: 1.65; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 500px;
}
.veteran-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.veteran-badge i { font-size: 28px; color: var(--gold); margin-bottom: 6px; display: block; }
.veteran-badge span { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--red);
}
.value-card i { font-size: 28px; color: var(--navy); margin-bottom: 10px; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: rgba(255,255,255,0.3);
}
.team-card-body { padding: 20px; }
.team-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--text-light); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}
.contact-form-wrap h3 {
  font-size: 24px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 28px; line-height: 1.6;
}
.contact-info-wrap {}
.contact-info-item-big {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-item-big:last-child { border-bottom: none; }
.contact-icon-big {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
}
.contact-info-item-big h4 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.contact-info-item-big p {
  font-size: 14.5px; color: var(--text-light); line-height: 1.6;
}
.contact-info-item-big a { color: var(--red); font-weight: 600; }
.contact-info-item-big a:hover { color: var(--navy); }
.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr td {
  font-size: 14px; padding: 4px 0;
  color: var(--text-light);
}
.hours-table tr td:first-child { font-weight: 600; color: var(--text-dark); width: 50%; }
.hours-table .open td:last-child { color: var(--green); font-weight: 600; }
.map-container {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}
.map-container iframe { display: block; width: 100%; }
.social-connect { margin-top: 30px; }
.social-connect h4 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.social-links-big { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.social-link-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-link-btn.facebook { background: #1877F2; }
.social-link-btn.twitter { background: #1DA1F2; }
.social-link-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link-btn.linkedin { background: #0077B5; }
.social-link-btn.youtube { background: #FF0000; }
.social-link-btn.tiktok { background: #010101; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
}
.footer-main { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-about {}
.footer-logo img { height: 50px; width: auto; margin-bottom: 16px; }
.footer-logo .name {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 16px;
  color: var(--white); margin-bottom: 4px;
}
.footer-logo .tagline { font-size: 12px; color: var(--gold); }
.footer-desc {
  font-size: 14px; line-height: 1.7;
  margin: 14px 0 20px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
}
.footer-contact-list li i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.8); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--red); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-newsletter p {
  font-size: 13.5px; line-height: 1.6;
  margin-bottom: 14px;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,0.3); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700; font-size: 13px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--red-dark); }
.footer-hours li {
  display: flex; justify-content: space-between;
  font-size: 13.5px; margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours .open { color: var(--green); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.float-call-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--red);
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 25px rgba(192,57,43,0.5);
  z-index: 900;
  animation: pulse 2s infinite;
  transition: var(--transition);
}
.float-call-btn:hover { background: var(--red-dark); transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); transform: translateY(-3px); }

/* =========================================
   SERVICE FEATURES SECTION
   ========================================= */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .f-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.feature-card:hover .f-icon { background: linear-gradient(135deg, var(--red), var(--red-light)); }
.feature-card h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* =========================================
   PROCESS SECTION (light bg)
   ========================================= */
.process-steps-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps-light::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}
.process-step-light {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--red);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step-light:hover .step-circle {
  background: var(--red); color: var(--white);
}
.process-step-light h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step-light p { font-size: 13px; color: var(--text-light); }

/* =========================================
   ALERT / NOTICE STRIPS
   ========================================= */
.alert-strip {
  background: linear-gradient(135deg, var(--navy), #1a3a8c);
  color: var(--white);
  padding: 16px 0;
  border-bottom: 3px solid var(--red);
}
.alert-strip .container {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  text-align: center; flex-wrap: wrap;
}
.alert-strip i { color: var(--gold); font-size: 18px; }
.alert-strip p { font-size: 14px; font-weight: 600; }
.alert-strip a { color: var(--gold); text-decoration: underline; }

/* =========================================
   ICON LISTS
   ========================================= */
.icon-list { display: flex; flex-direction: column; gap: 12px; }
.icon-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.icon-list-item i {
  color: var(--red); font-size: 18px;
  margin-top: 2px; flex-shrink: 0;
}
.icon-list-item .text h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.icon-list-item .text p { font-size: 13.5px; color: var(--text-light); margin: 0; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-wrap { max-width: 560px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .main-nav { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 2000;
    padding: 80px 24px 24px;
    overflow-y: auto;
    gap: 4px;
  }
  .main-nav.open .close-nav {
    position: fixed; top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 18px;
    cursor: pointer;
  }
  .main-nav a { font-size: 16px; padding: 12px 14px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1; visibility: visible;
    transform: none;
    background: var(--light-gray);
    border-radius: var(--radius);
    margin-left: 14px;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .section { padding: 55px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .features-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .veteran-badge { display: none; }
  .process-steps-light { grid-template-columns: repeat(2, 1fr); }
  .process-steps-light::before { display: none; }
  .float-call-btn { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-stats .hero-stat .number { font-size: 26px; }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.w-100 { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.hidden { display: none; }
