/* ============================================================
   JUNKVETS JUNK REMOVAL — style.css
   Colors: Navy #2f2e7b | Red #bd202f | Gold #bd202f | White #ffffff
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #2f2e7b;
  --navy2:  #252468;
  --navy3:  #1e1d5a;
  --red:    #bd202f;
  --red2:   #a01828;
  --gold:   #bd202f; /* gold replaced with brand red per style guide */
  --white:  #ffffff;
  --gray:   #8a9ab0;
  --light:  #f4f6f9;
  --font:   'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --mono:   'Courier New', monospace;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --radius: 6px;
  --trans:  all 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.4);
}

.btn-navy {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.85);
  border-width: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-navy:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

.btn-navy-solid {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy-solid:hover {
  background: var(--navy2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: linear-gradient(90deg, #bd202f 0%, #1e1d5a 15%, #2f2e7b 50%, #0f1f3a 85%, #2f2e7b 100%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 9px 0;
}

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

.top-bar a {
  color: var(--white);
  font-size: 0.88rem;
  opacity: 0.9;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { opacity: 1; color: var(--gold); }

.top-bar .phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 1;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-label {
  color: var(--gray);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- NAVIGATION ---- */
.nav {
  background: linear-gradient(180deg, #1e1d5a 0%, #252468 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  border-bottom: 3px solid #bd202f;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: center;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #64b9ff;
  letter-spacing: -1px;
  flex-shrink: 0;
  font-family: var(--mono);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-ega {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.nav-ega:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-ctas .btn {
  padding: 10px 16px;
  font-size: 0.8rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ---- HERO ---- */
.hero {
  /* Photo placeholder: replace with background-image: url('images/hero-truck.jpg') center/cover no-repeat */
  background:
    linear-gradient(135deg,
      #2f2e7b 0%,
      #2f2e7b 30%,
      #1e1d5a 55%,
      #a01828 80%,
      #bd202f 100%
    );
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  color: var(--white);
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--red);
}

/* Patriotic stripe accent — red, white, blue */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #bd202f 33.3%, #e8e8e8 33.3% 66.6%, #2f2e7b 66.6%);
  opacity: 1;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 50%, rgba(196,30,58,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(27,58,107,0.15) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,185,255,0.15);
  border: 1.5px solid #64b9ff;
  color: #64b9ff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  box-shadow: 0 0 12px rgba(100,185,255,0.25);
}

.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--red);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-item svg { flex-shrink: 0; opacity: 0.9; }

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

/* ---- SECTION SHARED ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy2 { background: var(--navy2); color: var(--white); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}

.section-dark .section-eyebrow,
.section-navy2 .section-eyebrow {
  color: var(--gold);
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-dark .section-header h2,
.section-navy2 .section-header h2 { color: var(--white); }

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p,
.section-navy2 .section-header p { color: rgba(255,255,255,0.65); }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.6% + 16px);
  right: calc(16.6% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  position: relative;
}

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

.step-card p {
  font-size: 0.95rem;
  color: var(--gray);
}
.section-dark .step-card p { color: rgba(255,255,255,0.6); }

/* ---- AMERICAN PICKERS CALLOUT ---- */
.pickers-callout {
  background: linear-gradient(135deg, var(--navy) 0%, #1e1d5a 100%);
  border-left: 6px solid var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.pickers-callout::after {
  content: 'TV';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(212,175,55,0.04);
  font-family: var(--mono);
  line-height: 1;
  pointer-events: none;
}

.pickers-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.pickers-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.pickers-callout h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}

.pickers-callout p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 560px;
}

.pickers-callout .episode-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.episode-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.episode-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}

.episode-detail-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.pickers-tv {
  width: 200px;
  height: 160px;
  border: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

.pickers-tv-icon {
  font-size: 3rem;
  line-height: 1;
}

.pickers-tv-text {
  color: var(--gold);
  font-size: 0.75rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.section-dark .service-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.service-card:hover .service-icon { color: var(--red); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  transition: var(--trans);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.section-dark .service-card h3 { color: var(--white); }

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}
.section-dark .service-card p { color: rgba(255,255,255,0.55); }

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- WHY JUNKVETS ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,30,58,0.12);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

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

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ---- SENSITIVE SITUATIONS ---- */
.sensitive-section {
  background: var(--light);
  padding: 80px 0;
}

.sensitive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sensitive-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.sensitive-content p {
  color: #4a5568;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.sensitive-list {
  margin: 24px 0 32px;
}

.sensitive-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(10,22,40,0.07);
}

.sensitive-list li:last-child { border-bottom: none; }

.sensitive-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.sensitive-visual {
  /* Photo placeholder: replace with actual photo/image */
  background: linear-gradient(135deg, var(--navy) 0%, #252468 100%);
  border-radius: 12px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
  border: 2px dashed rgba(255,255,255,0.15);
  /* PHOTO PLACEHOLDER: Add photo of Hector or team working on a sensitive cleanout */
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--trans);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.author-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.testimonials-footer {
  text-align: center;
  margin-top: 40px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 28px;
  border-radius: 100px;
  color: var(--white);
  font-size: 0.88rem;
}

.google-rating {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

/* ---- SERVICE AREAS ---- */
.areas-section {
  background: var(--light);
  padding: 72px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 40px;
}

.area-pill {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.12);
  border-radius: 100px;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--trans);
}

.area-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- FINAL CTA SECTION ---- */
.final-cta {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-navy {
  border-color: rgba(255,255,255,0.7);
}

/* ---- FOOTER ---- */
.footer {
  background: #1e1d5a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877F2;
  border: 2px solid #1877F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: var(--trans);
  font-weight: 900;
  text-decoration: none;
}
.social-link:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24,119,242,0.4);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-vet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 72px 0 60px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

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

/* ---- ABOUT PAGE ---- */
.about-story {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  /* PHOTO PLACEHOLDER: Replace with photo of Hector */
  background: linear-gradient(135deg, var(--navy) 0%, #252468 100%);
  border-radius: 12px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.15);
  position: sticky;
  top: 100px;
}

.about-photo-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding: 0 24px;
}

.about-eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  display: block;
}

.about-story-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 24px;
}

.about-story-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.about-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}

.military-timeline {
  margin: 36px 0;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}

.timeline-year {
  min-width: 80px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.timeline-content h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

/* ---- SERVICES PAGE ---- */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0;
}

.service-detail-card {
  border: 1px solid rgba(10,22,40,0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--trans);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.service-card-img {
  /* PHOTO PLACEHOLDER */
  background: linear-gradient(135deg, var(--navy) 0%, #252468 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.service-card-img-note {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 3px;
}

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

.service-card-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-body ul {
  margin-bottom: 20px;
}

.service-card-body ul li {
  font-size: 0.88rem;
  color: #5a6a7e;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-body ul li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- AMERICAN PICKERS PAGE ---- */
.pickers-hero {
  background: linear-gradient(135deg, #1e1d5a 0%, var(--navy) 60%, #1e1d5a 100%);
  padding: 80px 0 70px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pickers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212,175,55,0.08), transparent 70%);
}

.history-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.pickers-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.episode-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  position: relative;
}

.episode-meta-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 20px;
  text-align: center;
}

.episode-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.episode-meta-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.pickers-story {
  padding: 80px 0;
}

.pickers-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pickers-tv-large {
  /* PHOTO PLACEHOLDER: Replace with screenshot/still from episode */
  background: linear-gradient(135deg, var(--navy) 0%, #1e1d5a 100%);
  border-radius: 12px;
  border: 3px solid var(--gold);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  text-align: center;
  padding: 32px;
}

.pickers-tv-large-icon { font-size: 5rem; line-height: 1; }
.pickers-tv-large-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding: 0 20px;
}

.pickers-story-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.pickers-story-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pickers-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--light);
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
}

