/*
Theme Name: Menchhofer Smart Farm
Theme URI: https://menchhofer.net
Author: Menchhofer Smart Farm LLC
Author URI: https://menchhofer.net
Description: Professional agricultural WordPress theme for Menchhofer Smart Farm LLC — featuring drone sales (EA Vision / Agri Spray Drones), Channel Seed (Bayer), and crop insurance (NAU Country & Rain & Hail). Includes drone carousel, team carousel, video section, discount popup, Google Maps, and mobile-responsive design.
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: menchhofer-theme
Tags: agriculture, farm, drone, green, responsive, one-page
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:     hsl(120, 45%, 28%);
  --primary-dk:  hsl(120, 45%, 18%);
  --primary-lt:  hsl(120, 45%, 38%);
  --secondary:   hsl(42, 85%, 48%);
  --secondary-dk:hsl(42, 85%, 38%);
  --bg:          hsl(40, 20%, 97%);
  --fg:          hsl(120, 15%, 12%);
  --muted:       hsl(120, 8%, 48%);
  --border:      hsl(90, 20%, 82%);
  --white:       #ffffff;
  --font:        'Inter', 'Segoe UI', Arial, sans-serif;
  --radius:      8px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ============================================================
   UTILITY LAYOUT
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.bg-white { background: #fff; }
.bg-light { background: hsl(120, 10%, 96%); }
.bg-green { background: var(--primary); }
.bg-green-dk { background: hsl(120, 40%, 18%); }
.green-gradient { background: linear-gradient(135deg, hsl(120,40%,18%) 0%, hsl(120,35%,28%) 100%); }
.gold-bg { background: var(--secondary); }

.text-white { color: #fff !important; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-green { color: var(--primary); }
.text-gold { color: var(--secondary); }
.text-muted { color: var(--muted); }
.text-dark { color: var(--fg); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 999px; }
.overflow-hidden { overflow: hidden; }

.shadow { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.w-full { width: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; cursor: pointer; border: none;
  text-decoration: none; line-height: 1.4;
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,80,20,0.35);
  color: #fff;
}
.btn-secondary {
  background: var(--secondary); color: hsl(0,0%,10%);
}
.btn-secondary:hover {
  background: var(--secondary-dk);
  transform: translateY(-1px);
  color: hsl(0,0%,10%);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff; color: var(--primary);
}
.btn-white:hover { background: var(--secondary); color: hsl(0,0%,10%); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-tag {
  display: inline-block;
  background: hsl(42, 85%, 48%, 0.15);
  color: hsl(42, 85%, 35%);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  margin-bottom: 0.75rem;
}
.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: hsl(42, 85%, 75%);
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg); margin-bottom: 1rem; font-weight: 900;
}
.section-heading span { color: var(--primary); }
.section-heading-light { color: #fff; }
.section-heading-light span { color: var(--secondary); }
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 600px; line-height: 1.7; margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled,
#site-header.solid {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
#site-header.transparent { background: transparent; }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(20,80,20,0.3);
}
.logo-text-main {
  font-weight: 900; font-size: 1rem; line-height: 1.2;
  color: var(--fg);
  transition: color 0.3s;
}
.logo-text-sub { font-size: 0.75rem; color: var(--secondary); font-weight: 600; }
.site-header-transparent .logo-text-main { color: #fff; }
.site-logo-img {
  height: 52px; width: auto; max-width: 200px;
  object-fit: contain; display: block;
}

/* Header right group: socials + CTA */
.header-right {
  display: flex; align-items: center; gap: 1rem; margin-left: 1.5rem;
}
.header-socials {
  display: flex; align-items: center; gap: 0.25rem;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  color: var(--fg); background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.site-header-transparent .social-icon { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); }
