/*
Theme Name: Design Cleaning Services
Theme URI: https://designcleaningservices.com
Description: Custom theme for Design Cleaning Services
Version: 1.0
Author: Design Cleaning Services
*/

/* =========================================================
   DESIGN CLEANING — style.css
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Variables
   --------------------------------------------------------- */
:root {
  --blue-primary: #1a3c89;
  --green-accent: #1d9f27;
  --black: #0a0a0a;
  --white: #ffffff;
  --text-dark: #404040;
  --text-muted: #737373;
  --border: #e5e5e5;
  --border-input: #d4d4d4;
  --bg-card: #f7f7f7;
  --bg-light: #fafafa;
  --container: 1150px;
  --font: 'Montserrat', sans-serif;
  --brand-gradient: linear-gradient(to right, var(--blue-primary), var(--green-accent));
  --radius-btn: 4px;
  --radius-card: 6px;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------------------------------------------------------
   3. Utilities
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.overline--blue { color: var(--blue-primary); }

.text-center { text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: var(--brand-gradient);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-blue{
  background: var(--blue-primary);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--blue-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--blue-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline svg { margin-right: 6px; transition: transform var(--transition); }
.btn-outline:hover svg path { stroke: var(--white); }
.btn-outline:hover { background: var(--blue-primary); color: var(--white); }

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: var(--white);
  color: var(--blue-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.btn-light:hover { opacity: 0.9; }

/* ---------------------------------------------------------
   4. Header / Navbar
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1A3C89 0%, #1D9F27 100%);
  border-bottom: none;
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 32px;
  
  width: 100%;
  max-width: 1100px;
  margin: auto
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 64px; width: auto; object-fit: contain; }

.primary-nav .nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.primary-nav .nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

.primary-nav .nav-list a:hover { color: rgba(255,255,255,0.7); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   Brand gradient ribbon
   --------------------------------------------------------- */
.brand-ribbon {
  height: 6px;
  background: var(--brand-gradient);
  width: 100%;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   5. Hero Section
   --------------------------------------------------------- */
.hero {
  padding: 96px 0 0;
  background: var(--white);
}

.hero .container { padding-bottom: 0; }

.hero__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__text { display: flex; flex-direction: column; gap: 28px; }

.hero__location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
}

.hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  max-width: 520px;
}

.hero__meta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 520px;
}
                                                                                                                                                                                    
  .hero__image img,                                                                                                                                                                                      
  .hero__image video { 
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--brand-gradient);
  color: var(--white);
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  border-radius: 8px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-bar-inner{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-bar__number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---------------------------------------------------------
   6. Services Section
   --------------------------------------------------------- */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.section-header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; }

.section-header--center { align-items: center; text-align: center; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  max-width: 720px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card__image {
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__image img { width: 100%; height: 100%; object-fit: cover; }

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.service-card__desc {
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.service-card__divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-card__feature {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.service-card__feature::before {
  content: '✅';
  flex-shrink: 0;
  font-size: 0.75rem;
}

.service-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-top: auto;
  transition: gap var(--transition);
}

.service-card__link:hover { text-decoration: underline; }

/* ---------------------------------------------------------
   7. About Us Section
   --------------------------------------------------------- */
.about {
  padding: 120px 0;
  background: linear-gradient(90deg, #1A3C89 0%, #1D9F27 100%);
}

.about__wrapper {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0;
}

.about__card {
  background: var(--white);
  border-radius: 0;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 80px; */
  max-width: 1150px;
  justify-content: space-between;
  align-items: center;
}

.about__text { display: flex; flex-direction: column; gap: 24px; width: 580px; }

.about__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.about__stats {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}

.about__stat { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }

.about__stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.about__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}


.about__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about__image img {
  max-width: 410px;
}

/* ---------------------------------------------------------
   8. Why Choose Us Section
   --------------------------------------------------------- */
.why-us {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(90deg, #1A3C89 0%, #1D9F27 100%);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--white);
}

.why-card__icon img { width: 100%; height: 100%; object-fit: contain; }

.why-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.why-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ---------------------------------------------------------
   9. Gallery Section
   --------------------------------------------------------- */
.gallery {
  padding: 120px 0;
  background: #1A3C89;
  border-top: none;
}

.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.gallery__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery__group { display: flex; flex-direction: column; gap: 10px; }

.gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery__pair img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery__pair img:hover { transform: scale(1.02); }

.gallery .section-tag      { color: rgba(255,255,255,0.75); }
.gallery .section-title    { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.8); }

.gallery__caption {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.gallery__view-all {
  text-align: center;
  margin-top: 48px;
}

/* keep item classes for lightbox compatibility */
.gallery__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall { height: 280px; }
.gallery__item--short { height: 200px; }
.gallery__item--full { height: 240px; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

/* Gallery lightbox */
#gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#gallery-lightbox.is-open { display: flex; }

#gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
}

.gallery-lb__swiper {
  width: 90vw;
  max-width: 960px;
  position: relative;
  overflow: hidden;
}

.gallery-lb__wrapper { display: flex; }

.gallery-lb__slide { flex-shrink: 0; width: 100%; display: flex; align-items: center; justify-content: center; }

.gallery-lb__slide img { max-height: 80vh; width: auto; max-width: 100%; object-fit: contain; border-radius: 4px; }

.gallery-lb__prev,
.gallery-lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lb__prev { left: 12px; }
.gallery-lb__next { right: 12px; }

.gallery-lb__prev::after,
.gallery-lb__next::after {
  content: '';
  border: 2px solid var(--white);
  width: 10px;
  height: 10px;
  display: block;
}

.gallery-lb__prev::after { border-right: none; border-top: none; transform: rotate(45deg) translate(2px, -2px); }
.gallery-lb__next::after { border-left: none; border-top: none; transform: rotate(-45deg) translate(-2px, -2px); }

/* ---------------------------------------------------------
   10. Reviews / Testimonials Section
   --------------------------------------------------------- */
.reviews {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__star { color: #f59e0b; font-size: 1rem; }

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.review-card__location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-card__divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------------
   11. Contact / CTA Section
   --------------------------------------------------------- */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact__columns {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--black);
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 137, 0.1);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--blue-primary);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity var(--transition);
}

.contact__submit:hover { opacity: 0.88; }

.contact__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Contact info sidebar */
.contact__info { display: flex; flex-direction: column; gap: 28px; }

.contact__info-block { display: flex; flex-direction: column; gap: 4px; }

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact__info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.contact__info-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact__social a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}

.contact__social a:hover { border-color: var(--blue-primary); color: var(--blue-primary); }

/* ---------------------------------------------------------
   12. Areas Served
   --------------------------------------------------------- */
.areas-served {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.areas-served__heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.areas-served__sub {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.areas-served__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.areas-list { display: flex; flex-direction: column; gap: 10px; }

.areas-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.areas-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
}

.areas-served__map {
  border-radius: 8px;
  overflow: hidden;
}

.areas-served__map iframe { display: block; }

/* ---------------------------------------------------------
   13. Company Policies
   --------------------------------------------------------- */
.policies {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.policies__accordion {
  max-width: 880px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.policies__item { border-bottom: 1px solid var(--border); }
.policies__item:last-child { border-bottom: none; }

.policies__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  transition: background var(--transition);
}

.policies__trigger:hover { background: var(--bg-light); }

.policies__icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}

.policies__item.is-open .policies__icon { transform: rotate(45deg); }

.policies__body {
  display: none;
  padding: 0 32px 24px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.policies__item.is-open .policies__body { display: block; }

/* ---------------------------------------------------------
   14. Footer Dark
   --------------------------------------------------------- */
.footer-dark {
  background: var(--blue-primary);
  color: var(--white);
}

.footer-dark__inner {
  display: grid;
  grid-template-columns: 360px 1fr 1fr 1fr;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-dark__brand { display: flex; flex-direction: column; gap: 20px; }

.footer-dark__logo { height: 152px; width: auto; object-fit: contain; }

.footer-dark__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-dark__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--white);
  color: var(--blue-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: opacity var(--transition);
  align-self: flex-start;
}

.footer-dark__cta:hover { opacity: 0.9; }

.footer-dark__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-dark__col-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-dark__col a,
.footer-dark__col span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity var(--transition);
  display: block;
}

.footer-dark__col a:hover { opacity: 0.7; }

.footer-dark__contact-phone { font-weight: 600 !important; }

.footer-dark__hours { color: rgba(255,255,255,0.65) !important; font-weight: 400 !important; }

.footer-dark__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-dark__payment-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-dark__payment-icon img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.footer-dark__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-dark__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-dark__legal a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-dark__legal a:hover { color: var(--white); }

/* (legacy footer classes kept for reference) */
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-col-heading {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-list a,
.footer-col-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-list a:hover,
.footer-col-link:hover { color: var(--blue-primary); }

.footer-nav .footer-nav-list li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav .footer-nav-list li a:hover { color: var(--blue-primary); }

.footer-bottom {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  text-align: center;
  padding: 16px;
}

/* ---------------------------------------------------------
   14. Areas We Serve (homepage — light style)
   --------------------------------------------------------- */
.areas {
  padding: 96px 0;
  background: linear-gradient(90deg, #1A3C89 0%, #1D9F27 100%);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.areas .section-tag    { color: rgba(255,255,255,0.75); }
.areas .section-title  { color: var(--white); }
.areas .section-subtitle { color: rgba(255,255,255,0.8); }

.areas__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--white);
}

.areas__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.areas__map {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.areas__map iframe { width: 100%; height: 100%; border: none; display: block; }

.areas__note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}

.areas__note a { color: var(--white); font-weight: 600; text-decoration: underline; }

@media (max-width: 1024px) {
  .areas__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
}
