/* =====================================================
   IBBA Website - Fresh Redesign
   Clean, modern design inspired by Orkin
   =====================================================
   
   IMAGE LOCATIONS - See IMAGE-GUIDE.md for full details
   
   1. Hero background: Set in HTML inline style
      - File: images/hero-background.jpg
      - Size: 1920x800px recommended
   
   2. Service cards: Replace emoji with <img> tags
      - Files: images/heat-treatment.jpg, k9-bella.jpg, etc.
      - Size: 600x400px recommended
   
   3. Logo: images/logo.png (already included)
   
   ===================================================== */

/* CSS Variables */
:root {
  --orange: #ff6702;
  --orange-dark: #E8850A;
  --orange-light: #FFF4E6;
  --black: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #4A4A4A;
  --gray-500: #6B6B6B;
  --gray-300: #D1D1D1;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --success: #22C55E;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.btn-dark:hover {
  background: var(--gray-900);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
}

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

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

.top-bar-right a {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
}

.top-bar-right a:hover {
  text-decoration: underline;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 180px;
  height: auto;
}

.nav {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap; /* Prevents text from wrapping to two lines */
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: none;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--orange);
}

/* Smaller button in header to save space */
.header-cta .btn-sm {
  padding: 8px 14px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 20px 100px; /* Extra bottom padding for CTA bar */
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-nav {
  list-style: none;
}

.mobile-menu-nav li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-nav li:last-child {
  border-bottom: none;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--black);
  transition: color var(--transition);
}

.mobile-menu-nav a:hover {
  color: var(--orange);
}

/* Arrow indicator for links */
.mobile-menu-nav a::after {
  content: '→';
  color: var(--gray-300);
  font-size: 1rem;
}

.mobile-menu-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* Phone number in mobile menu */
.mobile-menu-phone {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu-phone-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.mobile-menu-phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.mobile-menu-phone-number:hover {
  color: var(--orange);
}

/* =====================================================
   HERO (Background Image Style)
   ===================================================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  
  /* Background image - replace URL in HTML inline style */
  background-color: var(--gray-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Dark overlay so text is readable over any image */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  width: 100%;
}

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-phone-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-phone-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.hero-phone-number:hover {
  color: var(--orange);
}

/* Placeholder shown when no background image is set */
.hero-no-image {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--orange);
  padding: 24px 0;
}

.trust-bar-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-text {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
  padding: 60px 0;
}

.section-gray {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.0625rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

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

.service-image {
  height: 180px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

/* When you add a real image, it will fill the space nicely */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 10px;
}

/* =====================================================
   PROCESS
   ===================================================== */
.process-steps {
  display: grid;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.process-content p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--black);
  font-size: 0.9375rem;
}

.testimonial-source {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* =====================================================
   LOCATIONS
   ===================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.location-item:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.location-icon {
  font-size: 1.4rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.cta-phone:hover {
  text-decoration: underline;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-section {
  padding: 60px 0;
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-text {
  font-weight: 500;
  color: var(--black);
}

.contact-item-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

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

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

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

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

.footer-logo img {
  height: 40px;
  filter: brightness(1) invert(0);
}

.footer-description {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* =====================================================
   MOBILE CTA BAR
   ===================================================== */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 12px 16px;
  gap: 12px;
  z-index: 900;
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 14px 16px;
}

/* =====================================================
   RESPONSIVE - MOBILE ONLY
   ===================================================== */
@media (max-width: 639px) {
  .hero.hero-image {
    background-image: none !important;
  }
}

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (min-width: 640px) {
  .trust-bar-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-wrapper {
    padding: 40px 32px;
  }
}

/* =====================================================
   RESPONSIVE - DESKTOP
   ===================================================== */
/* =====================================================
   RESPONSIVE - DESKTOP (1100px+)
   Shows full nav only on wider screens
   ===================================================== */
@media (min-width: 1100px) {
  .section {
    padding: 80px 0;
  }
  
  .nav {
    display: block;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .header-phone {
    display: block;
  }
  
  .hero {
    min-height: 550px;
  }
  
  .hero-content {
    padding: 80px 0;
  }
  
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .mobile-cta-bar {
    display: none;
  }
}

/* Extra space for very wide screens */
@media (min-width: 1280px) {
  .nav-link {
    padding: 10px 14px;
    font-size: 0.9375rem;
  }
  
  .nav-menu {
    gap: 6px;
  }
  
  .logo img {
    width: 250px;
  }
}

/* =====================================================
   PAGE HERO (for subpages)
   ===================================================== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--gray-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 650px;
}

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

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================================================
   SPLIT SECTION (Orkin-style: image left, text right)
   ===================================================== */
.split-section {
  display: grid;
  min-height: 500px;
}

.split-image {
  background-color: var(--gray-200);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}

.split-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.split-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.split-content p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.split-content p:last-of-type {
  margin-bottom: 0;
}

/* Stats row inside split section */
.split-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

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

.split-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.split-stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Desktop: side by side */
@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
  }
  
  .split-image {
    min-height: auto;
  }
  
  .split-content {
    padding: 60px 50px;
  }
}

@media (min-width: 1024px) {
  .split-content {
    padding: 80px 70px;
  }
}

/* =====================================================
   CONTENT GRID (generic two-column, kept for other uses)
   ===================================================== */
.content-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

/* Two columns on larger screens */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* On mobile, image shows above text */
.content-image {
  order: -1;
}

.content-text h2 {
  margin-bottom: 16px;
}

.content-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Image Placeholder */
.image-placeholder {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-300);
}

.image-placeholder-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.image-placeholder-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* When you add a real image */
.content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

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

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* =====================================================
   CONTENT BOX
   ===================================================== */
.content-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.content-box p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   COMPARISON GRID
   ===================================================== */
.comparison-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-100);
}

