/* ============================================================
   Zenith Floor Designs — Main Stylesheet
   Domain: chicago-wallpaper-designs.com
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --bg-primary:    #222629;
  --bg-secondary:  #3A322B;
  --bg-light:      #F3EFE8;
  --text-dark:     #252525;
  --text-light:    #FFFFFF;
  --accent:        #B88A58;
  --accent-hover:  #A07447;
  --border:        rgba(184,138,88,0.25);
  --shadow:        0 4px 24px rgba(0,0,0,0.18);
  --radius:        6px;
  --transition:    0.25s ease;
}

/* --- 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: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { padding-left: 1.4em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-secondary { background: var(--bg-secondary); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}
.btn:hover { background: var(--accent-hover); color: var(--bg-primary); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg-primary); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(34,38,41,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  gap: 20px;
}
.header-logo a {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.header-logo span { color: var(--accent); }
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
}
.header-contact a { color: var(--text-light); }
.header-contact a:hover { color: var(--accent); }
.header-contact .phone { font-weight: 600; font-size: 1rem; }

/* --- Main Nav --- */
.main-nav { background: var(--bg-secondary); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-inner > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.nav-inner > ul > li { position: relative; }
.nav-inner > ul > li > a {
  display: block;
  padding: 14px 18px;
  color: var(--text-light);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
}
.nav-inner > ul > li > a:hover,
.nav-inner > ul > li > a.active { color: var(--accent); background: rgba(184,138,88,0.08); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 999;
  display: none;
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.875rem;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: rgba(184,138,88,0.12); color: var(--accent); }

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition);
}

/* --- Mobile Nav Drawer --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  min-width: 260px;
  height: 100vh;
  background: var(--bg-primary);
  border-left: 2px solid var(--border);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li > a,
.mobile-nav > ul > li > span {
  display: block;
  padding: 14px 20px;
  color: var(--text-light);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav > ul > li > a:hover { color: var(--accent); background: rgba(184,138,88,0.08); }
.mobile-nav .mobile-sub { padding-left: 16px; background: rgba(0,0,0,0.2); }
.mobile-nav .mobile-sub a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav .mobile-sub a:hover { color: var(--accent); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wallpaper-installation-hero.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.badge {
  background: rgba(184,138,88,0.15);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.feedback-form-container {
  background: rgba(34,38,41,0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  backdrop-filter: blur(6px);
}
.feedback-form-container h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,138,88,0.3);
  border-radius: var(--radius);
  color: var(--text-light);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 90px; resize: vertical; margin-bottom: 14px; }
.contact-form .form-group:last-of-type { margin-bottom: 14px; }
.form-submit { text-align: center; }
.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.submit-btn:hover { background: var(--accent-hover); }
#form-success {
  text-align: center;
  padding: 20px;
  color: #6fcf97;
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}
.section-light .section-heading p { color: rgba(37,37,37,0.7); }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.service-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(184,138,88,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.section-light .feature-item p { color: rgba(37,37,37,0.7); }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   SERVICE AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.area-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.area-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.area-card a {
  color: var(--text-light);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.area-card a:hover { color: var(--accent); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-card .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.875rem; color: var(--accent); }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 20px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTENT PAGES (About, FAQ, etc.)
   ============================================================ */
.page-hero {
  background: var(--bg-secondary);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* Content prose */
.content-section { padding: 70px 0; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--accent); }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.section-light .prose h2 { color: var(--bg-secondary); }
.section-light .prose h3 { color: var(--text-dark); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 480px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-item p { font-size: 0.925rem; color: rgba(255,255,255,0.8); }
.section-light .faq-item p { color: rgba(37,37,37,0.8); }
.section-light .faq-item h3 { color: var(--bg-secondary); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,138,88,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-family: 'Manrope', sans-serif; margin-bottom: 4px; }
.contact-info-text a { color: var(--text-light); }
.contact-info-text a:hover { color: var(--accent); }

/* ============================================================
   STICKY QUOTE BUTTON
   ============================================================ */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,138,88,0.4);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.sticky-quote-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1d20;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
}
.footer-brand .logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 18px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent);
  padding: 28px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-primary);
}
.stat-item span {
  font-size: 0.85rem;
  color: rgba(34,38,41,0.8);
  font-weight: 600;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  counter-reset: steps;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.section-light .step-item p { color: rgba(37,37,37,0.7); }

/* ============================================================
   INLINE CTA BLOCKS
   ============================================================ */
.inline-cta {
  background: rgba(184,138,88,0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; font-weight: 600; }
.section-light .inline-cta { background: rgba(58,50,43,0.06); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-contact .email { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.75rem; }
  .modal-box { padding: 24px 18px; }
}

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