/* ============================================================
   DO-RIGHT LAWN SERVICE — Single Page Stylesheet
   Military / Tactical Aesthetic
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --dark: #1A1A2E;
  --navy: #0f2d51;
  --crimson: #bd190f;
  --olive: #14612d;
  --green: #14612d;
  --khaki: #D4A574;
  --white: #eaeaea;
  --gray-100: #e0e0e0;
  --gray-200: #d0d0d0;
  --gray-300: #b8b8b8;
  --gray-600: #666666;
  --gray-800: #2A2A3E;
  --nav-height: 110px;
  --font-heading: 'Archivo Black', sans-serif;
  --font-stencil: 'Black Ops One', system-ui;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-crimson { color: var(--crimson); }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
}

.main-nav.scrolled {
  background: rgba(15, 45, 81, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.nav-brand-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s, left 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: #0d5226;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.75);
  z-index: 1;
}

/* Grid texture removed — flat background */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(189, 25, 15, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  color: var(--crimson);
  letter-spacing: 2px;
  width: fit-content;
  border-radius: 4px;
}

.veteran-badge i {
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-motto {
  font-family: var(--font-stencil);
  font-size: 1.4rem;
  color: var(--khaki);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.7;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: #0d5226;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 97, 45, 0.3);
}

.btn-crimson {
  background: var(--crimson);
  color: var(--white);
}

.btn-crimson:hover {
  background: #a1140c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(189, 25, 15, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--crimson);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  padding: 0 24px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.quote-section .section-header {
  margin-bottom: 36px;
}

.section-tag {
  display: block;
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  color: var(--crimson);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--crimson);
  margin: 16px auto 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.about-text-full {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-text-full p {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text-full strong {
  color: var(--white);
}

.about-text-full em {
  color: var(--crimson);
  font-style: normal;
  font-weight: 600;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--white);
}

.about-text em {
  color: var(--crimson);
  font-style: normal;
  font-weight: 600;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--navy);
  border: none;
  border-left: 4px solid rgba(255, 255, 255, 0.5);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-radius: 0 6px 6px 0;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.ad-item {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.ad-item img {
  width: 100%;
  height: auto;
  display: block;
}

.ads-cta {
  text-align: center;
  margin-top: 48px;
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
  border-radius: 6px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-card.featured {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--dark);
}

.service-badge {
  position: absolute;
  top: 0;
  left: 28px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-stencil);
  font-size: 0.7rem;
  padding: 6px 14px;
  letter-spacing: 2px;
}

.service-number {
  font-family: var(--font-stencil);
  font-size: 2.5rem;
  color: rgba(189, 25, 15, 0.15);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--crimson);
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-pricing {
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.price-label {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green);
}

.price-amount small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-600);
}

.price-row.custom-quote .price-amount {
  font-size: 1.1rem;
  color: var(--khaki);
}

.service-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
}

.service-card .btn {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--dark);
}

.services-swiper,
.gallery-swiper {
  width: 100%;
  padding-bottom: 48px;
}

.services-swiper .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.4;
}

.services-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  opacity: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: border-color 0.3s;
}

.gallery-item:hover {
  border-color: var(--green);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(10, 10, 20, 0.5);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px;
  transition: color 0.3s;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--crimson);
}

.lightbox-close {
  top: 20px;
  right: 24px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-block h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.contact-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--crimson);
}

.area-list li {
  font-size: 0.9rem;
  color: var(--gray-300);
  padding: 3px 0;
}

.area-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--crimson);
  margin-right: 8px;
  font-size: 0.75rem;
}

.contact-map {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 380px;
  display: block;
}

.contact-cta {
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0A0A18;
  border-top: 3px solid rgba(255, 255, 255, 0.4);
  padding: 60px 0 0;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.footer-brand-text {
  font-family: var(--font-stencil);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-stencil);
  font-size: 0.7rem;
  color: var(--khaki);
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid var(--khaki);
  border-radius: 3px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-300);
  padding: 5px 0;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-link:hover {
  color: var(--crimson);
  padding-left: 6px;
}

