/* ======================
   1. CSS RESET & BASE
   ====================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ======================
   2. CSS CUSTOM PROPERTIES
   ====================== */
:root {
  --teal:          #2bbfba;
  --teal-dark:     #1e8c87;
  --gold:          #f0bc1e;
  --gold-dark:     #c99b10;
  --dark:          #1a2e2e;
  --white:         #ffffff;
  --grey-light:    #d6f2f2;
  --text-dark:     #333333;
  --container-max: 1170px;
  --font-main:     'Inter', sans-serif;
}

/* ======================
   3. GLOBAL UTILITIES
   ====================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 10px auto 0;
}
.section-title.light {
  color: var(--white);
}
.section-title.light::after {
  background: var(--gold);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin: 0 0 50px;
}
.section-subtitle.light {
  color: rgba(255,255,255,0.75);
}

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  min-width: 260px;
}
/* Two-line buttons (Call Now style) */
.btn:has(.btn-line-2) {
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* Section CTA block */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Hero-style stacked CTA */
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.hero-btn {
  width: 260px;
  min-height: 60px;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
}
.btn-line-1 {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-line-2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Animate-up keyframes (hero content entrance) */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: slideUpFade 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ======================
   4. HEADER & NAV
   ====================== */
#site-header {
  position: relative;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Contact nav CTA button */
.nav-links a.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 8px 18px;
  margin-left: 8px;
  border-bottom: 2px solid transparent;
}
.nav-links a.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
  border-bottom-color: transparent;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  padding: 8px 12px; border-bottom: 2px solid transparent;
  transition: color 0.2s; white-space: nowrap; text-decoration: none;
}
.nav-dropdown-toggle:hover,
.nav-item.open .nav-dropdown-toggle { color: var(--teal); border-bottom-color: var(--teal); }
.nav-chevron { font-size: 0.65rem; transition: transform 0.2s; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--dark); min-width: 220px; border-top: 2px solid var(--teal);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 200;
  list-style: none; padding: 6px 0; margin: 0;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 9px 18px; color: rgba(255,255,255,0.85);
  font-size: 0.88rem; font-weight: 400; border-bottom: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover { background: rgba(43,191,186,0.12); color: var(--teal); }

/* Area location pages */
.area-story-section {
  position: relative;
  background: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/be512ad3-464f-4874-9308-c1547557c2fb/root/1776199527839_About-background-image.png') center/cover no-repeat;
  padding: 0;
}
.area-overlay { position: absolute; inset: 0; background: rgba(26,46,46,0.78); }
.area-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
}
.area-split-image { overflow: hidden; }
.area-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.area-split-box {
  background: rgba(255,255,255,0.06); border-left: 1px solid rgba(255,255,255,0.15);
  padding: 56px 48px; display: flex; flex-direction: column;
  justify-content: center; gap: 24px; color: var(--white);
}
.area-split-box h2 { font-size: 1.7rem; color: var(--white); line-height: 1.3; }
.area-split-box p { color: rgba(255,255,255,0.88); line-height: 1.75; font-size: 1rem; }

/* ======================
   5. HERO SECTION
   ====================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}

/* Slideshow layers */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

/* Teal-dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 46, 0.78);
  z-index: 2;
}

/* Hero text above overlay */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 80px 20px 60px;
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.2;
}
.hero-title-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Inner page hero (shorter) */
#hero.hero-inner {
  min-height: 50vh;
}

/* ======================
   6. CARDS GRID (SERVICES / VALUES)
   ====================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}
.card {
  background: var(--white);
  border: 1px solid #e8f4f4;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(43,191,186,0.12);
  border-color: var(--teal);
}
.card-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}
.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Service link cards */
.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 60px 28px 40px;
  border-bottom: 4px solid var(--teal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  color: var(--white);
}
.service-card .card-icon {
  color: var(--gold);
}
.service-card h3 {
  color: var(--white);
  font-size: 1.25rem;
}
.service-card p {
  color: rgba(255,255,255,0.75);
}
.service-card .card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.03em;
}
.service-card .card-link i {
  margin-left: 6px;
  transition: transform 0.2s;
}
.service-card:hover .card-link i {
  transform: translateX(4px);
}

/* ======================
   7. WHY CHOOSE US / FEATURE ROW
   ====================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 28px 16px;
}
.feature-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 14px;
}
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.feature-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ======================
   8. PROCESS STEPS
   ====================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ======================
   9. TIMELINE CALLOUT
   ====================== */
