/* ============================================
   LOST KEY RESCUE LLC - Main Stylesheet
   Ocean Springs, MS | Gulf Coast Locksmith
   ============================================ */

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --navy: #1a2744;
  --navy-dark: #0d1b33;
  --navy-light: #263555;
  --gold: #f39c12;
  --gold-light: #f5b942;
  --dark: #1c1c1c;
  --gray: #222222;
  --light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--gold-light); }
.topbar-phone {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold) !important;
  letter-spacing: 0.5px;
}
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-mobile { display: none; }
.topbar .badge-247 {
  background: var(--red);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  padding: 8px 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  overflow: visible;
}
.logo img {
  height: 150px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}
/* Footer logo */
.footer-brand > a {
  display: block !important;
  text-align: center;
  margin-bottom: 16px;
  margin-top: -40px;
}
.footer-brand .logo img,
.footer-brand img {
  height: auto !important;
  width: 100% !important;
  display: block !important;
  object-fit: contain;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
/* Legacy text logo (kept for footer fallback) */
.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: space-evenly; }
.nav a {
  padding: 8px 12px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}
.nav a:hover, .nav a.active { color: var(--red); background: rgba(192,57,43,0.08); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  display: none;
  z-index: 100;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--light); color: var(--red); }

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO / LANDING
   ============================================ */
/* ── Hero animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
  50%      { box-shadow: 0 0 28px 4px rgba(245,166,35,0.18); }
}
/* subtleShift removed — hero now uses logo background */

.hero {
  background-color: white;
  background-image:
    linear-gradient(rgba(8,15,26,0.72), rgba(8,15,26,0.74)),
    radial-gradient(circle at center, rgba(245,166,35,0.06) 0%, transparent 60%),
    url('../images/LOGO Image-1.png');
  background-size: cover, cover, 76% auto;
  background-position: center, center, center 8%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
/* Subtle dot texture over the logo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::before { content: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* ── Overline badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  animation: heroFadeUp 0.5s ease both;
}
.hero-badge i { font-size: 0.7rem; }

/* ── Brand name block ── */
.hero-brand {
  margin-bottom: 6px;
  animation: heroFadeUp 0.5s 0.1s ease both;
}
.hero-brand-main {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.hero-brand-llc {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Gold separator rule ── */
.hero-rule {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(245,166,35,0.3));
  border-radius: 2px;
  margin: 18px 0 22px;
  animation: heroFadeUp 0.5s 0.2s ease both;
}

/* ── Headline ── */
.hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 18px;
  line-height: 1.25;
  font-weight: 800;
  animation: heroFadeUp 0.5s 0.25s ease both;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  opacity: 0.82;
  margin-bottom: 24px;
  line-height: 1.75;
  animation: heroFadeUp 0.5s 0.3s ease both;
}
.hero-cities {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 32px;
  animation: heroFadeUp 0.5s 0.35s ease both;
}
.hero-cities i { color: var(--gold); margin-right: 4px; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: heroFadeUp 0.5s 0.4s ease both;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.5s 0.45s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  opacity: 0.8;
  font-weight: 600;
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }

/* ── Quote card — dark premium ── */
.hero-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,166,35,0.25);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 36px 32px;
  color: white;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  animation: heroFadeUp 0.6s 0.2s ease both;
  animation: goldPulse 4s ease-in-out infinite;
}
.hero-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.hero-card > p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 22px; }
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form select,
.hero-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  appearance: none;
  background: rgba(255,255,255,0.07);
  color: white;
  transition: border-color 0.2s;
}
.hero-form select option { background: #0d1b2a; color: white; }
.hero-form input::placeholder { color: rgba(255,255,255,0.4); }
.hero-form select:focus,
.hero-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.hero-divider {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  position: relative;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.hero-divider::before { left: 0; }
.hero-divider::after  { right: 0; }

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 20px;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emergency-banner h3 { font-size: 1.2rem; margin: 0; }
.emergency-banner p { opacity: 0.9; font-size: 0.9rem; margin: 0; }
.emergency-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto 50px; font-size: 1rem; }
.text-center { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  background: var(--navy);
  color: white;
  border: none;
}
.service-card.featured::before { background: var(--gold); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.85); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(192,57,43,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
}
.service-list li i { color: var(--red); font-size: 0.7rem; }
.service-card.featured .service-list li i { color: var(--gold); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step-card { text-align: center; padding: 30px 20px; position: relative; }
.step-number {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; color: var(--navy); }
.step-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--gray); }

/* ============================================
   PRICING / STORE PREVIEW
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  border: 2px solid #f0f0f0;
  text-align: center;
  transition: var(--transition);
}
.pricing-card.popular {
  border-color: var(--red);
  position: relative;
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--navy); }
.pricing-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.pricing-card .desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.price-range { font-family: 'Montserrat', sans-serif; margin-bottom: 20px; }
.price-from { font-size: 0.8rem; color: var(--gray); display: block; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--red); }
.price-note { font-size: 0.75rem; color: var(--gray); }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f5f5;
}
.pricing-features li i { color: var(--gold); }

/* ============================================
   VEHICLE FINDER (STORE)
   ============================================ */