.footer-link i {
  width: 20px;
  color: var(--crimson);
  margin-right: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 20px 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 500;
  border-radius: 6px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #a1140c;
  transform: translateY(-3px);
}

/* ============================================================
   COMMERCIAL CLIENTS
   ============================================================ */
.commercial-clients {
  padding: 100px 0;
  background: var(--navy);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--olive);
  padding: 28px 24px 24px;
  width: 200px;
  transition: transform 0.3s, background 0.3s;
}

.client-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.client-icon {
  color: var(--olive);
  font-size: 1.6rem;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews {
  padding: 100px 0;
  background: var(--dark);
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--navy);
  border: none;
  border-left: 4px solid var(--crimson);
  border-radius: 0 6px 6px 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-source {
  color: #4285F4;
  font-size: 1.2rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #FBBC04;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
  font-style: italic;
}

/* Stagger review card fade-in */
.review-card.fade-in:nth-child(1) { transition-delay: 0s; }
.review-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.review-card.fade-in:nth-child(3) { transition-delay: 0.15s; }
.review-card.fade-in:nth-child(4) { transition-delay: 0.2s; }
.review-card.fade-in:nth-child(5) { transition-delay: 0.25s; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--crimson);
  border-radius: 0 6px 6px 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--crimson);
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--crimson);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ============================================================
   SECTION DIVIDER (Gallery → Quote)
   ============================================================ */
.section-divider {
  position: relative;
  overflow: hidden;
}

.divider-slant {
  height: 40px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.divider-slant-bottom {
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
}

.divider-content {
  background: var(--navy);
  border-top: 3px solid var(--crimson);
  border-bottom: 3px solid var(--crimson);
  padding: 32px 24px;
  text-align: center;
}

.divider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.divider-icon {
  font-size: 1.4rem;
  color: var(--crimson);
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.divider-text {
  font-family: var(--font-stencil);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.divider-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-300);
  letter-spacing: 1px;
}

/* ============================================================
   QUOTE WIZARD
   ============================================================ */
.quote-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, var(--dark) 0%, #0d1a2d 100%);
}

/* --- Progress Bar --- */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 32px;
}

.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 2px solid var(--gray-600);
  color: var(--gray-600);
  font-family: var(--font-stencil);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.wizard-step-indicator.active .step-number,
.wizard-step-indicator.completed .step-number {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 0 16px rgba(20, 97, 45, 0.5);
}

.wizard-step-indicator.completed .step-number {
  background: var(--crimson);
  border-color: var(--crimson);
  box-shadow: 0 0 16px rgba(189, 25, 15, 0.4);
}

.step-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  transition: color 0.4s;
}

.wizard-step-indicator.active .step-label,
.wizard-step-indicator.completed .step-label {
  color: var(--white);
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-800);
  margin: 0 -4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: background 0.4s;
}

.wizard-step-line.active {
  background: var(--green);
}

