/* ============================================================
   San Carlos Wallpaper Installers — Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-bg: #0D223A;
  --secondary-bg: #1B3555;
  --light-bg: #F4F7FB;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #FFFFFF;
  --accent: #4F8CFF;
  --accent-hover: #3B6FD8;
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --transition: .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(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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 { list-style-position: inside; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .6em; color: var(--text-light); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5em; color: var(--primary-bg); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: .4em; }
p { margin-bottom: 1em; }
.section--dark h2, .section--dark h3 { color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,140,255,.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--primary-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
}
.header-top a { color: var(--text-light); }
.header-top a:hover { color: var(--accent); }
.header-contact { display: flex; gap: 20px; align-items: center; }
.header-contact svg { width: 16px; height: 16px; fill: var(--accent); vertical-align: middle; margin-right: 4px; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo a:hover { color: var(--accent); }

/* ---------- Desktop Navigation ---------- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; list-style: none; }
.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--text-light);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li:hover > a { color: var(--accent); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--secondary-bg);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s ease;
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}
.main-nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateY(6px); }
.main-nav > li:hover .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}
.main-nav > li:hover .dropdown-menu li:nth-child(1) { transition: all .25s ease .05s; }
.main-nav > li:hover .dropdown-menu li:nth-child(2) { transition: all .25s ease .1s; }
.main-nav > li:hover .dropdown-menu li:nth-child(3) { transition: all .25s ease .15s; }
.main-nav > li:hover .dropdown-menu li:nth-child(4) { transition: all .25s ease .2s; }
.main-nav > li:hover .dropdown-menu li:nth-child(5) { transition: all .25s ease .25s; }
.main-nav > li:hover .dropdown-menu li:nth-child(6) { transition: all .25s ease .3s; }
.main-nav > li:hover .dropdown-menu li:nth-child(7) { transition: all .25s ease .35s; }
.main-nav > li:hover .dropdown-menu li:nth-child(8) { transition: all .25s ease .4s; }
.main-nav > li:hover .dropdown-menu li:nth-child(9) { transition: all .25s ease .45s; }
.main-nav > li:hover .dropdown-menu li:nth-child(10) { transition: all .25s ease .5s; }
.main-nav > li:hover .dropdown-menu li:nth-child(11) { transition: all .25s ease .55s; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(79,140,255,.15);
  color: var(--accent);
  padding-left: 26px;
}

/* 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 .3s ease;
}
.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: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: var(--primary-bg);
  z-index: 1050;
  transition: right .4s ease;
  overflow-y: auto;
  padding: 70px 0 30px;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 1040;
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-overlay.open { opacity: 1; }

.mobile-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;
  z-index: 1060;
}
.mobile-close svg { width: 24px; height: 24px; stroke: var(--white); }

.mobile-nav-list { list-style: none; padding: 0 24px; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav-list > li > a {
  display: block;
  padding: 14px 0;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-nav-list > li > a:hover { color: var(--accent); }
.mobile-sub { list-style: none; padding: 0 0 0 16px; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub li a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.mobile-sub li a:hover { color: var(--accent); }
.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 14px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-main);
}
.mobile-dropdown-toggle svg {
  width: 16px; height: 16px;
  stroke: var(--white);
  transition: transform .3s ease;
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,58,.88) 0%, rgba(27,53,85,.75) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 1.5em; }
.hero-badges { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  color: var(--text-light);
}
.hero-badge svg { width: 18px; height: 18px; fill: var(--accent); }

/* ---------- FORM ---------- */
.feedback-form-container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.feedback-form-container h3 {
  color: var(--primary-bg);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}
.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: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #F9FAFB;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,140,255,.15);
  background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { margin-top: 16px; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,140,255,.35);
}
#form-success {
  text-align: center;
  padding: 20px;
}
#form-success p {
  color: #10B981;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: all var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(79,140,255,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 32px; height: 32px; fill: var(--accent); }
.feature-card h3 { color: var(--primary-bg); }

/* ---------- Image + Text Sections ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; }

/* ---------- CTA Sections ---------- */
.cta-block {
  text-align: center;
  padding: 48px 32px;
  background: var(--secondary-bg);
  border-radius: var(--radius);
  margin: 40px 0;
}
.cta-block h2, .cta-block h3 { color: var(--text-light); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.cta-inline { margin: 30px 0; text-align: center; }

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light-bg); }
.faq-question svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-answer p { margin-bottom: .5em; }

/* ---------- Locations Grid ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.location-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.location-card h3 a { color: var(--primary-bg); }
.location-card h3 a:hover { color: var(--accent); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(79,140,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.contact-info-text h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-text p { margin-bottom: 0; font-size: .95rem; }
.contact-info-text a { color: var(--text-dark); }
.contact-info-text a:hover { color: var(--accent); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--primary-bg);
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { margin-bottom: .3em; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .85rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ---------- Content Sections ---------- */
.content-section { padding: 60px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section ul, .content-section ol { margin-bottom: 1em; padding-left: 20px; }
.content-section li { margin-bottom: .5em; }
.content-section img {
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* ---------- About Page ---------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
}
.value-card svg { width: 40px; height: 40px; fill: var(--accent); margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-bg);
  color: rgba(255,255,255,.75);
  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,.1);
}
.footer-about p { font-size: .9rem; line-height: 1.7; }
.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-main);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ---------- Sticky Quote Button ---------- */
.sticky-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.sticky-quote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(79,140,255,.4);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,140,255,.5);
}
.sticky-quote-btn svg { width: 20px; height: 20px; fill: var(--white); }

/* ---------- 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.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  position: relative;
  padding: 40px;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  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(--light-bg); }
.modal-close svg { width: 20px; height: 20px; stroke: var(--text-dark); }

/* ---------- Neighborhoods ---------- */
.neighborhoods-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.neighborhoods-list li {
  padding: 10px 16px;
  background: var(--light-bg);
  border-radius: 8px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neighborhoods-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Process Steps ---------- */
.process-steps { counter-reset: step; list-style: none; padding: 0; }
.process-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 60px;
  position: relative;
  margin-bottom: 12px;
  background: var(--light-bg);
  border-radius: var(--radius);
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

/* ---------- Nearby Areas ---------- */
.nearby-areas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nearby-areas a {
  padding: 10px 20px;
  background: var(--light-bg);
  border-radius: 50px;
  font-size: .9rem;
  color: var(--primary-bg);
  transition: all var(--transition);
}
.nearby-areas a:hover {
  background: var(--accent);
  color: var(--white);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-section { grid-template-columns: 1fr; gap: 30px; }
  .split-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav { display: block; }

  .hero { min-height: 500px; }
  .hero-content { text-align: center; }
  .hero-badges { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .features-grid { grid-template-columns: 1fr; }

  .sticky-quote {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .feedback-form-container { padding: 24px 16px; }
  .modal-content { padding: 24px 16px; }
}