.vehicle-finder {
  background: var(--navy);
  color: white;
  padding: 60px 0;
}
.vehicle-finder .section-title { color: white; }
.vehicle-finder .section-label { color: var(--gold); }
.vehicle-finder-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.finder-grid select,
.finder-grid input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: white;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  appearance: none;
}
.finder-grid select option { background: var(--navy); color: white; }
.finder-grid select:focus,
.finder-grid input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}
.finder-grid select::placeholder,
.finder-grid input::placeholder { color: rgba(255,255,255,0.5); }
.finder-grid select option[value=""] { color: rgba(255,255,255,0.5); }

#key-results {
  margin-top: 30px;
  display: none;
}
.key-results-title {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.key-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.key-card {
  background: white;
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.key-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.key-card .key-icon { font-size: 2rem; margin-bottom: 10px; }
.key-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.key-card .key-price { font-size: 1.3rem; font-weight: 800; color: var(--red); font-family: 'Montserrat', sans-serif; margin-bottom: 12px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.review-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.reviews-carousel-wrapper { position: relative; max-width: 820px; margin: 0 auto; }

#reviewsCarousel {
  position: relative;
  min-height: 300px;
}

.cr-card {
  display: none;
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.cr-card.active {
  display: block;
  animation: crFadeIn 0.5s ease both;
}
@keyframes crFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cr-quote {
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 10px;
}
.cr-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.cr-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto 30px;
}
.cr-reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.cr-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.cr-info strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--navy); text-align: left; }
.cr-info span   { display: block; font-size: 0.8rem; color: var(--gray); text-align: left; }
.cr-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 3px;
}

