/* ===== Dan Warren WallCoverings — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --color-white: #FFFFFF;
  --color-bg-secondary: #F3F4F6;
  --color-bg-warm: #FAFAFA;
  --color-text: #1F2933;
  --color-text-light: #52606D;
  --color-accent: #7DAED3;
  --color-accent-dark: #5A96C4;
  --color-accent-light: #B8D6EC;
  --color-border: #E4E7EB;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.3; }

/* ===== Container ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height); max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.header-logo a {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--color-text); display: flex; align-items: center; gap: 8px;
}
.header-logo .logo-accent { color: var(--color-accent); }
.header-contact-info {
  display: flex; align-items: center; gap: 20px; font-size: 0.85rem;
}
.header-contact-info a {
  display: flex; align-items: center; gap: 6px; color: var(--color-text);
  font-weight: 500; white-space: nowrap;
}
.header-contact-info a:hover { color: var(--color-accent); }
.header-contact-info svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Navigation ===== */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--color-text); border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--color-accent); background: rgba(125,174,211,0.08); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s ease; padding: 8px 0; z-index: 100;
}
.main-nav > li:hover > .dropdown-menu,
.main-nav > li:focus-within > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateX(-8px); }
.main-nav > li:hover > .dropdown-menu li,
.main-nav > li:focus-within > .dropdown-menu li {
  opacity: 1; transform: translateX(0);
}
.dropdown-menu li:nth-child(1) { transition: all 0.2s ease 0.05s; }
.dropdown-menu li:nth-child(2) { transition: all 0.2s ease 0.08s; }
.dropdown-menu li:nth-child(3) { transition: all 0.2s ease 0.11s; }
.dropdown-menu li:nth-child(4) { transition: all 0.2s ease 0.14s; }
.dropdown-menu li:nth-child(5) { transition: all 0.2s ease 0.17s; }
.dropdown-menu li:nth-child(6) { transition: all 0.2s ease 0.20s; }
.dropdown-menu li:nth-child(7) { transition: all 0.2s ease 0.23s; }
.dropdown-menu li:nth-child(8) { transition: all 0.2s ease 0.26s; }
.dropdown-menu li:nth-child(9) { transition: all 0.2s ease 0.29s; }
.dropdown-menu li:nth-child(10) { transition: all 0.2s ease 0.32s; }
.dropdown-menu li:nth-child(11) { transition: all 0.2s ease 0.35s; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.875rem; color: var(--color-text);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--color-bg-secondary); color: var(--color-accent); padding-left: 24px; }

/* Dropdown arrow */
.has-dropdown > a::after {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; vertical-align: middle;
  transition: transform 0.25s ease; position: relative; top: -1px;
}
.has-dropdown:hover > a::after { transform: rotate(-135deg); }

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 1100;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  margin: 5px auto; transition: all var(--transition); border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; }

.mobile-nav {
  display: none; position: fixed; top: 0; right: -100%; width: 50%;
  min-width: 300px; max-width: 400px; height: 100vh; z-index: 1060;
  background: var(--color-white); overflow-y: auto;
  transition: right 0.35s ease; padding: 0;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--color-border);
}
.mobile-nav-header .mobile-logo {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--color-text);
}
.mobile-nav-close {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--color-bg-secondary); }
.mobile-nav-close svg { width: 20px; height: 20px; color: var(--color-text); }

.mobile-nav-links { padding: 16px 0; }
.mobile-nav-links > li > a {
  display: block; padding: 14px 24px; font-size: 1rem; font-weight: 500;
  color: var(--color-text); border-bottom: 1px solid var(--color-bg-secondary);
  text-align: left;
}
.mobile-nav-links > li > a:hover { color: var(--color-accent); background: var(--color-bg-secondary); }
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 24px; font-size: 1rem; font-weight: 500;
  color: var(--color-text); background: none; border: none;
  border-bottom: 1px solid var(--color-bg-secondary); cursor: pointer;
  text-align: left; font-family: var(--font-body);
}
.mobile-dropdown-toggle svg {
  width: 16px; height: 16px; transition: transform var(--transition);
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown-content {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: var(--color-bg-warm);
}
.mobile-dropdown-content.open { max-height: 600px; }
.mobile-dropdown-content a {
  display: block; padding: 12px 24px 12px 40px; font-size: 0.9rem;
  color: var(--color-text-light); border-bottom: 1px solid var(--color-border);
  text-align: left;
}
.mobile-dropdown-content a:hover { color: var(--color-accent); }
.mobile-nav-contact {
  padding: 20px 24px; border-top: 1px solid var(--color-border);
}
.mobile-nav-contact a {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  font-size: 0.9rem; color: var(--color-text); text-align: left;
}
.mobile-nav-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-accent); }

/* ===== Hero Section ===== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  margin-top: var(--header-height); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(31,41,51,0.75) 0%, rgba(31,41,51,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 60px 24px;
}
.hero-text { color: var(--color-white); }
.hero-text h1 {
  font-size: 3rem; font-weight: 700; margin-bottom: 20px;
  color: var(--color-white); line-height: 1.15;
}
.hero-text p { font-size: 1.15rem; line-height: 1.8; opacity: 0.9; margin-bottom: 24px; }

/* ===== Form Styles ===== */
.feedback-form-container {
  background: var(--color-white); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.feedback-form-container h3 {
  font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px;
  color: var(--color-text); text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-bg-warm);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(125,174,211,0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { margin-top: 16px; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--color-accent);
  color: var(--color-white); border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
}
.submit-btn:hover { background: var(--color-accent-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(125,174,211,0.4); }
#form-success {
  text-align: center; padding: 30px;
}
#form-success p { font-size: 1.1rem; color: var(--color-accent-dark); font-weight: 500; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg-secondary); }
.section-warm { background: var(--color-bg-warm); }
.section-title {
  font-size: 2.25rem; margin-bottom: 16px; text-align: center;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--color-text-light); text-align: center;
  max-width: 700px; margin: 0 auto 48px;
}