.comparison-good {
  border-color: var(--orange);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-icon {
  font-size: 1.75rem;
}

.comparison-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-700);
}

.comparison-list .check {
  color: var(--success);
  font-weight: 700;
}

.comparison-list .x {
  color: #DC2626;
  font-weight: 700;
}

/* =====================================================
   USE CASES GRID
   ===================================================== */
.use-cases-grid {
  display: grid;
  gap: 20px;
}

.use-case {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.use-case-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.use-case h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.use-case p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* =====================================================
   RESPONSIVE - SUBPAGE COMPONENTS
   ===================================================== */
@media (min-width: 640px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .page-hero {
    min-height: 450px;
  }
}

/* =====================================================
   NAV DROPDOWN
   ===================================================== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-dropdown::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  margin-left: 2px;
  flex-shrink: 0;
}

.nav-item:hover .nav-link-dropdown::after {
  transform: rotate(-135deg) translateY(2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-100);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.dropdown-item.active {
  color: var(--orange);
}

/* Mobile menu sub-items */
.mobile-menu-sub > a {
  padding-left: 28px;
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.mobile-menu-sub > a::before {
  content: '↳ ';
  color: var(--orange);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* Utility: Hide on mobile */
.hide-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: block;
  }
  
  .hide-desktop {
    display: none;
  }
}

/* =====================================================
   ICONS
   ===================================================== */
.featureIconSvg{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(243,106,28,.12);
  border:1px solid rgba(243,106,28,.25);
  color:var(--orange); /* SVG stroke uses currentColor */
}

.featureIconSvg svg{
  width:22px;
  height:22px;
  display:block;
}

/* =====================================================
 CITIES
 ===================================================== */
/* City hero variants */
 .cityHero__bg{
   /* Replace with a Louisville-specific photo later */
   background:
     radial-gradient(800px 500px at 25% 10%, rgba(243,106,28,.28), transparent 55%),
     linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.70)),
     linear-gradient(135deg, #2b2f35, #111827);
 }
 .cityHero__overlay{
   background:linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.24) 55%, rgba(0,0,0,.12));
 }
 .cityMedia{
   /* Louisville image placeholder */
   background:
     radial-gradient(500px 280px at 30% 30%, rgba(243,106,28,.16), transparent 58%),
     linear-gradient(135deg, #e5e7eb, #cbd5e1);
 }
 
 /* SVG icon wrapper (if not already added) */
 .featureIconSvg{
   width:38px;
   height:38px;
   border-radius:12px;
   display:flex;
   align-items:center;
   justify-content:center;
   background:rgba(243,106,28,.12);
   border:1px solid rgba(243,106,28,.25);
   color:var(--orange);
   margin-bottom:10px;
 }
 .featureIconSvg svg{width:22px;height:22px;display:block}
 
 /* Optional: keep the location page at 6 cards cleanly */
 .features--six{
   grid-template-columns:repeat(2, minmax(0,1fr));
 }
 @media (min-width: 860px){
   .features--six{grid-template-columns:repeat(3, minmax(0,1fr));}
 }
 
 /* 3-up promo grid on desktop */
 .promoGrid--three{
   display:grid;
   gap:16px;
 }
 @media (min-width: 860px){
   .promoGrid--three{grid-template-columns:repeat(3, minmax(0,1fr));}
 }
 
 /* FAQ */
 .faqGrid{
   display:grid;
   gap:10px;
 }
 .faqItem{
   border:1px solid var(--line);
   border-radius:16px;
   background:#fff;
   box-shadow:0 10px 22px rgba(0,0,0,.06);
   padding:0;
   overflow:hidden;
 }
 .faqItem summary{
   cursor:pointer;
   list-style:none;
   padding:14px 14px;
   font-weight:900;
 }
 .faqItem summary::-webkit-details-marker{display:none}
 .faqItem[open] summary{
   border-bottom:1px solid var(--line);
   background:#f8fafc;
 }
 .faqItem > div{
   padding:12px 14px 14px 14px;
 }