.timeline-callout {
  background: var(--dark);
  color: var(--white);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 20px;
}
.timeline-callout .timeline-icon {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.timeline-callout h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--gold);
}
.timeline-callout p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ======================
   10. FAQ
   ====================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto 20px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-question i {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 0.95rem;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* ======================
   11. CTA BAND
   ====================== */
#cta-section {
  background: var(--teal);
  padding: 70px 0;
  text-align: center;
}
#cta-section .section-title {
  color: var(--white);
}
#cta-section .section-title::after {
  background: var(--gold);
}
#cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ======================
   12. REVIEWS
   ====================== */
#reviews {
  background: var(--grey-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 4px solid var(--teal);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.8rem;
  color: #888;
  display: block;
}
.review-stars {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.reviews-widget {
  margin: 0 0 32px;
}

/* ======================
   13. GALLERY PREVIEW STRIP
   ====================== */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.gallery-preview-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ccc;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-preview-item:hover img {
  transform: scale(1.06);
}

/* ======================
   14. GALLERY PAGE (CAROUSEL + FILTER)
   ====================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: 2px solid #ccc;
  color: var(--text-dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Carousel */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-track-wrapper {
  overflow: hidden;
  flex: 1;
}
.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}
.gallery-item {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: #ccc;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.carousel-btn {
  background: var(--teal);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--teal-dark); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--teal); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next:hover {
  background: var(--teal);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ======================
   15. CONTACT PAGE
   ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item i {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.contact-info-item a {
  color: var(--teal);
  font-weight: 600;
}
.contact-info-item a:hover {
  color: var(--teal-dark);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 8px;
}
.hours-table td {
  padding: 5px 0;
  color: #555;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  padding-right: 24px;
}
.contact-form-area {
  background: var(--grey-light);
  padding: 36px 32px;
}
.contact-form-area h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}
.map-embed {
  margin-top: 60px;
}
.map-embed h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ======================
   16. BLOG PAGE
   ====================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 20px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e8f4f4;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover {
  box-shadow: 0 6px 24px rgba(43,191,186,0.12);
  border-color: var(--teal);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ccc;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.blog-card-body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.6;
}
.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more i {
  transition: transform 0.2s;
}
.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

/* ======================
   17. ABOUT PAGE
   ====================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.about-story-text p {
  font-size: 0.97rem;
  color: #555;
  margin: 0 0 14px;
  line-height: 1.7;
}
.about-story-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ccc;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
}
.veteran-badge i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ======================
   17b. ABOUT BACKGROUND
   ====================== */
.about-bg {
  position: relative;
  background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/be512ad3-464f-4874-9308-c1547557c2fb/root/1776199527839_About-background-image.png');
  background-size: cover;
  background-position: center;
}
.about-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 46, 0.78);
  z-index: 0;
}
.about-bg .container {
  position: relative;
  z-index: 1;
}
.about-bg .section-title {
  color: #fff;
}
.about-bg .about-story-text p {
  color: rgba(255, 255, 255, 0.88);
}

/* ======================
   17c. SECTION IMAGE BG
   ====================== */
.section-img-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.section-img-bg .section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 46, 0.78);
  z-index: 0;
}
.section-img-content {
  position: relative;
  z-index: 1;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 600px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.checklist li:last-child { border-bottom: none; }
.checklist li i {
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.checklist.checklist-compact {
  margin: 1rem 0;
  max-width: none;
}

/* Why Choose cards (flooring page) */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 2.5rem auto 0;
}
.why-card:nth-child(1) { grid-column: 1 / 3; }
.why-card:nth-child(2) { grid-column: 3 / 5; }
.why-card:nth-child(3) { grid-column: 5 / 7; }
.why-card:nth-child(4) { grid-column: 2 / 4; }
.why-card:nth-child(5) { grid-column: 4 / 6; }
.why-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  color: var(--white);
}
.why-card svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
  flex-shrink: 0;
}
.why-card strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

/* Flooring split (section 3) */
.flooring-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.flooring-split-text p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 1rem;
}
.flooring-split-image {
  overflow: hidden;
  border-radius: 4px;
}
.flooring-split-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ======================
   17d. SERVICES 2-COLUMN
   ====================== */
.services-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.service-col h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.service-col-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}
.service-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.service-col-image:hover img {
  transform: scale(1.03);
}
.service-col p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 0;
}

/* ======================
   17c. PROCESS 4-COLUMN
   ====================== */
.process-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-bottom: 48px;
}
.process-step-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.process-step-simple i {
  font-size: 2.8rem;
  color: var(--teal);
}
.process-step-simple span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ======================
   17e. LEGAL PAGES
   ====================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-updated {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 12px;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.legal-content p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--text-dark);
}
.legal-content ul {
  margin: 0 0 16px 24px;
  line-height: 1.8;
  color: var(--text-dark);
}
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--teal-dark);
}

/* ======================
   17d. MAP SECTION
   ====================== */