/* ===== Service Cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
  background: var(--color-white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition); border: 1px solid var(--color-border);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card-body p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 16px; }

/* ===== CTA Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; transition: all var(--transition);
  font-family: var(--font-body); text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); border: 2px solid var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: var(--color-white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-accent); border: 2px solid var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: var(--color-white); }
.btn-white { background: var(--color-white); color: var(--color-accent); border: 2px solid var(--color-white); }
.btn-white:hover { background: transparent; color: var(--color-white); }

/* ===== CTA Block ===== */
.cta-block {
  text-align: center; padding: 48px 32px; background: var(--color-bg-secondary);
  border-radius: var(--radius); margin: 40px 0;
}
.cta-block h3 { font-size: 1.5rem; margin-bottom: 12px; }
.cta-block p { color: var(--color-text-light); margin-bottom: 20px; }
.cta-block .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Image Grid ===== */
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.image-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); }

/* ===== About Features ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-item { text-align: center; padding: 32px 24px; }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(125,174,211,0.1); border-radius: 50%;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--color-accent); }
.feature-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-item p { font-size: 0.9rem; color: var(--color-text-light); }

/* ===== Map ===== */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== Content Page ===== */
.page-hero {
  margin-top: var(--header-height); padding: 60px 0;
  background: var(--color-bg-secondary); text-align: center;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto; }

.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.75rem; margin-bottom: 16px; margin-top: 40px; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-size: 1.3rem; margin-bottom: 12px; margin-top: 28px; }
.content-section p { margin-bottom: 16px; color: var(--color-text-light); }
.content-section ul, .content-section ol {
  margin: 16px 0; padding-left: 24px;
}
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section li { margin-bottom: 8px; color: var(--color-text-light); padding-left: 4px; }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col-img img { border-radius: var(--radius); width: 100%; height: 400px; object-fit: cover; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  font-size: 1rem; background: var(--color-white);
  transition: background var(--transition); width: 100%;
  border: none; text-align: left; font-family: var(--font-body);
  color: var(--color-text);
}
.faq-question:hover { background: var(--color-bg-warm); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--color-accent); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--color-text-light); line-height: 1.7; }
.faq-answer-inner a { color: var(--color-accent-dark); text-decoration: underline; }

/* ===== Contact Info ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; background: rgba(125,174,211,0.1);
  border-radius: 50%; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--color-accent); }
.contact-info-text strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-text span, .contact-info-text a {
  font-size: 0.9rem; color: var(--color-text-light);
}

/* ===== Areas Grid ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.area-card {
  background: var(--color-white); padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--color-border); transition: all var(--transition);
}
.area-card:hover { border-color: var(--color-accent); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.area-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.area-card h3 a { color: var(--color-text); }
.area-card h3 a:hover { color: var(--color-accent); }
.area-card p { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 12px; }
.area-card .neighborhoods {
  font-size: 0.8rem; color: var(--color-text-light); line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text); color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--color-white); margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--color-accent-light); }
.footer-contact li {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent-light); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--color-accent-light); }
.footer-bottom {
  padding: 20px 0; text-align: center; font-size: 0.8rem;
}

/* ===== Sticky Quote Button ===== */
.sticky-quote-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  padding: 16px 28px; background: var(--color-accent);
  color: var(--color-white); border: none; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 30px rgba(125,174,211,0.4);
  transition: all var(--transition); font-family: var(--font-body);
}
.sticky-quote-btn:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(125,174,211,0.5); }

/* ===== Modal ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity var(--transition);
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
  background: var(--color-white); border-radius: var(--radius);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; padding: 40px;
  transform: scale(0.95); transition: transform var(--transition);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--transition);
}
.modal-close:hover { background: var(--color-bg-secondary); }
.modal-close svg { width: 20px; height: 20px; color: var(--color-text); }

/* ===== City page hero with image ===== */
.city-hero {
  margin-top: var(--header-height); position: relative;
  height: 350px; display: flex; align-items: center;
  overflow: hidden;
}
.city-hero-bg { position: absolute; inset: 0; }
.city-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,41,51,0.7) 0%, rgba(31,41,51,0.3) 100%);
}
.city-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.city-hero-content h1 { color: var(--color-white); font-size: 2.5rem; }
.city-hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-top: 12px; }

/* ===== Breadcrumbs ===== */
.breadcrumbs { padding: 16px 0; font-size: 0.85rem; color: var(--color-text-light); }
.breadcrumbs a { color: var(--color-accent-dark); }
.breadcrumbs span { margin: 0 8px; }

/* ===== Internal Links Section ===== */
.internal-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.internal-links a {
  padding: 8px 20px; border: 1px solid var(--color-border);
  border-radius: 50px; font-size: 0.875rem; color: var(--color-text);
  transition: all var(--transition);
}
.internal-links a:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(125,174,211,0.05); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .main-nav, .header-contact-info { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-nav, .mobile-nav-overlay { display: block; }
  
  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2rem; }
  .hero-content { padding: 40px 24px; }
  
  .section { padding: 48px 0; }
  .section-title { font-size: 1.75rem; }
  
  .form-row { grid-template-columns: 1fr; }
  .feedback-form-container { padding: 24px; }
  
  .image-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .sticky-quote-btn { bottom: 16px; right: 50%; transform: translateX(50%); }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
  
  .page-hero h1 { font-size: 1.75rem; }
  .city-hero-content h1 { font-size: 1.75rem; }
  .city-hero { height: 260px; }
}

@media (max-width: 480px) {
  .image-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ===== Animations ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
