/* 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;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
}

/* Serif Title Font */
.serif-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
}

/* Header */
header {
  background: rgba(68, 158, 72, 0.95);
  color: white;
  padding: 1rem 0.5rem;
  position: relative;
  z-index: 100;
}

#top-section {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@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 hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 0.5rem 0;
}

@media (max-width: 480px) {
  header hr {
    margin: 0.25rem 0;
  }
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 1rem;
  flex-wrap: nowrap;
}

header img {
  height: 7rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  header img {
    height: 5rem;
  }
  
  .header-flex {
    padding: 0 0.5rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .header-flex {
    padding: 0 0.4rem;
    gap: 0.3rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 480px) {
  header img {
    height: 4rem;
  }
  
  .header-flex {
    padding: 0 0.25rem;
    gap: 0.2rem;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  flex-wrap: nowrap;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: #e0e0e0;
}

@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: nowrap;
  }
  
  nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  nav {
    gap: 0.6rem;
    margin-left: 0.5rem;
  }
  
  nav a {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  nav {
    gap: 0.5rem;
    margin-left: 0.3rem;
    flex-wrap: nowrap;
  }
  
  nav a {
    font-size: 0.7rem;
    font-weight: 500;
  }
}

.icon-small {
  width: 20px;
  height: 20px;
}

/* Sticky Conversion Bar */
.sticky-conversion-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(68, 158, 72, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.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;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-bar-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero Section */
#home {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}

#home > div {
  position: relative;
  z-index: 2;
}

#home h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}

#home p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cta-button {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: #5ab85a;
  transform: translateY(-2px);
}

/* Main Container */
.main-content-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  padding: 0 0 48px 0;
}

@media (max-width: 1200px) {
  .main-content-container {
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}

main {
  max-width: 1100px;
  margin: -60px auto 0 auto;
  background: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  padding: 40px 24px 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;
}

/* 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;
}

/* 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: #999;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-bar-logo:hover {
  opacity: 1;
}

/* Gallery Section - Asymmetrical Layout */
.gallery-section {
  padding: 64px 0 80px 0;
  background: var(--light-bg);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.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);
  transition: all 0.6s ease;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1.5rem 1rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
}

/* Gallery Caption Below Image */
.gallery-caption {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 107, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

/* 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;
  transition: all 0.3s ease;
  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-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px) scale(1.03);
}

.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;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(26, 61, 24, 0.2);
  transform: scale(1.1);
}

.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;
  transition: fill 0.3s ease;
}

/* 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);
}

.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);
  transition: all 0.3s ease;
  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-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(8px);
}

.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;
}

/* 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);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.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;
  transition: text-decoration 0.2s;
}

.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;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background: #5ab85a;
  box-shadow: 0 8px 24px rgba(68, 158, 72, 0.3);
}

.mr-2 {
  margin-right: 0.5rem;
}

/* Magnetic Button */
.magnetic-btn {
  position: relative;
}

/* Mobile FAB - Floating Action Button */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #1a3d18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 61, 24, 0.4);
  z-index: 997;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(26, 61, 24, 0.5);
}

.mobile-fab svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .mobile-fab {
    display: flex;
  }
}

/* Footer */
.footer-main {
  background: rgba(68, 158, 72, 0.95);
  color: var(--text-light);
  margin-top: 0;
  padding: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Row 1: Trust & Authority Bar */
.footer-trust-bar {
  padding: 1.5rem 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

/* Row 2: Core Identity Row */
.footer-identity {
  padding: 3rem 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-business-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-phone a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-phone a:hover {
  opacity: 0.8;
}

/* Row 3: Cleanup Bar */
.footer-cleanup {
  padding: 2rem 24px;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.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;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallaxMove {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile-First Thumb Design */
@media (max-width: 768px) {
  #home h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .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: -30px auto 0 auto;
    padding: 20px 12px 0 12px;
  }
  
  .main-content-container {
    border-radius: 0;
    box-shadow: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    padding: 24px 12px;
  }
}

@media (max-width: 600px) {
  .main-content-container {
    padding: 0 0 8px 0;
  }
  
  .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: 5rem;
  }
  
  #top-section {
    font-size: 0.85rem;
  }
  
  #home p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .gallery-grid-asymmetrical {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .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: 4rem;
  }
  
  #top-section {
    font-size: 0.75rem;
  }
  
  #home h1 {
    font-size: 1.3rem;
  }
  
  #home p {
    font-size: 0.85rem;
  }
  
  .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 {
    height: 180px;
  }
  
  .footer-title {
    font-size: 1.5rem;
  }
  
  .footer-heading {
    font-size: 1rem;
  }
}


/* 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(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-areas-list li {
  list-style: none;
  text-align: center;
}
