/* ========================================
   Family Renovations — style.css
   ======================================== */

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

:root {
  /* Brand Colors */
  --teal: #217367;
  --teal-dark: #19574e;
  --teal-light: #eef8f6;
  --teal-hover: #1a5f55;
  --white: #ffffff;
  --dark: #2d3436;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gold: #f0a500;

  /* Typography */
  --font-heading: 'Cabin', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --container-max: 1200px;
  --container-narrow: 900px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p + p { margin-top: var(--space-md); }

/* --- Skip to Content (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--teal);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus {
  top: var(--space-md);
  color: var(--white);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section Spacing --- */
.section {
  padding: var(--space-4xl) 0;
}
.section--teal {
  background: var(--teal);
  color: var(--white);
}
.section--teal h2,
.section--teal h3,
.section--teal h4 { color: var(--white); }

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

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}
.section--teal .section-label { color: rgba(255,255,255,0.7); }

.section-title {
  margin-bottom: var(--space-lg);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.6;
}
.section--teal .section-subtitle { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.header-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--teal); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}
.header-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--full { min-height: 600px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33,115,103,0.88) 0%, rgba(25,87,78,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: var(--space-3xl) 0;
}
.hero-content h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-xl);
}
.hero-btns {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Page-level hero (shorter) */
.hero--page {
  min-height: 280px;
  background: var(--teal);
}
.hero--page .hero-content {
  padding: var(--space-2xl) 0;
  max-width: 100%;
}
.hero--page h1 {
  font-size: 2.25rem;
}
.hero--page p {
  font-size: 1.05rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.3;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--teal);
}
.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ========================================
   CARDS
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: var(--space-lg) var(--space-xl);
}
.card-body h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}
.card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}
.card-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}
.card:hover .card-link::after {
  transform: translateX(4px);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.feature-item {
  text-align: center;
  padding: var(--space-xl);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.feature-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ========================================
   INSURANCE SECTION
   ======================================== */
.insurance-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.insurance-section img {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.insurance-content h2 {
  margin-bottom: var(--space-lg);
}
.insurance-content p {
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33,115,103,0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(33,115,103,0.2);
}
.gallery-item .gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-zoom {
  transform: translate(-50%, -50%) scale(1);
}
.gallery-zoom svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

/* Gallery Filter */
.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 100px;
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.review-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.review-date {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition-fast);
}
.area-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 2px 8px rgba(33,115,103,0.1);
}

/* Area cards for service-areas page */
.area-detail {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--gray-200);
}
.area-detail:last-child { border-bottom: none; }
.area-detail h2 {
  color: var(--teal);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}
.area-detail p {
  max-width: 780px;
  color: var(--gray-700);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: var(--space-3xl) 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}
.cta-banner .btn { margin: 0 var(--space-sm); }

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--teal); }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--gray-700);
  line-height: 1.7;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(33,115,103,0.12);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-card {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.contact-info-card h3 {
  margin-bottom: var(--space-lg);
  color: var(--teal-dark);
}
.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item a {
  color: var(--dark);
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--teal); }
.contact-info-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail img {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-text h2 {
  color: var(--teal);
  margin-bottom: var(--space-md);
}
.service-text p {
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}
.service-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}
.service-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-700);
}
.service-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-intro img {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid var(--teal);
}
.value-card h3 {
  margin-bottom: var(--space-sm);
}
.value-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-md);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: var(--space-sm);
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.footer-social a:hover {
  background: var(--teal);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-bottom {
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: var(--white); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .card-grid,
  .reviews-grid,
  .features-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-section,
  .service-detail,
  .about-intro,
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero--page h1 { font-size: 1.75rem; }
  .hero { min-height: 420px; }
  .hero--full { min-height: 480px; }
  .hero--page { min-height: 220px; }
  .section { padding: var(--space-2xl) 0; }
  .container { padding: 0 var(--space-md); }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-xl) var(--space-xl);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1rem;
  }
  .header-cta.desktop-only { display: none; }
  .hamburger { display: block; }

  .card-grid,
  .reviews-grid,
  .features-grid,
  .values-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .cta-banner .btn { display: block; margin: var(--space-sm) auto; max-width: 280px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