#map-section .section-title {
  margin-bottom: 32px;
}
.map-embed {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ======================
   18. FOOTER
   ====================== */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer-logo {
  height: 100px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 14px;
}
.footer-hours {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer-contact-list li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-list i {
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-contact-list a:hover {
  color: var(--teal);
}
.footer-nav-links li {
  margin-bottom: 9px;
}
.footer-nav-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav-links a:hover {
  color: var(--teal);
}
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-icons a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.social-icons a:hover { color: var(--teal); }
.social-icons i { font-size: 1.1rem; width: 18px; text-align: center; }

.footer-policy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}
.footer-policy .container {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.footer-policy a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: var(--teal);
  font-weight: 600;
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ======================
   19. IMAGE PAIR (1×2) & IMAGE TRIO (1×3)
   ====================== */
.image-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.image-trio-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.image-trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.image-trio-item:hover img {
  transform: scale(1.04);
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.image-pair-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.image-pair-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.image-pair-item:hover img {
  transform: scale(1.04);
}

/* ======================
   20. RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-2col   { grid-template-columns: 1fr; }
  .process-4col    { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .gallery-item {
    width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 24px;
    border-bottom: none;
    font-size: 1rem;
  }
  .nav-links a.nav-cta {
    margin: 8px 24px 0;
    width: calc(100% - 48px);
    text-align: center;
    padding: 12px;
  }
  .nav-toggle { display: flex; }

  /* Dropdown mobile */
  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item:hover .nav-dropdown { display: none; }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown-toggle { width: 100%; padding: 12px 24px; font-size: 1rem; border-bottom: none; }
  .nav-dropdown {
    position: static; box-shadow: none; border-top: none;
    border-left: 3px solid var(--teal); background: rgba(255,255,255,0.05);
    width: 100%; margin: 0; padding: 4px 0;
  }
  .nav-dropdown li a { padding: 9px 36px; font-size: 0.95rem; }

  /* Area pages */
  .area-split { grid-template-columns: 1fr; }
  .area-split-image { min-height: 300px; order: -1; }
  .area-split-box { padding: 36px 24px; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }

  /* Nav logo */
  .brand-logo { height: 56px; }

  /* Hero & headings */
  .hero-title    { font-size: 2.2rem; }
  .section-title { font-size: 2.2rem; }
  .hero-title-sub { font-size: 1.1rem; }
  #hero.hero-inner { min-height: 40vh; }

  /* Section whitespace */
  .section-padding { padding: 50px 0; }
  .hero-content    { padding: 60px 20px 40px; }

  /* Buttons — full-width at tablet */
  .hero-btn    { width: 100%; max-width: 300px; }
  .section-cta { flex-direction: column; align-items: center; }

  /* Grids */
  .image-trio        { grid-template-columns: 1fr; }
  .image-pair        { grid-template-columns: 1fr; }
  .cards-grid        { grid-template-columns: 1fr; }
  .about-story       { grid-template-columns: 1fr; gap: 32px; }
  .flooring-split    { grid-template-columns: 1fr; gap: 32px; }
  .about-story-image { order: -1; }
  .flooring-split-image { order: -1; }
  .why-choose-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(1),
  .why-card:nth-child(2),
  .why-card:nth-child(3),
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: auto; }
  .process-steps     { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .gallery-preview   { grid-template-columns: repeat(2, 1fr); }
  .timeline-callout  { flex-direction: column; padding: 28px 24px; text-align: center; }

  /* Footer — single column at tablet */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Map */
  .map-embed { height: 300px; }

  /* Booking modal iframes — avoid inner scroll on phone */
  .booking-modal-inner iframe { min-height: 500px !important; }
}

@media (max-width: 480px) {
  .section-title   { font-size: 1.8rem; }
  .hero-title      { font-size: 1.8rem; }
  .features-grid   { grid-template-columns: 1fr; }
  .process-4col    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner    { grid-template-columns: 1fr; }
  .gallery-item    { width: 100%; }
  .section-cta     { flex-direction: column; align-items: center; }
  .hero-btn        { width: 100%; max-width: 300px; }

  /* Further reduce whitespace on phones */
  .section-padding { padding: 36px 0; }
  .hero-content    { padding: 40px 20px 30px; }
}

/* ======================
   21. BOOKING MODAL
   ====================== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal.open {
  display: flex;
}
.booking-modal-inner {
  position: relative;
  background: var(--dark);
  border-radius: 8px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow: auto;
}
.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  border-radius: 4px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Call modal (desktop) */
.call-modal-inner {
  max-width: 360px;
  text-align: center;
}
.call-modal-body {
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.call-modal-icon {
  font-size: 2.4rem;
  color: var(--teal);
}
.call-modal-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.call-modal-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.call-modal-number:hover {
  color: var(--teal);
}