/* controls row */
.cr-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.cr-btn {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.cr-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: scale(1.08);
}
#carouselDots { display: flex; gap: 8px; align-items: center; }
.cr-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.cr-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 640px) {
  .cr-card { padding: 32px 24px; }
  .cr-text { font-size: 0.95rem; }
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.area-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.area-card:hover, .area-card:active, .area-card.primary {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.area-card i { font-size: 1.8rem; color: var(--red); margin-bottom: 10px; }
.area-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.area-card p { font-size: 0.75rem; color: var(--gray); }

/* ============================================
   EMAIL CAPTURE / LEAD GEN
   ============================================ */
.lead-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f47 100%);
  color: white;
  padding: 70px 0;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead-badge {
  display: inline-block;
  background: rgba(243,156,18,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lead-section h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 16px; line-height: 1.3; color: white; }
.lead-section .lead-intro { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.lead-checklist { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 10px; }
.lead-checklist li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.lead-checklist li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.lead-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.lead-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 6px; }
.lead-card .lead-sub { color: var(--gray); font-size: 0.83rem; margin-bottom: 22px; }
.lead-card .form-group { margin-bottom: 14px; }
.lead-card input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.lead-card input:focus { outline: none; border-color: var(--red); }
.lead-privacy { font-size: 0.7rem; color: var(--gray); text-align: center; margin-top: 12px; margin-bottom: 0; }
/* Legacy — kept for any remaining references */
.lead-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.lead-form input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: var(--radius); border: none; font-size: 1rem; font-family: 'Open Sans', sans-serif; }
.lead-form input:focus { outline: 2px solid var(--gold); }
.lead-benefits { display: flex; justify-content: center; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.lead-benefits li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; opacity: 0.9; }
.lead-benefits li i { color: var(--gold); }

/* ============================================
   EDUCATION / BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image {
  height: 180px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.blog-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: white;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--light); }
.faq-question.active { background: var(--navy); color: white; }
.faq-question i { font-size: 0.8rem; flex-shrink: 0; transition: var(--transition); }
.faq-question.active i { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 20px 24px; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap p { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.contact-info-card h3 { margin-bottom: 24px; font-size: 1.2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { font-size: 1rem; font-weight: 600; color: white; }
.contact-info-text a:hover { color: var(--gold); }

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.booking-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 2px solid #f0f0f0;
}
.booking-step-tab {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: default;
  transition: var(--transition);
}
.booking-step-tab.active { color: var(--red); border-bottom-color: var(--red); }
.booking-step-tab.done { color: var(--navy); }

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.time-slot {
  padding: 10px 8px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover { border-color: var(--red); color: var(--red); }
.time-slot.selected { background: var(--red); color: white; border-color: var(--red); }
.time-slot.booked { background: #f5f5f5; color: #ccc; cursor: not-allowed; }

.booking-summary-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.booking-summary-card h4 { color: var(--navy); margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row span:first-child { color: var(--gray); }
.summary-row span:last-child { font-weight: 600; color: var(--dark); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.summary-total span:last-child { color: var(--red); font-size: 1.3rem; }

/* ============================================
   TRUST BADGES STRIP
   ============================================ */
.trust-strip {
  background: var(--light);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-badge i { font-size: 1.4rem; color: var(--red); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-header h1 span { color: var(--gold); }
.page-header p { opacity: 0.85; max-width: 600px; margin: 0 auto 20px; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.breadcrumb a { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: white; font-size: 1.1rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin: 16px 0 44px; text-align: center; }
.footer-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 10px; margin-top: 16px; justify-content: center; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover { background: var(--red); color: white; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { color: var(--red); font-size: 0.65rem; }
.footer-links a:hover { color: var(--gold); }

.footer-cities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-city i { color: var(--gold); font-size: 0.7rem; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   FLOATING EMERGENCY BUTTON
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 64px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-call-btn {
  background: var(--red);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  transition: var(--transition);
  animation: pulse-btn 2s infinite;
}
.floating-call-btn:hover { background: var(--red-dark); transform: scale(1.05); }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 30px rgba(192,57,43,0.8); }
}

.floating-book-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.floating-book-btn:hover { background: var(--gold-light); transform: scale(1.05); }

/* ============================================
   UTILITIES
   ============================================ */
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); color: white; }
.bg-dark { background: var(--dark); color: white; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none; }
.loading { text-align: center; color: rgba(255,255,255,0.6); padding: 20px; }
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 2000;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-phone {
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 500px; margin: 0 auto; }
  .hero-brand-main { font-size: 2.4rem; }
  .hero-rule { margin: 14px 0 18px; }
  .booking-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 50px 0; }
  .nav { display: none; }
  .header-cta .btn:not(.btn-red) { display: none; }
  .hamburger { display: flex; }
  /* Header: logo centered, hamburger pinned to right */
  .header .container {
    padding: 8px 30px;
    position: relative;
    justify-content: center;
  }
  .header .logo {
    position: static;
    transform: none;
    flex: none;
  }
  .header-cta { display: none; }
  .hamburger { position: absolute; right: 10px; top: 10px; transform: none; }
  .topbar .topbar-right { display: flex; }
  .topbar .container { justify-content: center; }
  .topbar .container > div:first-child { display: none; }
  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.4px;
    padding: 6px 12px;
    gap: 6px;
    margin-top: -18px;
  }
  .hero-trust { justify-content: center; }
  .gulf-coast-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .gulf-coast-grid .btn { display: block; text-align: center; }
  .lead-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-benefits { flex-direction: column; align-items: flex-start; gap: 12px; width: fit-content; margin: 24px auto 0; }
  .lead-benefits li { text-align: left; width: 100%; }
  .lead-form { text-align: center; }
  .lead-form .btn { margin: 0 auto; display: block; }
  .service-card .btn { display: block; text-align: center; }
  .btn-lg { white-space: normal; max-width: 260px; text-align: center; font-size: 0.875rem !important; padding: 10px 20px !important; }
  .hero-cities { text-align: center; }
  .area-card { border-color: var(--gold); }
  .service-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  .service-layout + div { text-align: center; }
  .service-layout + div .btn { font-size: 0.82rem; padding: 11px 18px; white-space: nowrap; display: inline-block; }
  .service-layout-btn { justify-content: center; }
  .service-layout-btn .btn { font-size: 0.82rem; padding: 11px 18px; white-space: nowrap; }
  .hero-btns { align-items: center; }
  .hero-btns .btn { font-size: 0.82rem; padding: 11px 16px; white-space: nowrap; width: auto !important; }
  .pricing-card {
    text-align: left;
    padding: 20px;
  }
  .pricing-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .price-range {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
  }
  .price-from { order: 1; font-size: 0.75rem; }
  .price-amount { order: 2; font-size: 1.8rem; }
  .price-note { order: 3; flex-basis: 100%; font-size: 0.72rem; }
  .hero { padding: 48px 0 40px; }
  .hero-brand-main { font-size: 2rem; }
  .finder-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-col { text-align: center; }
  .footer-links { width: fit-content; margin: 0 auto; }
  .footer-links a { text-align: left; }
  .footer-cities { width: fit-content; margin: 0 auto; }
  .footer-city { text-align: left; }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-banner .container { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .trust-strip .container { gap: 16px 24px; justify-content: center; }
  .trust-badge { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-card { padding: 24px; }
  .service-card { padding: 24px; }
  .contact-form-wrap, .booking-form-card { padding: 24px; }
  .booking-form-card .btn-row { flex-direction: column; }
  .booking-form-card .btn-row .btn { flex: none; width: 100%; }
  .floating-call { display: none; }
}

/* ============================================
   CALENDAR WIDGET
   ============================================ */
.calendar-widget {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.calendar-header {
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.calendar-header button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
  padding: 4px 8px;
}
.calendar-header button:hover { opacity: 1; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day-header {
  padding: 10px 4px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
}
.cal-day {
  padding: 10px 4px;
  text-align: center;
  font-size: 0.875rem;
  cursor: pointer;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not(.empty):not(.past) { background: rgba(192,57,43,0.1); color: var(--red); }
.cal-day.selected { background: var(--red); color: white; font-weight: 700; }
.cal-day.today { font-weight: 700; color: var(--red); }
.cal-day.past { opacity: 0.3; cursor: default; }
.cal-day.empty { cursor: default; }

/* Print styles */
@media print {
  .floating-call, .header, .topbar, .footer { display: none; }
}
