/* ============================================================
   WIMBERLEY POOLS — Main Stylesheet
   wimberleypools.com
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue:        #1B3E6B;
  --blue-dark:   #122B52;
  --blue-light:  #2875BE;
  --sky-blue:    #4EC3E3;
  --orange:      #F5B731;
  --orange-dark: #D99E1A;
  --white:       #FFFFFF;
  --offwhite:    #F5F7FA;
  --gray-light:  #E8ECF0;
  --gray:        #9AA4B0;
  --gray-dark:   #4A5568;
  --text:        #1A1A2E;
  --shadow:      0 4px 20px rgba(27,62,107,0.14);
  --shadow-card: 0 2px 12px rgba(27,62,107,0.10);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
  --max-w:       1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,43,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,121,43,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,79,139,0.10);
  overflow: visible;
}
.header-top {
  background: var(--blue);
  padding: 0.4rem 0;
}
.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}
.header-top a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-top svg { width: 14px; height: 14px; }

.header-main {
  padding: 0.25rem 0;
  overflow: visible;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: visible;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 95px;
  width: auto;
  display: block;
}
/* Header logo — negative flex margins keep nav bar compact while logo overhangs */
.header-main .site-logo {
  align-self: flex-start;
  overflow: visible;
  flex-shrink: 0;
  margin-top: -8px;
  margin-bottom: -62px;
}
.header-main .site-logo .logo-img {
  height: 134px;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 8px 24px rgba(27, 62, 107, 0.28));
  transition: transform var(--transition), filter var(--transition);
}
.header-main .site-logo:hover .logo-img {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 28px rgba(27, 62, 107, 0.38));
}
/* Footer logo — no overhang */
.footer-brand .logo-img {
  height: 80px;
  position: static;
  filter: none;
}
/* Keep legacy classes harmless */
.logo-icon { display: none; }
.logo-text strong { display: none; }
.logo-text span { display: none; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav a {
  padding: 0.5rem 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--blue); background: rgba(13,79,139,0.07); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 6px;
  color: var(--text);
}
.nav-dropdown-menu a:hover { background: var(--offwhite); color: var(--blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}
.header-phone svg { width: 18px; height: 18px; }
.header-phone:hover { color: var(--orange); }

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--gray-dark);
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-links { margin-top: 1rem; }
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-phone {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1a6fc4 100%);
  color: var(--white);
  overflow: hidden;
  padding: calc(5rem + 66px) 0 4rem;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--sky-blue); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.hero-trust-item svg { width: 16px; height: 16px; color: #FCD34D; }
.hero-stars { color: #FCD34D; font-size: 1rem; letter-spacing: 1px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  color: var(--text);
}
.hero-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.hero-card p { font-size: 0.88rem; color: var(--gray-dark); margin-bottom: 1.25rem; }

.quote-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; justify-content: center; padding: 0.95rem; font-size: 1rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--blue-dark);
  padding: 0.9rem 0;
  color: var(--white);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-bar-item svg { width: 16px; height: 16px; color: var(--sky-blue); }
.trust-bar-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--offwhite); }
.section-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}
.section-blue .section-title { color: var(--white); }
.section-blue .section-title span { color: var(--sky-blue); }
.section-blue .section-sub { color: rgba(255,255,255,0.8); }

/* ============================================================
   DIFFERENTIATORS / PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--orange);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(13,79,139,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.pillar-icon svg { width: 26px; height: 26px; color: var(--blue); }
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pillar-card p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-card-img-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.service-card-img-icon svg { width: 32px; height: 32px; fill: white; }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  background: rgba(244,121,43,0.12);
  color: var(--orange-dark);
}
.service-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { color: var(--orange); gap: 0.6rem; }
.service-card-link svg { width: 16px; height: 16px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(13,79,139,0.3);
}
.step-item:nth-child(2) .step-number { background: var(--orange); }
.step-item:nth-child(3) .step-number { background: var(--blue-light); }
.step-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.step-item p { font-size: 0.88rem; color: var(--gray-dark); max-width: 220px; margin-inline: auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--orange);
}
.testimonial-stars { color: #F59E0B; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; font-size: 1.3rem; color: var(--orange); font-style: normal; line-height: 0; vertical-align: -0.25em; margin-right: 0.1rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--gray);
}
.testimonial-source {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.15rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-dark);
}
.google-badge svg { width: 14px; height: 14px; }

/* ============================================================
   VACATION RENTAL CTA
   ============================================================ */
