/* Florida Window & Door - 2026 Perfection Design (Light Mode Only) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #449e48;
  --dark-green: #1a3d18;
  --light-bg: #ffffff;
  --light-grey-bg: #fafafa;
  --text-dark: #1a1a1a;
  --text-light: #e5e7eb;
  --border-light: #e5e7eb;
  --trust-bar-bg: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary-green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Serif Title Font */
.serif-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
}

/* Header */
header {
  background: var(--dark-green);
  color: white;
  padding: 4px 0.75rem 0;
  position: relative;
  z-index: 100;
}

#top-section {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.top-section-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-section-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.14);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
}

.top-section-phone:hover {
  background: rgba(255,255,255,0.26);
}

@media (max-width: 768px) {
  #top-section {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #top-section {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }
  
  header {
    padding: 0.75rem 0.25rem;
  }
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 1rem 0 1rem;
  gap: 1rem;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(255,255,255,0.16);
}

header img {
  height: 4.5rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  header img {
    height: 3.5rem;
    max-width: 160px;
  }
  
  .header-flex {
    padding: 4px 0.5rem 0 0.5rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .header-flex {
    padding: 4px 0.4rem 0 0.4rem;
    gap: 0.3rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 480px) {
  header img {
    height: 3rem;
    max-width: 130px;
  }
  
  .header-flex {
    padding: 4px 0.25rem 0 0.25rem;
    gap: 0.2rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

nav a:hover {
  color: #fff;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-green);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.nav-call:hover {
  background: #3a8a3e;
}

@media (max-width: 1024px) {
  nav {
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  nav {
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  nav {
    gap: 0.5rem;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  nav a {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .header-flex {
    justify-content: flex-start;
  }

  nav {
    flex: 1;
    gap: 0.25rem;
    margin-left: 0.5rem;
    width: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  nav > a:not(.nav-call) {
    flex: 0 0 auto;
    text-align: left;
  }
  
  nav a {
    font-size: 0.72rem;
    font-weight: 500;
  }

  /* iPhone SE — icon-only call button so everything fits on one line */
  .nav-call {
    padding: 0.4rem 0.55rem;
    font-size: 0;
    gap: 0;
    margin-left: auto;
  }

  body:not(.spanish-page) nav {
    position: relative;
    justify-content: center;
    padding-right: 42px;
  }

  body:not(.spanish-page) nav > a:not(.nav-call) {
    flex: 0 0 auto;
  }

  body:not(.spanish-page) nav .nav-call {
    position: absolute;
    right: 0;
    margin-left: 0;
  }

  .nav-call svg {
    width: 16px;
    height: 16px;
  }
}

.icon-small {
  width: 20px;
  height: 20px;
}

/* Sticky Conversion Bar */
.sticky-conversion-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-green);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  z-index: 999;
  transform: translateY(-100%);
}

.sticky-conversion-bar.visible {
  transform: translateY(0);
}

.sticky-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-bar-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.sticky-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-green);
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
#home {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url('hero_alt.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,32,15,0.78) 0%, rgba(16,32,15,0.55) 45%, rgba(16,32,15,0.72) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(68, 158, 72, 0.22);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

#home h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.94);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.estimate-callout {
  margin: 1.15rem auto 0;
  max-width: 620px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}

.estimate-callout strong {
  color: #fff;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
}

.cta-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 8px 24px rgba(68, 158, 72, 0.35);
}

.cta-primary:hover {
  background: #3a8a3e;
}

.cta-secondary {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.24);
}

/* Main Container */
.main-content-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--light-bg);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 0 24px;
}

/* Sections */
.section-padding {
  padding: 64px 0 48px 0;
  position: relative;
}

@media (min-width: 1200px) {
  .section-padding {
    padding: 80px 0 64px 0;
  }
}

.bg-muted {
  background: var(--light-grey-bg);
}

.bg-background {
  background: var(--light-grey-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-padding {
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Kicker - Small capitalized text above headings */
.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--dark-green);
  text-align: center;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.kicker-light {
  color: rgba(255,255,255,0.6);
}

.title-light {
  color: #fff;
}

.subtitle-light {
  color: #b0b8c9;
}

/* About Section with Blueprint Background */
.about-section {
  position: relative;
  overflow: hidden;
}

.blueprint-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(0deg, transparent 24%, rgba(68, 158, 72, 0.05) 25%, rgba(68, 158, 72, 0.05) 26%, transparent 27%, transparent 74%, rgba(68, 158, 72, 0.05) 75%, rgba(68, 158, 72, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(68, 158, 72, 0.05) 25%, rgba(68, 158, 72, 0.05) 26%, transparent 27%, transparent 74%, rgba(68, 158, 72, 0.05) 75%, rgba(68, 158, 72, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-copy {
  text-align: center;
  color: #444;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Trust Bar - Brand Logos Section */
.trust-bar {
  background: var(--trust-bar-bg);
  padding: 2.5rem 1rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  margin-right: 1rem;
}

.trust-bar-logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

/* Gallery Section - Asymmetrical Layout */
.gallery-section {
  padding: 64px 0 80px 0;
  background: var(--light-bg);
  position: relative;
}

.gallery-grid-asymmetrical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* First row: 2 large items */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
  grid-column: span 2;
}

/* Second row: 4 regular items */
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .gallery-grid-asymmetrical {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid-asymmetrical {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 24px;
    max-width: 100%;
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: span 1;
  }
  
  .gallery-item {
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-grid-asymmetrical {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .gallery-item {
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-stage-note {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--dark-green);
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-stage-note span {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: #fff;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: white;
  padding: 2rem 1.25rem 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}



.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-green);
  border-radius: 1.25rem 1.25rem 0 0;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: rgba(26, 61, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.service-card p {
  color: #444;
  font-size: 1.05rem;
}

.icon {
  width: 36px;
  height: 36px;
  color: #1a3d18;
  stroke-width: 2.2;
}

/* Why Choose Us Section */
.whychooseus-section {
  background: var(--dark-green);
  color: var(--text-light);
  border-radius: 18px;
  margin: 48px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.repair-first-section {
  background: #eef5ed;
}

.repair-first-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 3rem;
}

.repair-first-content p {
  max-width: 700px;
  color: #3e4b3d;
  font-size: 1.08rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .repair-first-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.whychooseus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

@media (min-width: 768px) {
  .whychooseus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.whychooseus-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  align-items: flex-start;
  border: 1px solid rgba(68, 158, 72, 0.3);
  position: relative;
  padding-left: 3rem;
  overflow: hidden;
}

.whychooseus-card::after {
  content: attr(data-number);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(68, 158, 72, 0.08);
  z-index: 0;
  pointer-events: none;
}

.whychooseus-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-green);
  border-radius: 1.25rem 0 0 1.25rem;
  z-index: 1;
}

.whychooseus-card > * {
  position: relative;
  z-index: 2;
}

.whychooseus-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.whychooseus-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.whychooseus-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.whychooseus-cta {
  background: rgba(68, 158, 72, 0.15);
  border: 1px solid rgba(68, 158, 72, 0.3);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem auto 0 auto;
  max-width: 600px;
}

.whychooseus-cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.whychooseus-cta-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}



.review-card .stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card p {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.65;
  flex-grow: 1;
}

.review-card footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.review-name {
  font-weight: 700;
  color: var(--dark-green);
  font-size: 0.95rem;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background: #f0f0f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(68, 158, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.contact-card h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--primary-green);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-muted {
  color: #6b7280;
}

.contact-small {
  font-size: 0.95rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary-green);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.75rem 3rem;
  text-decoration: none;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.mr-2 {
  margin-right: 0.5rem;
}

/* How It Works / Process Steps */
.process-steps {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 1.5rem;
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Reviews CTA Link */
.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

.reviews-link {
  display: inline-block;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--primary-green);
  border-radius: 999px;
}

.reviews-link:hover {
  background: var(--primary-green);
  color: #fff;
}

/* Footer — clean two-tier layout */
.footer-main {
  background: var(--dark-green);
  color: var(--text-light);
  padding: 3rem 24px 2rem;
  text-align: center;
  border-top: 3px solid var(--primary-green);
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
}

.footer-business-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-phone:hover {
  opacity: 0.85;
}

.footer-hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-trust {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}




/* Mobile-First Thumb Design */
@media (max-width: 768px) {
  #home h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-inner {
    padding: 3rem 1.25rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* iPad Mini (768x1024) — two-column services, comfortable spacing */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .whychooseus-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
    margin-bottom: 2rem;
  }
  
  .sticky-bar-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .sticky-bar-text {
    font-size: 0.85rem;
  }
  
  .sticky-bar-btn {
    width: 100%;
    justify-content: center;
  }
  
  main {
    margin: 0 auto;
    padding: 0 12px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
}

@media (max-width: 600px) {
  .section-padding {
    padding: 32px 0 16px 0;
  }
  
  .whychooseus-section {
    margin: 16px 0;
  }
  
  .service-card,
  .whychooseus-card {
    padding: 1.2rem 0.5rem;
  }
  
  .footer-grid {
    gap: 1rem;
  }
  
  #home h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  header img {
    height: 3.5rem;
    max-width: 160px;
  }
  
  #top-section {
    font-size: 0.85rem;
  }
  
  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
    justify-content: center;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .gallery-grid-asymmetrical {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  
  .contact-card {
    padding: 1rem;
  }
  
  .contact-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  header {
    padding: 0.75rem 0.25rem;
  }
  
  header img {
    height: 3rem;
    max-width: 130px;
  }
  
  #top-section {
    font-size: 0.75rem;
  }
  
  #home h1 {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  .service-card {
    padding: 1rem 0.75rem;
  }
  
  .whychooseus-card {
    padding: 1.5rem 1rem;
  }
  
  .gallery-grid-asymmetrical {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  /* iPhone SE (375x667) — tightest mobile constraints */
  .hero-inner {
    padding: 2.5rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cta-button {
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-rating {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.92rem;
  }

  @media (max-width: 480px) {
    .spanish-page .header-flex {
      gap: 0.15rem;
      flex-wrap: nowrap;
    }

    .spanish-page header img {
      width: 36px;
      height: 36px;
    }

    .spanish-page nav {
      gap: 0.25rem;
      flex-wrap: nowrap;
    }

    .spanish-page nav a {
      font-size: 0.68rem;
    }

    .spanish-page .nav-call {
      padding: 0.35rem 0.45rem;
      font-size: 0;
      gap: 0;
    }
  }

  .footer-main {
    padding: 2.5rem 16px 1.75rem;
  }

  .footer-business-name {
    font-size: 1.15rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-phone {
    font-size: 1.2rem;
  }

  .footer-hours {
    font-size: 0.82rem;
  }

  .footer-trust {
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .spanish-page nav {
    gap: 0.1rem;
  }

  .spanish-page nav a {
    font-size: 0.52rem;
  }

  .spanish-page .nav-call {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}


/* Service Areas Section - Outside Footer */
.service-areas-section {
  background: var(--light-grey-bg);
  padding: 64px 0 48px 0;
  position: relative;
}

@media (min-width: 1200px) {
  .service-areas-section {
    padding: 80px 0 64px 0;
  }
}

.service-areas-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .service-areas-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .service-areas-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .service-areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    font-size: 0.9rem;
  }
}

.service-areas-list li {
  list-style: none;
  text-align: center;
}

/* Hero Rating Proof */
.hero-rating {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

.hero-rating .stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Hero Socials */
.hero-socials {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.hero-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-social-link svg {
  width: 18px;
  height: 18px;
}

/* About Highlights */
.about-highlights {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--dark-green);
  font-size: 1rem;
}

.highlight-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #444;
  line-height: 1.65;
}
