/* ============================================
   Bold Wallpaper Installers — Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #3B82F6;
  --color-bg-white: #FFFFFF;
  --color-bg-gray: #F1F3F6;
  --color-bg-off: #FAFAFA;
  --color-text: #1F2933;
  --color-text-light: #52606D;
  --color-text-muted: #7B8794;
  --color-border: #E4E7EB;
  --color-success: #10B981;
  --color-error: #EF4444;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { padding-left: 1.5em; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--color-text); }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.header-logo a span { color: var(--color-primary); }

/* Contact info in header */
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-weight: 600;
  white-space: nowrap;
}
.header-contact a:hover { color: var(--color-primary); }
.header-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Desktop Navigation */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--color-bg-gray);
  color: var(--color-primary);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  list-style: none;
  z-index: 100;
}
.nav-list > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateY(6px); }
.nav-list > li:hover > .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}
.dropdown-menu li:nth-child(1) { transition: opacity 0.2s 0.05s, transform 0.2s 0.05s; }
.dropdown-menu li:nth-child(2) { transition: opacity 0.2s 0.1s, transform 0.2s 0.1s; }
.dropdown-menu li:nth-child(3) { transition: opacity 0.2s 0.15s, transform 0.2s 0.15s; }
.dropdown-menu li:nth-child(4) { transition: opacity 0.2s 0.2s, transform 0.2s 0.2s; }
.dropdown-menu li:nth-child(5) { transition: opacity 0.2s 0.25s, transform 0.2s 0.25s; }
.dropdown-menu li:nth-child(6) { transition: opacity 0.2s 0.3s, transform 0.2s 0.3s; }
.dropdown-menu li:nth-child(7) { transition: opacity 0.2s 0.35s, transform 0.2s 0.35s; }
.dropdown-menu li:nth-child(8) { transition: opacity 0.2s 0.4s, transform 0.2s 0.4s; }
.dropdown-menu li:nth-child(9) { transition: opacity 0.2s 0.45s, transform 0.2s 0.45s; }
.dropdown-menu li:nth-child(10) { transition: opacity 0.2s 0.5s, transform 0.2s 0.5s; }
.dropdown-menu li:nth-child(11) { transition: opacity 0.2s 0.55s, transform 0.2s 0.55s; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: var(--color-bg-gray);
  color: var(--color-primary);
}

/* Dropdown arrow indicator */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after { transform: rotate(-135deg); }

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

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  min-width: 280px;
  max-width: 380px;
  height: 100vh;
  background: var(--color-bg-white);
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: var(--shadow-lg);
  padding: 0;
}
.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 .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
}
.mobile-nav-header .logo-text span { color: var(--color-primary); }

.mobile-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-close:hover { background: var(--color-bg-gray); }
.mobile-close svg { width: 20px; height: 20px; stroke: var(--color-text); }

.mobile-nav-body { padding: 16px 0; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--color-border); }
.mobile-nav-list > li > a {
  display: block;
  padding: 14px 24px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-list > li > a:hover { background: var(--color-bg-gray); color: var(--color-primary); }

/* Mobile dropdown toggle */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  font-family: var(--font-main);
}
.mobile-dropdown-toggle:hover { background: var(--color-bg-gray); color: var(--color-primary); }
.mobile-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
  stroke: var(--color-text-muted);
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

.mobile-dropdown {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--color-bg-off);
}
.mobile-dropdown.open { display: block; }
.mobile-dropdown li a {
  display: block;
  padding: 12px 24px 12px 40px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-dropdown li a:hover { background: var(--color-bg-gray); color: var(--color-primary); }

.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;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9375rem;
}
.mobile-nav-contact a:hover { color: var(--color-primary); }
.mobile-nav-contact svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-text);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,41,51,0.85) 0%, rgba(31,41,51,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
  color: #fff;
}
.hero-content h1 { color: #fff; font-size: 2.75rem; margin-bottom: 1rem; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 1.5rem; }
.hero-form {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-left: auto;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-gray { background: var(--color-bg-gray); }
.section-off { background: var(--color-bg-off); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--color-text-light); max-width: 640px; margin: 0 auto; font-size: 1.0625rem; }

/* ============================================
   BUTTONS / CTA
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-block {
  text-align: center;
  padding: 40px 0;
}
.cta-block p { color: var(--color-text-light); margin-bottom: 20px; font-size: 1.0625rem; }

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }

/* ============================================
   CARDS / GRID
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--color-text-light); font-size: 0.9375rem; }

/* ============================================
   FORM STYLES
   ============================================ */
.feedback-form-container {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.feedback-form-container h3 {
  font-size: 1.375rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-text);
}
.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 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group + .form-group { margin-top: 0; }
.form-submit { margin-top: 16px; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-main);
}
.submit-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
#form-success {
  text-align: center;
  padding: 20px;
}
#form-success p {
  color: var(--color-success);
  font-weight: 600;
  font-size: 1.0625rem;
}
.error-message {
  color: var(--color-error) !important;
  font-size: 0.8125rem !important;
  margin-top: 4px !important;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 32px 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: var(--font-main);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-bg-off); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  stroke: var(--color-text-muted);
}
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-block { margin-bottom: 48px; }
.content-block h2 { margin-bottom: 16px; }
.content-block p { color: var(--color-text-light); }
.content-block ul, .content-block ol { margin-bottom: 16px; color: var(--color-text-light); }
.content-block li { margin-bottom: 8px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: var(--color-text-light); }
.two-col-img img { border-radius: var(--radius-md); width: 100%; }

/* Feature list with icons */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-text-light);
}
.feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-primary);
  margin-top: 2px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.trust-badge svg { width: 40px; height: 40px; stroke: var(--color-primary); }
.trust-badge span { font-weight: 600; font-size: 0.875rem; color: var(--color-text); }

/* Area links grid */
.area-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.area-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-bg-off);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.area-links li a:hover { background: var(--color-primary); color: #fff; }
.area-links li a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Neighborhoods */
.neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
}
.neighborhoods li {
  padding: 10px 16px;
  background: var(--color-bg-off);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ============================================
   STICKY QUOTE BUTTON
   ============================================ */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: 16px 28px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: var(--font-main);
}
.sticky-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
  background: var(--color-primary-dark);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-bg-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--color-border); }
.modal-close svg { width: 18px; height: 18px; stroke: var(--color-text); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; }
.footer-brand .brand-name { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand .brand-name span { color: var(--color-primary-light); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-text) 0%, #324155 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; max-width: 640px; margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs span { margin: 0 8px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 48px 0; }

  /* Hide desktop nav, show mobile toggle */
  .main-nav { display: none; }
  .header-contact { display: none; }
  .mobile-toggle { display: block; }

  .hero { min-height: 500px; }
  .hero-content h1 { font-size: 2rem; }
  .hero .container { flex-direction: column; }
  .hero-form { margin: 24px auto 0; max-width: 100%; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 48px);
    max-width: 360px;
    text-align: center;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 16px; }
  .feedback-form-container { padding: 24px 16px; }
  .hero-content { padding: 40px 0; }
}

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

/* Process steps */
.process-steps { counter-reset: step; list-style: none; padding: 0; }
.process-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  color: var(--color-text-light);
}
.process-steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Contact info list */
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
}
.contact-info-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--color-primary);
}

/* Service area page specific */
.service-area-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }

@media (max-width: 768px) {
  .service-area-intro { grid-template-columns: 1fr; }
}