.vacation-banner {
  background: linear-gradient(135deg, #0f3d6e 0%, var(--blue) 50%, #1e5fa8 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vacation-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.vacation-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.vacation-banner-content { position: relative; z-index: 1; color: white; }
.vacation-banner-eyebrow {
  display: inline-block;
  background: rgba(244,121,43,0.3);
  color: #FCA879;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.vacation-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.vacation-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.85); max-width: 520px; }
.vacation-banner-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 400px;
}
.about-img-main {
  width: 80%;
  height: 340px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-lg);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  width: 55%;
  height: 180px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1.5rem;
}
.about-img-accent-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}
.about-img-accent-text span { font-size: 0.88rem; font-weight: 500; }
.about-content .section-title { text-align: left; }
.about-content .section-sub { text-align: left; margin-inline: 0; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray-dark);
}
.about-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.area-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.area-card:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.area-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.area-card span { font-size: 0.76rem; color: var(--gray); }
.area-card:hover span { color: rgba(255,255,255,0.7); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: white;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.76rem;
  color: var(--gray);
  margin-bottom: 0.6rem;
}
.blog-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  flex: 1;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}
.blog-read-more:hover { color: var(--orange); gap: 0.6rem; }
.blog-read-more svg { width: 14px; height: 14px; }

/* ============================================================
   BLOG / ARTICLE PAGES
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray);
}
.article-category-badge {
  background: var(--orange);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.article-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.article-content p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--text); }
.article-content ul,
.article-content ol { margin: 0 0 1.25rem 1.5rem; line-height: 1.8; }
.article-content li { margin-bottom: 0.35rem; }
.article-content strong { color: var(--text); font-weight: 700; }
.article-content .callout {
  background: var(--offwhite);
  border-left: 4px solid var(--sky-blue);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.article-sidebar {
  position: sticky;
  top: calc(80px + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-cta {
  background: var(--blue);
  color: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}
.sidebar-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: white;
}
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-related {
  background: var(--offwhite);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}
.sidebar-related h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 1rem;
}
.sidebar-related-item {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
  transition: color var(--transition);
}
.sidebar-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-item:hover { color: var(--orange); }
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2rem;
}
.cta-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--blue);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a2d52;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }
.footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
/* Form feedback states */
.form-success {
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border-radius: var(--radius-lg);
  border: 2px solid #86efac;
  display: none;
}
.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: #166534; }
.form-error {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #991b1b;
  display: none;
  margin-bottom: 0.75rem;
}
.footer-desc {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  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;
  transition: background var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--orange);
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: white; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}
.footer-badge svg { width: 14px; height: 14px; color: #4ADE80; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: white; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: calc(4rem + 66px) 0 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-alt::after { background: var(--offwhite); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.content-grid-reverse { grid-template-columns: 1fr 2fr; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--orange);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.sidebar-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
}
.sidebar-card .form-group { margin-bottom: 0.65rem; }
.sidebar-card .form-submit { width: 100%; justify-content: center; }

.service-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-areas-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 0.4rem 0;
  transition: color var(--transition);
}
.service-areas-list a::before {
  content: '→';
  color: var(--orange);
}
.service-areas-list a:hover { color: var(--blue); }

/* Prose content */
.prose h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.prose h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 1.5rem 0 0.5rem;
}
.prose p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.prose ul {
  list-style: none;
  margin-bottom: 1rem;
}
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray-dark);
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}
.prose ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   SPECIAL COMPONENTS
   ============================================================ */
/* Report Feature (Hill Country Report differentiator) */
.report-feature {
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(13,79,139,0.15);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.report-feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.report-feature p { font-size: 0.9rem; color: var(--gray-dark); }
.report-badge {
  background: var(--blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  width: 140px;
}
.report-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  color: var(--sky-blue);
}
.report-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--orange);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pricing-from { font-size: 0.8rem; color: var(--gray); margin-right: 0.15rem; }
.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.pricing-period { font-size: 0.85rem; color: var(--gray); }
.pricing-desc { font-size: 0.85rem; color: var(--gray-dark); }
.pricing-features { flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; justify-content: center; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: white; }
.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.contact-detail-text a { color: rgba(255,255,255,0.9); }
.contact-detail-text a:hover { color: white; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.contact-form-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.contact-form-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

/* Map embed placeholder */
.map-placeholder {
  height: 280px;
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .about-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .nav-toggle-btn { display: flex; }
  .header-phone { display: none; }
  .header-top .header-top-item:not(.header-phone-mobile) { display: none; }

  /* Reset logo overhang on mobile — compact header only */
  .header-main { padding: 0.5rem 0; }
  .header-main .site-logo { margin-top: 0; margin-bottom: 0; align-self: center; }
  .header-main .site-logo .logo-img { height: 52px; filter: none; }

  .hero { padding: 3rem 0 4rem; min-height: auto; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-ctas .btn-outline-white { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 280px; }
  .about-img-main { width: 85%; height: 240px; }
  .about-img-accent { width: 50%; height: 140px; }

  .vacation-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-grid::before { display: none; }
  .steps-grid { gap: 1.5rem; }

  .content-grid,
  .content-grid-reverse { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

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

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .report-feature { grid-template-columns: 1fr; }
  .report-badge { width: 100%; }

  .trust-bar-divider { display: none; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 0.75rem; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }

  .cta-section .cta-buttons { flex-direction: column; align-items: center; }

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