/* --- Form Container --- */
.wizard-form {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* --- Wizard Steps --- */
.wizard-step {
  display: none;
  animation: wizardFadeIn 0.4s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-family: var(--font-stencil);
  font-size: 1.3rem;
  color: var(--khaki);
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.step-title i {
  color: var(--crimson);
}

/* --- Form Elements --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
}

.required {
  color: var(--crimson);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 97, 45, 0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b8b8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(189, 25, 15, 0.2);
}

.field-error {
  font-size: 0.75rem;
  color: var(--crimson);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: errorSlideIn 0.25s ease;
}

.field-error i {
  font-size: 0.65rem;
}

@keyframes errorSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group input.valid {
  border-color: var(--green);
}

.field-valid-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 0.85rem;
  pointer-events: none;
}

.form-group.has-icon {
  position: relative;
}

.form-group.has-icon input {
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Service Category --- */
.service-category {
  margin-bottom: 40px;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 97, 45, 0.15);
  border: 2px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.category-hint {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* --- Tier Cards --- */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card input[type="radio"] {
  display: none;
}

.tier-card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  transition: all 0.3s;
}

.tier-card-inner:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.tier-card-featured {
  border-color: rgba(189, 25, 15, 0.3);
  background: rgba(189, 25, 15, 0.05);
}

.tier-card-featured:hover {
  border-color: rgba(189, 25, 15, 0.5);
}

/* Center premium card — taller */
.tier-card-center {
  z-index: 2;
}

.tier-card-center .tier-card-inner {
  padding-top: 40px;
  padding-bottom: 30px;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tier-card-center .tier-card-inner:hover {
  transform: scale(1.08);
}

.tier-card-center input:checked + .tier-card-inner {
  transform: scale(1.08);
}

/* "MOST POPULAR" ribbon */
.tier-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--khaki);
  color: var(--dark);
  font-family: var(--font-stencil);
  font-size: 0.55rem;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 0 0 6px 6px;
  margin-bottom: 6px;
  box-shadow: 0 3px 10px rgba(212, 165, 116, 0.3);
}

/* Selected state */
.tier-card input:checked + .tier-card-inner {
  border-color: var(--green);
  background: rgba(20, 97, 45, 0.1);
  box-shadow: 0 0 24px rgba(20, 97, 45, 0.2), inset 0 0 30px rgba(20, 97, 45, 0.05);
  transform: translateY(-3px);
}

/* Checkmark indicator */
.tier-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.3s;
}

.tier-card input:checked + .tier-card-inner .tier-check {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 0 10px rgba(20, 97, 45, 0.4);
}

/* Tier icon */
.tier-icon {
  font-size: 1.6rem;
  color: var(--gray-600);
  margin: 4px 0;
  transition: color 0.3s;
}

.tier-card input:checked + .tier-card-inner .tier-icon {
  color: var(--green);
}

.tier-card-featured .tier-icon {
  color: var(--crimson);
}

/* Divider line inside card */
.tier-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

.tier-card input:checked + .tier-card-inner .tier-divider {
  background: var(--green);
}

.tier-badge {
  font-family: var(--font-stencil);
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 3px;
  background: var(--olive);
  color: var(--white);
}

.tier-badge-mid {
  background: rgba(15, 45, 81, 0.8);
  border: 1px solid var(--khaki);
  color: var(--khaki);
}

.tier-badge-top {
  background: var(--crimson);
}

.tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.tier-price {
  font-family: var(--font-stencil);
  font-size: 1.2rem;
  color: var(--green);
  letter-spacing: 1px;
  margin-top: auto;
}

.tier-price-per {
  font-size: 0.7rem;
  opacity: 0.7;
}

.tier-price-alt {
  font-size: 0.7rem;
  color: var(--gray-600);
  margin-top: -4px;
}

.tier-note {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.tier-features {
  text-align: left;
  list-style: none;
  padding: 0;
  width: 100%;
}

.tier-features li {
  font-size: 0.78rem;
  color: var(--gray-300);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li i {
  color: var(--olive);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.tier-card input:checked + .tier-card-inner .tier-features li i {
  color: var(--green);
}

/* --- Addon Checkboxes --- */
.addon-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.addon-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  transition: all 0.3s;
}

.addon-check:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.addon-check input[type="checkbox"] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.addon-check input:checked ~ .addon-label {
  color: var(--white);
}

.addon-check input:checked ~ .addon-icon {
  color: var(--green);
}

.addon-icon {
  font-size: 1rem;
  color: var(--gray-600);
  transition: color 0.3s;
}

.addon-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color 0.3s;
}

.addon-other-input {
  width: 100%;
  margin-top: 4px;
}

.addon-other-input input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.addon-other-input input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 97, 45, 0.2);
}

.addon-other-input input::placeholder {
  color: var(--gray-600);
}

/* --- Wizard Navigation --- */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Review Summary --- */
.review-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 24px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review-row:last-child {
  border-bottom: none;
}

.review-label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
}

.review-value {
  font-weight: 500;
  color: var(--white);
  text-align: right;
  max-width: 60%;
}

