/* ============================================================
   Chicago Suburbs Wallpaper Installation — style.css
   ============================================================ */

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

:root {
  --navy:   #1F3A52;
  --slate:  #35526B;
  --white:  #F7F8F5;
  --dark:   #243342;
  --accent: #6FA7C9;
  --accent-hover: #5A92B5;
  --text-light: #FFFFFF;
  --text-dark: #243342;
  --border: rgba(111,167,201,.25);
  --shadow: 0 4px 24px rgba(31,58,82,.15);
  --shadow-lg: 0 12px 48px rgba(31,58,82,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1,h2,h3,h4,h5,h6 { font-family: 'Manrope', sans-serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--text-light); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--text-light); }
.section-slate { background: var(--slate); color: var(--text-light); }
.section-slate h2, .section-slate h3, .section-slate p { color: var(--text-light); }

/* ===================== BUTTONS ===================== */
.btn, .submit-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .2s;
  text-decoration: none;
  line-height: 1.3;
  min-height: 58px;
  vertical-align: middle;
}
.btn:hover, .submit-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(111,167,201,.45);
  transform: translateY(-2px);
  color: var(--text-light) !important;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent) !important;
}
.btn-outline:hover { background: var(--accent); color: #fff !important; }
.btn-white {
  background: var(--white);
  color: var(--navy) !important;
}
.btn-white:hover { background: #e8ecef; }

/* ===================== HEADER ===================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(31,58,82,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(111,167,201,.2);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px;
}

.logo a {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.logo span { color: var(--accent); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  color: rgba(247,248,245,.88) !important;
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.main-nav > li > a:hover, .main-nav > li.active > a {
  background: rgba(111,167,201,.18);
  color: #fff !important;
}
.main-nav .caret { font-size: .7rem; transition: transform .25s; }
.main-nav > li:hover .caret { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 200px;
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  transform: translateX(-50%) translateY(-6px);
  list-style: none;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { opacity: 0; transform: translateY(-4px); }
.main-nav > li:hover .dropdown li { animation: dropItem .18s ease forwards; }
.main-nav > li:hover .dropdown li:nth-child(1)  { animation-delay:.02s }
.main-nav > li:hover .dropdown li:nth-child(2)  { animation-delay:.05s }
.main-nav > li:hover .dropdown li:nth-child(3)  { animation-delay:.08s }
.main-nav > li:hover .dropdown li:nth-child(4)  { animation-delay:.11s }
.main-nav > li:hover .dropdown li:nth-child(5)  { animation-delay:.14s }
.main-nav > li:hover .dropdown li:nth-child(6)  { animation-delay:.17s }
.main-nav > li:hover .dropdown li:nth-child(7)  { animation-delay:.20s }
.main-nav > li:hover .dropdown li:nth-child(8)  { animation-delay:.23s }
.main-nav > li:hover .dropdown li:nth-child(9)  { animation-delay:.26s }
.main-nav > li:hover .dropdown li:nth-child(10) { animation-delay:.29s }
.main-nav > li:hover .dropdown li:nth-child(11) { animation-delay:.32s }
@keyframes dropItem { to { opacity:1; transform: translateY(0); } }

.dropdown li a {
  display: block;
  padding: 9px 18px;
  color: rgba(247,248,245,.85) !important;
  font-size: .88rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: rgba(111,167,201,.2); color: #fff !important; }

/* HEADER CONTACT */
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.header-contact a { color: rgba(247,248,245,.88) !important; font-size: .82rem; }
.header-contact a:hover { color: var(--accent) !important; }
.header-phone { font-size: .98rem !important; font-weight: 700 !important; color: #fff !important; font-family: 'Manrope', sans-serif; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(111,167,201,.15);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--navy);
  z-index: 999;
  padding: 90px 28px 32px;
  box-shadow: -6px 0 32px rgba(0,0,0,.35);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-overlay-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay-backdrop.open { opacity: 1; }
.mobile-close-btn {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(111,167,201,.2);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid rgba(111,167,201,.15); }
.mobile-nav-list > li > a {
  display: block;
  color: rgba(247,248,245,.9) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
}
.mobile-nav-list > li > a:hover { color: var(--accent) !important; }
.mobile-submenu { padding: 0; list-style: none; display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu li a {
  display: block;
  padding: 8px 16px;
  color: rgba(247,248,245,.7) !important;
  font-size: .9rem;
  text-align: center;
}
.mobile-submenu li a:hover { color: var(--accent) !important; }
.mobile-toggle-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: .8rem;
  cursor: pointer;
  width: 100%;
  padding: 6px 0;
  text-align: center;
}
.mobile-contact-info { margin-top: 24px; text-align: center; }
.mobile-contact-info a { display: block; color: rgba(247,248,245,.85) !important; font-size: .95rem; padding: 6px 0; }
.mobile-contact-info a:hover { color: var(--accent) !important; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,58,82,.82) 0%, rgba(31,58,82,.55) 60%, rgba(31,58,82,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(111,167,201,.3);
  border: 1px solid rgba(111,167,201,.5);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-content p { font-size: 1.12rem; color: rgba(255,255,255,.9); margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== FORM ===================== */
.feedback-form-container {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
}
.feedback-form-container h3 {
  margin-bottom: 22px;
  font-size: 1.4rem;
  color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #d0dae4;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111,167,201,.15);
}
.form-group textarea { min-height: 110px; resize: vertical; margin-bottom: 14px; }
.form-submit { display: flex; justify-content: center; }
.submit-btn { width: 100%; font-size: 1.05rem; }
#form-success {
  text-align: center;
  padding: 24px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
}

/* HERO with form split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===================== SECTION TITLE ===================== */
.section-title { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-title .label {
  display: inline-block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: #5a6878; font-size: 1.05rem; }
.section-dark .section-title p { color: rgba(247,248,245,.75); }
.section-dark .section-title h2 { color: #fff; }

/* ===================== CARDS ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 28px; }

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: .93rem; color: #5a6878; margin-bottom: 14px; }
.card-body a { font-size: .9rem; font-weight: 600; }

/* ICON CARDS */
.icon-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 24px; }
.icon-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(111,167,201,.25);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: background .25s;
}
.icon-card:hover { background: rgba(111,167,201,.15); }
.icon-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.icon-card p { font-size: .88rem; color: rgba(247,248,245,.75); margin: 0; }

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .3s, box-shadow .3s;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ===================== TWO COL ===================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { border-radius: 14px; width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ===================== STATS BAR ===================== */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(111,167,201,.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Manrope', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .9rem; color: rgba(247,248,245,.75); }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #4a8db5 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 28px; }
.cta-band .btn { background: #fff; color: var(--navy) !important; }
.cta-band .btn:hover { background: #e8ecef; }

/* ===================== MAP ===================== */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; }

/* ===================== CONTACT GRID ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(111,167,201,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; margin-bottom: 2px; font-size: .9rem; color: #8899aa; text-transform: uppercase; letter-spacing: .5px; }
.contact-detail-text span, .contact-detail-text a { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-detail-text a:hover { color: var(--accent); }

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  background: var(--navy);
  padding: 60px 0 40px;
  margin-top: 72px;
}
.breadcrumb nav { font-size: .88rem; }
.breadcrumb nav a { color: rgba(247,248,245,.7) !important; }
.breadcrumb nav span { color: rgba(247,248,245,.45); margin: 0 6px; }
.breadcrumb nav strong { color: #fff; }
.breadcrumb h1 { color: #fff; margin-top: 10px; }

/* ===================== CONTENT PAGE ===================== */
.content-section { padding: 80px 0; }
.content-section h2 { margin: 36px 0 14px; }
.content-section h3 { margin: 24px 0 10px; }
.content-section ul, .content-section ol { margin-bottom: 1.2rem; }
.content-section .cta-inline {
  background: rgba(111,167,201,.1);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}
.content-section .cta-inline p { margin: 0 0 10px; font-weight: 600; }

/* SERVICE PAGE HERO */
.page-hero { padding: 160px 0 100px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-size:cover; background-position:center; opacity:.22; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(247,248,245,.85); font-size: 1.1rem; max-width: 640px; margin-top: 14px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  color: rgba(247,248,245,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .9rem; margin-bottom: 16px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(247,248,245,.7) !important; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(247,248,245,.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== STICKY BTN ===================== */
#sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(111,167,201,.55);
  transition: background .25s, box-shadow .25s, transform .2s;
  border: none;
  cursor: pointer;
}
#sticky-quote-btn:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(111,167,201,.65); }

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 680px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(31,58,82,.1);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: background .2s;
}
.modal-close:hover { background: rgba(31,58,82,.2); }

/* ===================== FAQ ===================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #dde5ed; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 18px; }
.faq-answer p { font-size: .97rem; color: #4a5a6a; margin: 0; }

/* ===================== AREAS GRID ===================== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
.area-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(111,167,201,.2);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: background .25s, transform .25s;
}
.area-card:hover { background: rgba(111,167,201,.18); transform: translateY(-4px); }
.area-card a { color: #fff !important; font-weight: 600; font-size: .95rem; }
.area-card .icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ===================== PROCESS STEPS ===================== */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  counter-increment: step;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-num::before { content: counter(step); }
.step-text h3 { margin-bottom: 6px; font-size: 1rem; }
.step-text p { font-size: .93rem; color: #5a6878; margin: 0; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.testimonial {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(111,167,201,.2);
  border-radius: 14px;
  padding: 26px 22px;
}
.stars { color: #f5c842; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial p { font-size: .93rem; color: rgba(247,248,245,.85); margin-bottom: 14px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: .88rem; color: var(--accent); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-contact { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-overlay { display: block; }
  .mobile-overlay-backdrop { display: block; }

  .hero-split { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 60px 0; }
  #sticky-quote-btn { bottom: 20px; right: 50%; transform: translateX(50%); }
  #sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .modal-box { padding: 28px 20px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