.pickers-quote p {
  font-size: 1.05rem;
  color: var(--navy);
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

/* ---- CONTACT / BOOKING FORM ---- */
.contact-section {
  padding: 80px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: #5a6a7e;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius);
  transition: var(--trans);
}

.contact-method:hover { border-color: var(--red); }

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-method-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-method-value a {
  color: var(--navy);
  transition: var(--trans);
}
.contact-method-value a:hover { color: var(--red); }

.contact-method-note {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Form */
.booking-form-wrap {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.booking-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.booking-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(10,22,40,0.15);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--trans);
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.08);
}

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

.form-submit { width: 100%; margin-top: 8px; }

.form-privacy {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .top-bar .container { flex-direction: column; gap: 6px; text-align: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }

  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav.open .nav-ctas {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .hero { padding: 64px 0 56px; min-height: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 20px; }

  .trust-bar .container { justify-content: flex-start; gap: 10px 20px; }
  .trust-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .pickers-inner { grid-template-columns: 1fr; }
  .pickers-tv { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; padding: 40px 0; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .sensitive-inner { grid-template-columns: 1fr; }
  .sensitive-visual { height: 240px; position: static; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .pickers-story-grid,
  .about-story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-photo,
  .pickers-tv-large { height: 240px; position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .booking-form-wrap { padding: 24px 20px; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { gap: 16px; }

  .episode-meta { gap: 12px; }
}

@media (max-width: 480px) {
  .nav .container { height: 60px; }
  .nav-logo-text { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr; }
}


/* ====== MEDIA / AS SEEN IN ====== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.media-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.media-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.media-logo-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.media-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.media-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.media-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.media-link:hover { text-decoration: underline; }

/* Hero badge as link */
a.hero-badge {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
a.hero-badge:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* ====== EGA EMBLEM — top left corner of hero ====== */
.ega-emblem {
  position: absolute;
  top: 24px;
  left: 32px;
  opacity: 0.35;
  z-index: 2;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ega-emblem:hover { opacity: 0.7; pointer-events: auto; }

@media (max-width: 768px) {
  .ega-emblem { top: 16px; left: 16px; transform: scale(0.8); transform-origin: top left; }
}


.sms-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1877F2;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sms-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ---- SERVICES DROPDOWN ---- */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-top: 3px solid #bd202f;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  min-width: 220px;
  z-index: 999;
  padding: 8px 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #bd202f !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #ffffff !important;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: #bd202f !important;
  color: #ffffff !important;
}
.has-dropdown:hover .dropdown-menu { display: block; }

/* ---- WHATSAPP BUTTON → RED ON WHITE ---- */
.whatsapp-btn, .hero-whatsapp-btn, .strip-whatsapp,
a[href*="wa.me"] {
  background: #ffffff !important;
  color: #bd202f !important;
  border: 2px solid #bd202f !important;
}
.whatsapp-btn:hover, .hero-whatsapp-btn:hover, .strip-whatsapp:hover,
a[href*="wa.me"]:hover {
  background: #bd202f !important;
  color: #ffffff !important;
}