.review-section-title {
  font-family: var(--font-stencil);
  font-size: 0.9rem;
  color: var(--khaki);
  letter-spacing: 2px;
  margin-top: 16px;
  margin-bottom: 4px;
  padding-top: 12px;
  border-top: 2px solid rgba(212, 165, 116, 0.2);
}

.review-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* --- Success Message --- */
.wizard-success {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 24px;
}

.success-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 20px;
}

.wizard-success h3 {
  font-family: var(--font-stencil);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.wizard-success p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 992px) {
  .tier-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap img {
    height: 300px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }


  .reviews-grid .review-card {
    flex: 0 1 calc(50% - 12px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-veteran-badge {
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 90px;
  }

  .nav-inner {
    position: relative;
    justify-content: center;
  }

  .nav-logo {
    width: 76px;
    height: 76px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 16px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 24px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1005;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    padding: 14px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 20px 24px 40px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-crimson {
    display: none;
  }

  .veteran-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .stats-band {
    margin-top: 24px;
    padding: 0 16px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .marquee-band {
    padding: 10px 0;
  }

  .marquee-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .about, .services, .gallery, .contact, .quote-section, .reviews, .faq {
    padding: 60px 0;
  }

  .reviews-grid .review-card {
    flex: 0 1 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .tier-cards {
    grid-template-columns: 1fr 1fr;
  }

  .wizard-progress {
    margin-bottom: 32px;
    max-width: 320px;
    padding: 0 16px;
  }

  .wizard-step-indicator {
    flex: 1;
    min-width: 0;
  }

  .wizard-step-line {
    flex: 0 0 32px;
  }

  .step-label {
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .review-row {
    flex-direction: column;
    gap: 4px;
  }

  .review-value {
    text-align: left;
    max-width: 100%;
  }

  .wizard-submit {
    width: 100%;
    justify-content: center;
  }

  .addon-checks {
    grid-template-columns: 1fr;
  }

  .section-container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .divider-slant {
    height: 24px;
  }

  .divider-content {
    padding: 24px 16px;
  }

  .divider-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .divider-sub {
    font-size: 0.75rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image-wrap::before {
    top: -6px;
    right: -6px;
  }

  .about-image-wrap img {
    height: 250px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 20px;
  }


  .service-card {
    padding: 32px 20px 28px;
  }

  #map {
    height: 280px;
  }

  .contact-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

}

/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .tier-cards {
    grid-template-columns: 1fr;
  }

  .tier-card-inner {
    min-height: auto;
    padding: 14px 12px;
  }

  .tier-card-center .tier-card-inner {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    padding-top: 28px;
  }

  .tier-card-center .tier-card-inner:hover,
  .tier-card-center input:checked + .tier-card-inner {
    transform: none;
  }

  .stat-label {
    font-size: 0.7rem;
  }


  .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* --- Mobile menu backdrop --- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--crimson);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 24px;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-text {
  font-family: var(--font-stencil);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STAGGERED CARD ANIMATIONS
   ============================================================ */
.why-card.fade-in:nth-child(1) { transition-delay: 0s; }
.why-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.why-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.why-card.fade-in:nth-child(4) { transition-delay: 0.3s; }


/* ============================================================
   CTA BUTTON GLOW PULSE
   ============================================================ */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(20, 97, 45, 0.3); }
  50% { box-shadow: 0 0 20px rgba(20, 97, 45, 0.6), 0 0 40px rgba(20, 97, 45, 0.2); }
}

.btn-green {
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn-green:hover {
  animation: none;
}

/* ============================================================
   FLOATING PHONE BUTTON (mobile)
   ============================================================ */
.floating-phone {
  display: none;
}

@media (max-width: 768px) {
  .floating-phone {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--green);
    border: 3px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .floating-phone i {
    font-size: 1.1rem;
  }

  /* Make room for the floating button */
  .site-footer {
    padding-bottom: 60px;
  }

  /* Move back-to-top above the floating button */
  .back-to-top {
    bottom: 70px;
  }
}
