/* ============================================================
   AAA Plumbing & Rooter Service — style.css
   Built to match actual HTML class names exactly
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&family=Bebas+Neue&display=swap');

/* ============================================================
   1. CSS Variables
   ============================================================ */
:root {
  --primary:     #005BA4;
  --accent:      #FF6B00;
  --dark:        #1A1A2E;
  --light-bg:    #F4F8FB;
  --white:       #FFFFFF;
  --text:        #2D2D2D;
  --success:     #27AE60;
  --wa-green:    #25D366;
  --border:      #E0E0E0;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.18);
  --radius:      10px;
  --radius-sm:   6px;
  --transition:  all 0.3s ease;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button { font-family: 'Source Sans 3', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Source Sans 3', sans-serif; }

/* ============================================================
   3. Utility
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   4. Top Bar
   ============================================================ */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  padding: 7px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-left a {
  color: var(--white);
  font-weight: 600;
}

.top-bar-left a:hover { color: #FFD580; }

.divider { color: rgba(255,255,255,0.4); }

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: var(--transition);
}

.top-bar-social a:hover { background: rgba(255,255,255,0.32); }
.top-bar-social img { width: 14px; height: 14px; filter: brightness(0) invert(1); }

/* ============================================================
   5. Header & Navigation
   ============================================================ */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  border-bottom-color: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: padding 0.3s ease;
}

header.scrolled .navbar { padding: 9px 20px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { max-height: 58px; width: auto; transition: max-height 0.3s; }
header.scrolled .logo img { max-height: 46px; }

/* Desktop nav */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

#main-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

#main-nav a:hover,
#main-nav a.active { color: var(--primary); }
#main-nav a:hover::after,
#main-nav a.active::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle { padding-right: 2px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 500;
  border-top: 3px solid var(--accent);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { padding: 0; }

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid transparent;
}

.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary);
  border-left-color: var(--accent);
}

/* Nav CTA button */
.cta-btn {
  background: var(--accent);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-btn::after { display: none !important; }
.cta-btn:hover {
  background: #d95800;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,107,0,0.38);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 25px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 9998;
  box-shadow: -5px 0 30px rgba(0,0,0,0.18);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu nav a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu nav a:hover {
  background: var(--light-bg);
  color: var(--primary);
}

/* ============================================================
   6. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-orange,
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-orange:hover,
.btn-primary:hover {
  background: #d95800;
  border-color: #d95800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.4);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-white,
.btn-white.btn-lg {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 16px 38px;
}

.btn-white:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-full-width,
.btn-block {
  width: 100%;
  display: flex;
}

/* ============================================================
   7. Hero Section (Homepage)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,91,164,0.88) 0%, rgba(26,26,46,0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 880px;
  padding: 120px 20px 80px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2.5px;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  animation: bounce 2s infinite;
  opacity: 0.75;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

/* ============================================================
   8. Stats Counter Section
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; }

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ============================================================
   9. Section Headers (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subtitle {
  color: #666;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   10. Services Section (Homepage grid)
   ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service card — homepage variant */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-left 0.3s;
  border-left: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}

/* Both .service-card-img-wrap (index) and .service-card-img (service pages) */
.service-card-img-wrap,
.service-card-img {
  overflow: hidden;
  height: 220px;
}

.service-card-img-wrap img,
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img-wrap img,
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 22px 24px 24px;
}

.service-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card-body p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Both .service-link (index) and .card-link (service pages) */
.service-link,
.card-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover,
.card-link:hover { color: var(--accent); }

/* Service card as a full link (index uses <a> wrapper) */
.service-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.services-cta-row {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   11. Why Choose Us Section
   ============================================================ */
.why-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--light-bg);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p { color: #666; font-size: 0.92rem; line-height: 1.65; }

.why-extra-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.why-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.why-extra-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ============================================================
   12. Reviews Section
   ============================================================ */
.reviews-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.review-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.big-rating {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.big-stars { color: #FFC107; font-size: 1.6rem; letter-spacing: 2px; }
.review-count { color: #666; font-size: 0.95rem; }

/* Tabs */
.review-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.review-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.review-tab:hover,
.review-tab.active {
  background: var(--primary);
  color: var(--white);
}

/* Review grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-card[style*="display: none"] { display: none !important; }

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.google-g { flex-shrink: 0; }

.review-stars { color: #FFC107; font-size: 1.0rem; letter-spacing: 2px; }

.review-text {
  color: #444;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.review-date { color: #999; font-size: 0.82rem; margin-left: auto; }

.review-category-tag {
  display: inline-block;
  background: #E8F0FE;
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.reviews-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ============================================================
   13. Inquiry / Contact Form Section
   ============================================================ */
.inquiry-section { padding: 80px 0; background: var(--white); }

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: start;
}

.inquiry-form-col {}

/* Shared form styles */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,91,164,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #E74C3C; }

.error-msg {
  color: #E74C3C;
  font-size: 0.82rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-msg { display: block; }

.form-disclaimer {
  color: #999;
  font-size: 0.8rem;
  margin-top: 12px;
  line-height: 1.5;
}

/* Emergency contact card (right side of inquiry) */
.inquiry-contact-col {}

.emergency-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.emergency-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.emergency-card-intro {
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.location-entry {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.location-entry:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.location-entry h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.0rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  font-weight: 500;
}

.location-phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFD580;
  margin-bottom: 4px;
}

.location-phone:hover { color: var(--white); }

.location-address {
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  line-height: 1.5;
}

.location-email {
  color: #FFD580;
  font-weight: 600;
  font-size: 0.95rem;
}

.location-email:hover { color: var(--white); }

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 20px;
}

.map-wrap iframe { width: 100%; height: 200px; border: none; display: block; }

/* ============================================================
   14. Brands / Partners Marquee
   ============================================================ */
.brands-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 36px;
  display: flex;
  align-items: center;
}

.marquee-item img {
  height: 54px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: var(--transition);
}

.marquee-item:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================
   15. Careers / Join Our Team Section
   ============================================================ */
.careers-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.careers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.84);
  z-index: 1;
}

