/* ============================================================
   Elegant Walls Chicago Installers — Main Stylesheet
   Color Palette:
     Pearl bg:    #F6F8F9
     Mist blue:   #E3EBF1
     White:       #FFFFFF
     Text:        #263443
     Accent navy: #567DA3
     Hover:       #446A90
   Fonts: Manrope (headings), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  background: #F6F8F9;
  color: #263443;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: #263443;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn, .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #567DA3;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover, .submit-btn:hover {
  background: #446A90;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid #567DA3;
  color: #567DA3;
}
.btn-outline:hover {
  background: #567DA3;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #567DA3;
}
.btn-white:hover {
  background: #E3EBF1;
  color: #446A90;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Section Spacing ──────────────────────────────────────── */
section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #567DA3;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: #4a5a6a;
  font-size: 1.05rem;
}

/* ── Background Variants ──────────────────────────────────── */
.bg-white   { background: #fff; }
.bg-pearl   { background: #F6F8F9; }
.bg-mist    { background: #E3EBF1; }
.bg-navy    { background: #263443; color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p  { color: #c8d8e8; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #dde6ee;
  box-shadow: 0 2px 12px rgba(38,52,67,0.07);
}
.header-top {
  background: #263443;
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.header-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c8d8e8;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.header-contact-link:hover { color: #fff; }
.header-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: #567DA3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; color: #fff; }
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #263443;
}
.logo-text span {
  font-size: 0.75rem;
  color: #567DA3;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Main Nav ─────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #263443;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: #E3EBF1; color: #567DA3; }

/* ── Dropdown ─────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(38,52,67,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #263443;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: #F6F8F9; color: #567DA3; }

/* ── Mobile Toggle ────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: #263443;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -55%;
  width: 50%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(38,52,67,0.15);
  z-index: 2000;
  padding: 80px 32px 32px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #F6F8F9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #263443;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: #E3EBF1; }
.mobile-menu a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #263443;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: #E3EBF1; color: #567DA3; }
.mobile-menu .mobile-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #567DA3;
  padding: 16px 16px 4px;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,52,67,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #263443;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .eyebrow {
  display: inline-block;
  background: rgba(86,125,163,0.25);
  color: #a8c8e8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p {
  color: #c8d8e8;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat span { font-size: 0.875rem; color: #a8c8e8; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #dde6ee;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #263443;
}
.trust-item svg { width: 20px; height: 20px; color: #567DA3; flex-shrink: 0; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde6ee;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(38,52,67,0.1);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: #E3EBF1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card-icon svg { width: 22px; height: 22px; color: #567DA3; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: #4a5a6a; font-size: 0.9rem; margin-bottom: 16px; }
.service-card .link-arrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #567DA3;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card .link-arrow:hover { gap: 10px; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; padding: 32px 20px; }
.why-icon {
  width: 64px;
  height: 64px;
  background: #E3EBF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 30px; height: 30px; color: #567DA3; }
.why-item h3 { margin-bottom: 10px; }
.why-item p { color: #4a5a6a; font-size: 0.9rem; }

/* ── GALLERY GRID ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item { border-radius: 8px; overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-2 img { height: 280px; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dde6ee;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 24px;
  background: #567DA3;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: #4a5a6a; font-size: 0.875rem; margin: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #dde6ee;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: #E3EBF1;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f0a500; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { color: #4a5a6a; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: #E3EBF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #567DA3;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.8rem; color: #7a8a9a; }

/* ── AREAS GRID ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.area-card {
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.area-card:hover {
  background: #E3EBF1;
  border-color: #567DA3;
  transform: translateY(-2px);
}
.area-card svg { width: 24px; height: 24px; color: #567DA3; margin: 0 auto 10px; }
.area-card span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #263443;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.feedback-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #dde6ee;
  box-shadow: 0 4px 24px rgba(38,52,67,0.07);
}
.feedback-form-container h3 {
  margin-bottom: 28px;
  font-size: 1.4rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde6ee;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #263443;
  background: #F6F8F9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #567DA3;
  box-shadow: 0 0 0 3px rgba(86,125,163,0.12);
  background: #fff;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 16px;
}
.contact-form .form-submit { margin-top: 4px; }
.contact-form .submit-btn { width: 100%; justify-content: center; padding: 15px; }
#form-success {
  text-align: center;
  padding: 32px;
  color: #2d7a4f;
  font-weight: 600;
  font-size: 1rem;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #263443 0%, #3a5068 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: #c8d8e8; margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── INLINE CTA ───────────────────────────────────────────── */
.inline-cta {
  background: #E3EBF1;
  border-left: 4px solid #567DA3;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; font-weight: 600; color: #263443; }

/* ── STICKY QUOTE BUTTON ──────────────────────────────────── */
.sticky-quote-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: #567DA3;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(86,125,163,0.4);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote-btn:hover { background: #446A90; transform: translateY(-2px); }
.sticky-quote-btn svg { width: 18px; height: 18px; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,52,67,0.55);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #F6F8F9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #263443;
  transition: background 0.2s;
}
.modal-close:hover { background: #E3EBF1; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #1a2733;
  color: #c8d8e8;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: #567DA3; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #8a9aaa;
}
.footer-contact-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #c8d8e8;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list svg { width: 16px; height: 16px; color: #567DA3; flex-shrink: 0; }

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: #8a9aaa;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #c8d8e8; }

.footer-bottom {
  border-top: 1px solid #2a3d50;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #5a6a7a; margin: 0; }
.footer-bottom a { color: #567DA3; }
.footer-bottom a:hover { color: #a8c8e8; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb-nav {
  background: #fff;
  border-bottom: 1px solid #dde6ee;
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #7a8a9a;
}
.breadcrumb-list li a { color: #567DA3; }
.breadcrumb-list li a:hover { color: #446A90; }
.breadcrumb-list li.active { color: #263443; font-weight: 600; }
.breadcrumb-sep { color: #bcc8d4; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #263443 0%, #3a5068 60%, #567DA3 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #567DA3, #a8c8e8, #567DA3);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #c8d8e8; font-size: 1.05rem; max-width: 600px; }

/* ── CONTENT SECTIONS ─────────────────────────────────────── */
.content-section { padding: 64px 0; }
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }
.content-col-img { border-radius: 12px; overflow: hidden; }
.content-col-img img { width: 100%; height: 380px; object-fit: cover; }
.content-col-text h2 { margin-bottom: 16px; }
.content-col-text p { color: #4a5a6a; margin-bottom: 16px; }
.content-col-text ul { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.content-col-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #4a5a6a;
}
.content-col-text ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #567DA3;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #263443;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: #F6F8F9; }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  background: #E3EBF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #567DA3;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); background: #567DA3; color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: #4a5a6a;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── MAP ──────────────────────────────────────────────────── */
.map-section { padding: 0; }
.map-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde6ee;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #dde6ee;
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #E3EBF1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: #567DA3; }
.contact-info-item strong { display: block; font-size: 0.85rem; color: #7a8a9a; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p {
  font-size: 0.95rem;
  color: #263443;
  font-weight: 500;
  margin: 0;
}
.contact-info-item a:hover { color: #567DA3; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde6ee;
  text-align: center;
}
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: #567DA3; font-weight: 500; }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #dde6ee;
}
.stat-card strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #567DA3;
  margin-bottom: 8px;
}
.stat-card span { font-size: 0.875rem; color: #4a5a6a; }

/* ── CITY PAGE ────────────────────────────────────────────── */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.neighborhood-tag {
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #263443;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.neighborhood-tag:hover { background: #E3EBF1; border-color: #567DA3; }

/* ── RELATED LINKS ────────────────────────────────────────── */
.related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.related-link-card {
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 10px;
  padding: 20px;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.related-link-card:hover { background: #E3EBF1; border-color: #567DA3; }
.related-link-card svg { width: 20px; height: 20px; color: #567DA3; flex-shrink: 0; }
.related-link-card span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #263443;
}

/* ── ORDERED LIST STYLE ───────────────────────────────────── */
.styled-ol {
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.styled-ol li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  counter-increment: item;
}
.styled-ol li::before {
  content: counter(item);
  min-width: 28px;
  height: 28px;
  background: #567DA3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.styled-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.styled-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #4a5a6a;
}
.styled-ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #567DA3;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy { color: #263443; }
.text-accent { color: #567DA3; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 1; }
  .gallery-item.span-2 img { height: 220px; }
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }
  .content-two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav, .header-top { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .feedback-form-container { padding: 24px; }
  .sticky-quote-btn {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu { width: 50%; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-banner .cta-buttons { flex-direction: column; align-items: center; }
  .mobile-menu { width: 80%; }
  .trust-bar .container { gap: 20px; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease forwards; }