.site-header-transparent .social-icon:hover { background: var(--secondary); color: #111; border-color: var(--secondary); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--fg); border-radius: 6px;
  transition: color 0.2s; text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--secondary);
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover::after,
.nav-links a.current-menu-item::after { left: 0.75rem; right: 0.75rem; }
.nav-links a:hover { color: var(--primary); }
.site-header-transparent .nav-links a { color: rgba(255,255,255,0.9); }
.site-header-transparent .nav-links a:hover { color: #fff; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; color: var(--fg);
  flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.site-header-transparent .mobile-toggle { color: #fff; }

/* Mobile nav dropdown */
#mobile-nav {
  position: fixed; top: 80px; left: 0; right: 0;
  background: hsl(120, 20%, 10%);
  z-index: 999;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, box-shadow 0.35s ease;
  box-shadow: none;
}
#mobile-nav.open {
  max-height: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
#mobile-nav a {
  display: block; color: #fff;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
#mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--secondary); }
#mobile-nav .mobile-quote-btn {
  display: block; margin: 0.75rem 1.5rem;
  background: var(--secondary); color: #111;
  border-radius: var(--radius); text-align: center;
  padding: 0.65rem 1rem; font-weight: 700;
  font-size: 0.9rem; border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,50,10,0.82) 0%, rgba(20,70,20,0.6) 60%, rgba(180,140,0,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem; width: 100%;
}
.hero-inner { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,200,0,0.4);
  color: hsl(42,85%,80%);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  color: #fff; font-weight: 900; margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1;
}
.hero-title .highlight { color: var(--secondary); }
.hero-sub {
  color: rgba(255,255,255,0.85); font-size: 1.125rem;
  max-width: 580px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
}
.hero-trust span::before { content: "✓ "; color: var(--secondary); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  text-align: center; color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
.scroll-mouse {
  width: 20px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px; margin: 0.5rem auto 0;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ============================================================
   DRONE CAROUSEL
   ============================================================ */
.drone-carousel-section { padding: 2.5rem 0; background: hsl(120,40%,15%); overflow: hidden; }
.drone-carousel-header {
  max-width: 1280px; margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.drone-carousel-wrap { overflow: hidden; padding: 0.5rem 0; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.drone-carousel-track {
  display: flex; gap: 1.5rem;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.drone-carousel-track:hover { animation-play-state: paused; }
.drone-card {
  flex-shrink: 0; min-width: 280px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.drone-card img { width: 100%; height: 176px; object-fit: cover; display: block; }
.drone-card-info { background: hsl(120,35%,20%); padding: 0.75rem 1rem; }
.drone-card-name { color: #fff; font-weight: 600; font-size: 0.875rem; }
.drone-card-sub { color: var(--secondary); font-size: 0.75rem; margin-top: 2px; }

/* ============================================================
   TEAM CAROUSEL
   ============================================================ */
.team-carousel-wrap { overflow: hidden; padding: 0.5rem 0; }
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.team-carousel-track {
  display: flex; gap: 1.5rem;
  animation: scrollRight 35s linear infinite;
  width: max-content;
}
.team-carousel-track:hover { animation-play-state: paused; }
.team-card {
  flex-shrink: 0; min-width: 220px;
  background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  text-align: center; transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card img { width: 100%; height: 200px; object-fit: cover; }
.team-card-body { padding: 1rem; }
.team-dept { font-size: 0.7rem; font-weight: 700; color: hsl(42,85%,40%); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.team-name { font-weight: 900; font-size: 0.95rem; color: hsl(120,20%,15%); }
.team-role { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.product-card:hover img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; }
.product-card-title { font-weight: 900; font-size: 1.05rem; color: hsl(120,20%,15%); margin-bottom: 0.5rem; }
.product-card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.product-features { margin-bottom: 1.25rem; }
.product-features li {
  font-size: 0.8rem; color: var(--fg);
  padding: 0.2rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.product-features li::before { content: "✓"; color: var(--primary); font-weight: 700; }
.product-card-actions { display: flex; gap: 0.5rem; }
.product-card-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 0.6rem 0.75rem; }

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  background: #fff; border-radius: 12px;
  padding: 2rem; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.75rem; }
.blog-card-title { font-weight: 900; font-size: 0.95rem; color: hsl(120,20%,15%); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { font-weight: 700; font-size: 0.875rem; color: var(--primary); }
.blog-read-more:hover { color: var(--primary-dk); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff; border-radius: 12px;
  padding: 2rem; box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute;
  top: 1rem; left: 1.5rem;
  font-size: 5rem; line-height: 1;
  color: hsl(120,45%,28%,0.1);
  font-family: Georgia, serif;
}
.stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 1rem; margin-top: 1rem; }
.testimonial-text { font-size: 0.875rem; color: hsl(0,0%,40%); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.875rem; color: hsl(120,20%,15%); }
.testimonial-farm { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-section { padding: 4rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-num { font-size: 3rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block; padding: 0.2rem 0.7rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 600;
}
.badge-green { background: hsl(120,45%,28%,0.12); color: hsl(120,45%,25%); }
.badge-gold { background: hsl(42,85%,48%,0.15); color: hsl(42,85%,30%); }
.badge-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.badge-solid-green { background: var(--primary); color: #fff; }

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, hsl(120,40%,18%) 0%, hsl(120,35%,25%) 50%, hsl(42,85%,40%) 100%);
  padding: 8rem 0 4rem; color: #fff;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header-inner { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-top: 1.5rem; }
.breadcrumbs a { color: rgba(255,255,255,0.65); }
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }
.breadcrumbs .current { color: var(--secondary); }

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.video-thumb {
  position: relative; cursor: pointer;
  height: 200px; overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.video-thumb:hover img { transform: scale(1.05); }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-thumb:hover .video-overlay { background: rgba(0,0,0,0.55); }
.play-btn {
  width: 56px; height: 56px;
  background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #111; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.video-duration {
  position: absolute; bottom: 0.5rem; right: 0.75rem;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 0.75rem; padding: 0.15rem 0.5rem; border-radius: 4px;
}
.yt-badge {
  position: absolute; bottom: 0.5rem; left: 0.75rem;
  background: #c00; color: #fff;
  font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 700;
}
.video-caption { background: hsl(120,35%,20%); padding: 0.75rem 1rem; }
.video-caption p { color: #fff; font-size: 0.875rem; font-weight: 600; }
.video-card iframe { width: 100%; height: 200px; border: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; color: var(--fg); }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color 0.2s; background: #fff; color: var(--fg);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { display: flex; gap: 0.75rem; }

/* ============================================================
   MAP
   ============================================================ */
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: hsl(120,20%,10%); color: rgba(255,255,255,0.8); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.6); }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.footer-logo-mark { width: 44px; height: 44px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-icon { font-size: 1.1rem; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.footer-social a:hover { background: var(--secondary); color: #111; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ============================================================
   DISCOUNT POPUP
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; animation: fadeIn 0.3s ease;
}
.popup-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-box {
  background: #fff; border-radius: 16px;
  overflow: hidden; max-width: 520px; width: 100%;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.popup-header { background: var(--primary); padding: 2rem; text-align: center; position: relative; }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem; line-height: 1;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(255,255,255,0.3); }
.popup-badge {
  background: var(--secondary); color: #111;
  font-weight: 900; font-size: 0.8rem;
  padding: 0.25rem 1rem; border-radius: 999px; margin-bottom: 1rem;
  display: inline-block;
}
.popup-pct { font-size: 5rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.popup-off { font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.popup-body { padding: 1.5rem 2rem 2rem; }
.popup-code {
  background: hsl(40,30%,95%); border: 2px dashed var(--secondary);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  text-align: center; font-family: monospace;
  font-size: 1.5rem; font-weight: 900; color: var(--primary);
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.popup-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.25rem; }
.popup-product {
  background: hsl(120,20%,97%); border-radius: 8px;
  padding: 0.75rem 0.5rem; text-align: center; font-size: 0.7rem;
}
.popup-product-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.popup-product-name { font-weight: 700; font-size: 0.7rem; color: hsl(120,20%,20%); }

/* ============================================================
   CEO FEATURE
   ============================================================ */
.ceo-photo { position: relative; }
.ceo-photo img { width: 100%; height: 560px; object-fit: cover; border-radius: 16px; }
.ceo-photo-overlay {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(to top, rgba(10,50,10,0.8) 0%, transparent 50%);
}
.ceo-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.ceo-stat {
  position: absolute; right: -1rem;
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 1rem 1.25rem;
  text-align: center; min-width: 110px;
}
.ceo-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.ceo-stat-label { font-size: 0.7rem; color: var(--muted); }
.ceo-stat-gold { background: var(--secondary); }
.ceo-stat-gold .ceo-stat-num,
.ceo-stat-gold .ceo-stat-label { color: #111; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.about-feat {
  display: flex; gap: 0.75rem;
  background: hsl(120,30%,96%); padding: 0.75rem; border-radius: 8px;
}
.about-feat-icon { font-size: 1.5rem; }
.about-feat-title { font-weight: 700; font-size: 0.85rem; color: hsl(120,20%,15%); }
.about-feat-sub { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   CEO FEATURED TEAM CARD
   ============================================================ */
.ceo-team-card {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; max-width: 640px; margin: 0 auto 3rem;
}
.ceo-team-card img { width: 200px; flex-shrink: 0; object-fit: cover; }
.ceo-team-body { padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   INSURANCE COVERAGE CARD
   ============================================================ */
.coverage-card {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-sm); padding: 1.5rem;
  position: relative;
}
.coverage-card.popular { border: 2px solid var(--primary); }
.coverage-popular-badge {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.coverage-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.coverage-carrier { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.25rem; }
.coverage-name { font-weight: 900; font-size: 1.05rem; color: hsl(120,20%,15%); margin-bottom: 0.75rem; }
.coverage-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.coverage-features li { font-size: 0.75rem; color: var(--fg); margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.4rem; }
.coverage-features li::before { content: "✓"; color: var(--primary); font-weight: 700; }

/* ============================================================
   QUOTE FORM STEPS
   ============================================================ */
.quote-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.quote-progress { background: hsl(120,30%,96%); padding: 1.5rem 2rem 1rem; }
.quote-steps { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900;
  background: #e0e0e0; color: #888;
  transition: all 0.3s;
}
.step-dot.active, .step-dot.done { background: var(--primary); color: #fff; }
.step-line { height: 2px; width: 3rem; background: #e0e0e0; transition: background 0.3s; }
.step-line.done { background: var(--primary); }
.quote-body { padding: 2rem; }
.quote-step { display: none; }
.quote-step.active { display: block; }

/* ============================================================
   MISC HELPERS
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.check-list li { display: flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.9rem; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.icon-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.4rem 0; font-size: 0.9rem; }
.cta-band { background: var(--secondary); padding: 4rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: hsl(0,0%,12%); margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; color: hsl(0,0%,25%); margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .header-right { display: none; }
  .mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-team-card { flex-direction: column; }
  .ceo-team-card img { width: 100%; height: 240px; }
  .hero-title { font-size: 2.4rem; }
  .section { padding: 3.5rem 0; }
  .about-features { grid-template-columns: 1fr; }
  .about-feat-row { grid-template-columns: 1fr !important; }
  .ceo-photo img { height: 380px; }
  .ceo-stat { right: 0.5rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn { font-size: 0.875rem; padding: 0.65rem 1.25rem; }
  .popup-products { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