.careers-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.careers-text { color: var(--white); }

.careers-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 18px;
}

.careers-body {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.careers-perks { display: flex; flex-direction: column; gap: 10px; }
.careers-perks li { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; }

.careers-form-col {}

.careers-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.15);
}

.careers-form .form-group label { color: rgba(255,255,255,0.88); }
.careers-form .form-group input,
.careers-form .form-group textarea {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.3);
}

.careers-form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 22px;
}

/* ============================================================
   16. Footer
   ============================================================ */
.site-footer,
footer {
  background: var(--dark);
  color: #B8C8D8;
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col {}
.footer-col-about {}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { filter: brightness(0) invert(1); opacity: 0.85; }

.footer-desc {
  color: #8899AA;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col-title,
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Services list in footer — both .footer-services-list and .footer-links */
.footer-services-list,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-services-list li,
.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-services-list a,
.footer-links a {
  color: #8899AA;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-services-list a:hover,
.footer-links a:hover { color: var(--accent); }

.footer-services-list img { flex-shrink: 0; filter: brightness(0) invert(0.5); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); }
.footer-social img { filter: brightness(0) invert(1); width: 16px; height: 16px; }

/* Footer location entries */
.footer-location {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-location:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.footer-location h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 500;
}

.footer-location p {
  color: #8899AA;
  font-size: 0.87rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-location a {
  color: #5DA8E0;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-location a:hover { color: var(--accent); }

.footer-col p a {
  color: #5DA8E0;
  font-weight: 600;
}

.footer-col p a:hover { color: var(--accent); }

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright { color: #667788; font-size: 0.85rem; }

.footer-bottom-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-bottom-links a { color: #667788; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links .divider { color: #445566; }

/* Simple footer (service pages use non-.site-footer footer) */
footer:not(.site-footer) .footer-bottom p {
  text-align: center;
  color: #667788;
  font-size: 0.85rem;
}

footer:not(.site-footer) .footer-bottom p a { color: #5DA8E0; }
footer:not(.site-footer) .footer-bottom p a:hover { color: var(--accent); }

/* ============================================================
   17. Mobile Sticky CTA Bar
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 58px;
  z-index: 9999;
}

.cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  gap: 6px;
  text-decoration: none;
}

.cta-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa-green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  gap: 6px;
  text-decoration: none;
  animation: pulse-wa 2.5s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%   { box-shadow: inset 0 0 0 0 rgba(37,211,102,0.6); }
  50%  { box-shadow: inset 0 0 0 4px rgba(37,211,102,0); }
  100% { box-shadow: inset 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   18. Back to Top Button
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 24px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 9000;
  box-shadow: 0 3px 12px rgba(255,107,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,107,0,0.5); }

/* ============================================================
   19. Toast Notification
   ============================================================ */
.toast {
  position: fixed;
  top: 20px; right: 20px;
  background: var(--success);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10000;
  max-width: 320px;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   20. Scroll Reveal Animation
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   21. Inner Page Hero Banner
   ============================================================ */
.page-hero {
  height: 360px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,91,164,0.85) 0%, rgba(26,26,46,0.7) 100%);
  display: flex;
  align-items: center;
  width: 100%;
}

.page-hero-overlay .container { width: 100%; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.page-hero h1,
.page-hero-overlay h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
  color: rgba(255,255,255,0.82);
  font-size: 1.0rem;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

/* ============================================================
   22. Service Page Content Layout
   ============================================================ */
.service-content { background: var(--white); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  padding: 60px 20px;
  align-items: start;
}

.service-main {}

.service-main h2 {
  font-size: 1.7rem;
  color: var(--dark);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-bg);
}

.service-main h2:first-child { margin-top: 0; }

.service-main p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.0rem;
}

/* Benefits list */
.service-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-benefits li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #444;
  line-height: 1.65;
  font-size: 0.97rem;
  border-bottom: 1px solid #f5f5f5;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.0rem;
}

/* Trust points */
.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 0;
}

.trust-point {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
}

.trust-point h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.trust-point p { color: #555; font-size: 0.93rem; line-height: 1.6; margin: 0; }

/* FAQ Accordion */
.faq-list { margin: 10px 0 30px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.25s;
}

.faq-question:hover,
.faq-question.active { color: var(--primary); }

.faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open { max-height: 600px; padding-bottom: 18px; }

.faq-answer p {
  color: #555;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.sidebar-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}

.sidebar-phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFD580;
  margin: 12px 0 16px;
  text-decoration: none;
}

.sidebar-phone:hover { color: var(--white); }
.sidebar-phone a { color: inherit; }

.sidebar-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.sidebar-divider::before,
.sidebar-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.sidebar-cta .form-group label { color: rgba(255,255,255,0.85); }
.sidebar-cta .form-group input,
.sidebar-cta .form-group select {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.3);
}

.sidebar-info {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.sidebar-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.0rem;
  color: var(--dark);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
}

.sidebar-info p { color: #555; font-size: 0.92rem; line-height: 1.6; }

.location-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-list li {
  color: #555;
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.location-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}

/* ============================================================
   23. Related Services Section
   ============================================================ */
.section-pad { padding: 64px 0; }
.bg-light { background: var(--light-bg); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

/* ============================================================
   24. CTA Banner (Orange)
   ============================================================ */
.cta-banner { padding: 60px 20px; text-align: center; }

.cta-banner-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #e55000 100%);
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-banner-text { flex: 1; text-align: left; }

.cta-banner-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-text p { color: rgba(255,255,255,0.88); font-size: 1.0rem; }

.cta-banner-actions { flex-shrink: 0; }

/* ============================================================
   25. Reviews Page — Platform Ratings
   ============================================================ */
.platform-ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 30px auto 50px;
}

.platform-rating-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.platform-rating-card .platform-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.platform-rating-card .platform-score {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.platform-rating-card .platform-stars { color: #FFC107; font-size: 1.4rem; }

.reviews-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

/* Yelp reviews */
.yelp-reviews-section { padding: 60px 0; background: var(--light-bg); }
.yelp-review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid #C41200;
}

/* Facebook reviews */
.facebook-reviews-section { padding: 60px 0; background: var(--white); }
.facebook-review-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid #1877F2;
}

.facebook-review-card blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================================
   26. About Page
   ============================================================ */
.about-story { padding: 70px 0; background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-content h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.about-story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-values-section { padding: 70px 0; background: var(--light-bg); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mission-card .mission-icon { font-size: 3rem; display: block; margin-bottom: 16px; }

.mission-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.mission-card p { color: #666; font-size: 0.93rem; line-height: 1.65; }

.commitment-section { padding: 70px 0; background: var(--white); }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.commitment-item {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.commitment-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.commitment-item p { color: #444; font-size: 0.93rem; line-height: 1.6; }

.fleet-banner {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.8);
}

.fleet-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  padding: 0 20px;
}

/* ============================================================
   27. Contact Page
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.location-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.location-card p { color: #666; font-size: 0.9rem; line-height: 1.5; margin-bottom: 10px; }

.location-card a.phone-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.location-card a.phone-link:hover { color: var(--accent); }

.emergency-banner {
  background: linear-gradient(135deg, #CC2200, var(--accent));
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
  border-radius: var(--radius);
}

.emergency-banner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.emergency-banner .emergency-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.emergency-banner .emergency-phone:hover { color: #FFD580; }

/* ============================================================
   28. Responsive — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-extra-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-about { grid-column: 1 / -1; }
  .careers-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-ratings-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-text { text-align: center; }
}

/* ============================================================
   29. Responsive — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Top bar */
  .locations-text { display: none; }
  .top-bar-left { gap: 8px; }

  /* Header */
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .navbar > .cta-btn:not(.hamburger + .cta-btn) { display: none; }

  /* Hide desktop CTA in header on mobile */
  header .cta-btn { display: none; }
  header .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 100px 20px 70px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: 8px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 2.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-extra-row { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-tabs { gap: 8px; }
  .review-tab { font-size: 0.82rem; padding: 8px 14px; }

  /* Inquiry */
  .inquiry-grid { grid-template-columns: 1fr; }

  /* Careers */
  .careers-inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 58px; }

  /* Related */
  .related-grid { grid-template-columns: 1fr; }

  /* About */
  .mission-grid { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }

  /* Contact */
  .locations-grid { grid-template-columns: 1fr; }
  .platform-ratings-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { height: 280px; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; align-items: center; text-align: center; }

  /* Back to top offset for mobile bar */
  #back-to-top { bottom: 72px; right: 16px; }

  /* Section title */
  .section-title { font-size: 1.7rem; }
}

/* ============================================================
   30. Extra Small (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .badge { font-size: 0.78rem; padding: 5px 12px; }
  .review-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .btn { font-size: 0.92rem; padding: 12px 24px; }
  .cta-banner-text h2 { font-size: 1.5rem; }
}

/* ============================================================
   31. Accessibility & Focus
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   32. Print
   ============================================================ */
@media print {
  .top-bar, header, .mobile-cta-bar, #back-to-top,
  .toast, .hamburger, .mobile-menu, footer { display: none; }
  body { color: #000; }
}

/* ============================================================
   33. Prefers Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-reveal { opacity: 1; transform: none; }
}
