/* ============================================================
   Raja & Co AutoDetailing — Main Stylesheet
   Colors:
     --blue-light  : #2596be  (Less Dark Blue)
     --blue-dark   : #1b96e9  (Dark Blue)
     --bg          : #f8f8f8  (Porcelain Whisper)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --blue-light   : #2596be;
  --blue-dark    : #1b96e9;
  --bg           : #f8f8f8;
  --white        : #ffffff;
  --surface      : #e2e1e1;
  --border       : #d0e8f5;
  --text-dark    : #000000;
  --text-body    : #000000;
  --text-muted   : #8fa3b1;
  --teal-check   : #2eb89a;
  --footer-bg    : #0f1e2b;
  --shadow-sm    : 0 2px 12px rgba(37,150,190,.08);
  --shadow-md    : 0 6px 28px rgba(27,150,233,.14);
  --radius       : 10px;
  --radius-sm    : 6px;
  --transition   : .25s ease;
  --container    : 1180px;
  --nav-h        : 70px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
p  { color: var(--text-body); font-weight: 500; font-size: 1rem; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--alt { background: var(--surface); }
.section--white { background: var(--white); }
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(27,150,233,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 1.1rem; font-weight: 500; color: var(--text-body); line-height: 1.8; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: scale(1.03);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--surface);
  border-color: var(--surface);
  transform: scale(1.03);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(37,150,190,.12); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; fill: white; }
.nav-logo-text { font-family: 'Poppins', sans-serif; }
.nav-logo-text span:first-child {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 550;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue-dark);
  background: rgba(27,150,233,.07);
}
.nav-links > li > a svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  transition: transform var(--transition);
}
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
  padding: 8px 0;
  z-index: 10;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--surface);
  color: var(--blue-dark);
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 24px; font-size: .85rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s ease, opacity .3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav ul {
  list-style: none;
  padding: 16px 24px 24px;
}
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul li a:hover { color: var(--blue-dark); }
.mobile-nav .mobile-dropdown { padding-left: 16px; }
.mobile-nav .mobile-dropdown a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg);
}
.mobile-nav .mobile-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0 4px;
}
.mobile-nav .btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  width: 100%;
}

/* ── PAGE HEADER (inner pages) ────────────────────────────── */
.page-header {
  margin-top: var(--nav-h);
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, rgba(15,30,43,.78) 0%, rgba(27,150,233,.55) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.page-header .container { width: 100%; }
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: white; }

/* ── SERVICE CARD ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 10px; color: var(--text-dark); }
.service-card-body p { font-size: 1rem; color: var(--text-body); margin-bottom: 16px; font-weight: 500; }
.service-card-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.service-card-features { list-style: none; margin-bottom: 22px; }
.service-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-body);
  padding: 4px 0;
}
.service-card-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--teal-check);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── PRICING CARD ─────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(27,150,233,.18);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--blue-dark);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-desc { font-size: .95rem; color: var(--text-muted); margin-bottom: 24px; font-weight: 500; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg);
}
.pricing-features li:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--teal-check);
}
.pricing-card .btn { width: 100%; text-align: center; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step-counter;
}
.step-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  counter-increment: step-counter;
  position: relative;
  transition: transform var(--transition);
}
.step-item:hover { transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-item p { font-size: 1rem; font-weight: 500; color: var(--text-body); }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(27,150,233,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--blue-dark); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 1rem; font-weight: 500; color: var(--text-body); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem; color: var(--text-dark); }
.author-location { font-size: .8rem; color: var(--text-muted); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: white; font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  list-style: none;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-dark); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: rgba(27,150,233,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}
.faq-item[open] .faq-icon {
  background: var(--blue-dark);
  color: white;
  transform: rotate(45deg);
}
.faq-item[open] summary { color: var(--blue-dark); }
.faq-answer {
  padding: 0 0 22px;
  font-size: .93rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ── NEIGHBORHOODS ────────────────────────────────────────── */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.neighborhood-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.neighborhood-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.neighborhood-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.neighborhood-card:hover img { transform: scale(1.05); }
.neighborhood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,30,43,.82) 0%, rgba(15,30,43,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.neighborhood-overlay h3 { color: white; font-size: 1.1rem; margin-bottom: 4px; }
.neighborhood-overlay p { color: rgba(255,255,255,.85); font-size: 1.2rem; font-weight: 500; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-item p { color: rgba(255,255,255,.88); font-size: 1rem; font-weight: 500; margin-top: 6px; }

/* ── RESULTS GALLERY ──────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
}
.result-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.result-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}
.result-item:hover img { transform: scale(1.04); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-text span:first-child { color: white; }
.footer-brand .nav-logo-text span:last-child { color: rgba(255,255,255,.45); }
.footer-brand p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.58);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-dark); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  stroke: var(--blue-light); fill: none; stroke-width: 1.8;
}
.footer-contact-item span {
  font-size: 1.1rem;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 45px; height: 45px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover {
  background: var(--blue-dark);
  color: white;
}
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--blue-dark); }

/* ── FORM STYLES ─────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-dark);  
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(27,150,233,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238fa3b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── MAP SECTION ─────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrapper iframe { display: block; width: 100%; height: 450px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}