/* ============================================================
   JUNK REMOVAL VIRGINIA BEACH — styles.css
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --green:        #16A34A;
  --green-dark:   #15803D;
  --green-light:  #DCFCE7;
  --green-xlight: #F0FDF4;
  --orange:       #EA580C;
  --orange-dark:  #C2410C;
  --orange-light: #FFF7ED;
  --yellow:       #FBBF24;
  --white:        #FFFFFF;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-300:     #D1D5DB;
  --gray-600:     #4B5563;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --text:         #1F2937;
  --text-muted:   #6B7280;

  --font:         'Inter', system-ui, -apple-system, sans-serif;

  --container:    1200px;
  --pad:          1.5rem;
  --radius-sm:    0.375rem;
  --radius:       0.5rem;
  --radius-lg:    0.75rem;
  --radius-xl:    1rem;
  --radius-full:  9999px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);

  --header-h:   80px;
  --ease:       250ms ease;
  --ease-fast:  150ms ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

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

/* ── Section shared ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}
.section-header a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.section-header a:hover { text-decoration: underline; }
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}
.btn-lg  { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl  { padding: 1.125rem 2.25rem; font-size: 1.25rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Floating mobile CTA ───────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  align-items: center;
  gap: 0.5rem;
  animation: pulse-orange 2.5s infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,.45), var(--shadow-xl); }
  60%       { box-shadow: 0 0 0 14px rgba(234,88,12,0), var(--shadow-xl); }
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
.logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 62px; width: auto; }
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--green);
}
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.main-nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--ease-fast);
}
.main-nav a:hover  { color: var(--green); }
.main-nav a.active { color: var(--green); border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.header-cta { flex-shrink: 0; }
.nav-mobile-cta { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21,128,61,.88) 0%,
    rgba(17,24,39,.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.text-orange { color: #FDBA74; }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  opacity: 0.93;
  margin-bottom: 1.75rem;
}
.phone-inline {
  color: #FDE68A;
  font-weight: 700;
  text-decoration: none;
}
.phone-inline:hover { text-decoration: underline; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.text-yellow { color: var(--yellow); }

/* Hero form */
.hero-form { align-self: start; }
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}
label span { color: var(--orange); }
input, select, textarea {
  padding: 0.7rem 0.875rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
input.error, select.error { border-color: #DC2626; }
input.error:focus, select.error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.15); }
.error-msg {
  color: #DC2626;
  font-size: 0.8rem;
  min-height: 1rem;
}
.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--green);
  color: var(--white);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
}
.trust-item i { font-size: 1.625rem; opacity: 0.9; }

/* ── Services ──────────────────────────────────────────────── */
.services {
  padding: 5rem 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--ease);
  cursor: default;
}
/* Linked service card wrapper */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card--linked {
  cursor: pointer;
  border-color: var(--green-light);
  position: relative;
}
.service-card--linked::after {
  content: '→';
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  font-size: 0.75rem;
  color: var(--green);
  opacity: 0.6;
  transition: opacity var(--ease), transform var(--ease);
}
.service-card-link:hover .service-card--linked {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green);
}
.service-card-link:hover .service-card--linked::after {
  opacity: 1;
  transform: translateX(3px);
}
.service-card.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease, box-shadow var(--ease), border-color var(--ease);
}
.service-card.reveal.visible {
  opacity: 1;
  transform: none;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green);
}
.service-card i {
  font-size: 1.875rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}
.service-card h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.3;
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: 5rem 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 0;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--green-light);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(22,163,74,.35);
}
.step-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.step p { color: var(--text-muted); font-size: 0.9375rem; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery {
  padding: 5rem 0;
  background: var(--gray-50);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.gallery-pair {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
}
.gallery-pair figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-pair figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-pair figure:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.before-label { background: #DC2626; color: var(--white); }
.after-label  { background: var(--green); color: var(--white); }
.gallery-case-label {
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.gallery-case-label i { color: var(--green); }
.team-photo {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.team-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.team-caption {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ── Service Areas ─────────────────────────────────────────── */
.service-areas {
  padding: 5rem 0;
  background: var(--white);
}
.city-regs {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.city-regs li { color: var(--text); line-height: 1.6; }

.areas-subheading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 1rem;
  padding-left: 0.25rem;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.area-chip {
  padding: 0.45rem 1rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all var(--ease-fast);
}
.area-chip:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}
.area-chip--city {
  background: var(--orange-light);
  color: var(--orange-dark);
}
.area-chip--city:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews {
  padding: 5rem 0;
  background: var(--gray-50);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}
.reviews-aggregate .stars { color: var(--yellow); font-size: 1.75rem; }
.reviews-aggregate strong { font-size: 1.5rem; font-weight: 800; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.review-card.reveal.visible { opacity: 1; transform: none; }
.review-stars { color: var(--yellow); font-size: 1.25rem; }
.review-card blockquote p {
  color: var(--gray-700);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.review-card footer { margin-top: auto; }
.review-card footer strong { display: block; font-weight: 700; color: var(--gray-900); }
.review-card footer span  { font-size: 0.8125rem; color: var(--text-muted); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing {
  padding: 5rem 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 0;
}
.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--ease);
}
.pricing-card.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease, box-shadow var(--ease);
}
.pricing-card.reveal.visible { opacity: 1; transform: none; }
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}
.pricing-card--featured.reveal.visible { transform: scale(1.04); }
.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-tier {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.pricing-amount strong { font-weight: 800; }
.pricing-card > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.pricing-features li i { color: var(--green); font-size: 0.875rem; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  padding: 5rem 0;
  background: var(--gray-50);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  gap: 1rem;
  list-style: none;
  color: var(--gray-900);
  transition: background var(--ease-fast);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--ease);
}
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-answer a { color: var(--orange); font-weight: 600; }

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  padding: 5rem 0;
  background: var(--green);
  color: var(--white);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.final-cta-text h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.final-cta-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.urgency-msg {
  margin-top: 1rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.final-cta .form-card .form-title { font-size: 1.25rem; }
.final-cta .form-card .form-sub { margin-bottom: 1rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-brand img { height: 90px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #9CA3AF;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--ease-fast);
}
.footer-col a:hover { color: var(--green); }
.footer-col address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}
.footer-col address i { color: var(--green); margin-top: 0.1rem; flex-shrink: 0; }
.footer-col address a { color: #9CA3AF; }
.footer-col address a:hover { color: var(--green); }
.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.footer-hours i { color: var(--green); }
.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(22,163,74,.15);
  color: #86EFAC;
  border: 1px solid rgba(22,163,74,.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.footer-map {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.footer-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: #6B7280;
}
.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom nav a { color: #6B7280; text-decoration: none; }
.footer-bottom nav a:hover { color: var(--green); }

/* ── Scroll-to-top ─────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top-btn:hover { background: var(--green-dark); }

/* ── Reveal animation base ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content         { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .hero-form            { max-width: 100%; }
  .hero-text h1         { font-size: 2.5rem; }
  .services-grid        { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .final-cta-inner      { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .final-cta-text       { text-align: center; }
  .final-cta-text .urgency-msg { justify-content: center; }
  .pricing-card--featured { transform: scale(1.02); }
  .pricing-card--featured.reveal.visible { transform: scale(1.02); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header — Noron-style dropdown panel */
  .site-header { overflow: visible; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 0;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    display: flex;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav > ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
  }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active { color: var(--yellow); border-bottom: none; padding-bottom: 1rem; }
  /* Disable hover-triggered dropdown on touch — iOS sticky hover fix */
  .nav-has-dropdown:hover .nav-dropdown { display: none; }
  .nav-has-dropdown:hover .nav-arrow { transform: none; }
  /* Sub-menu accordion */
  .main-nav .nav-dropdown {
    position: static;
    display: none;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.05);
    min-width: 0;
    padding: 0.25rem 0;
  }
  .main-nav .nav-has-dropdown.is-open .nav-dropdown { display: block; }
  .main-nav .nav-has-dropdown.is-open .nav-arrow { transform: rotate(180deg); }
  .main-nav .nav-dropdown > li > a {
    color: rgba(255,255,255,.8);
    padding: 0.7rem 1.5rem 0.7rem 2.25rem;
    font-size: 0.9375rem;
    justify-content: flex-start;
  }
  .main-nav .nav-dropdown > li > a:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
  }
  .nav-dropdown-inner,
  .nav-dropdown-col { display: block; border: none !important; min-width: 0; }
  .nav-col-header { color: rgba(255,255,255,.4); padding-left: 1.5rem; }
  .nav-dropdown-col ul li a {
    color: rgba(255,255,255,.8);
    padding: 0.6rem 1.5rem 0.6rem 2.25rem;
    justify-content: flex-start;
  }
  .nav-dropdown-col ul li a:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
  }
  /* Mobile CTA inside nav */
  .nav-mobile-cta {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-mobile-cta a {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--ease-fast);
  }
  .nav-mobile-cta a:hover { background: var(--orange-dark); }
  .hamburger     { display: flex; }
  .hamburger span { background: var(--gray-700); }
  .header-cta    { display: none; }
  .float-cta     { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--header-h) + 1.5rem) 0 3rem; }
  .hero-content  { gap: 2rem; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-trust    { font-size: 0.8125rem; gap: 0.875rem; }

  /* Trust bar */
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }

  /* Gallery */
  .gallery-grid  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Reviews */
  .reviews-grid  { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured.reveal.visible { transform: none; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Scroll top */
  .scroll-top-btn { bottom: 5rem; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile ≤ 480px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --pad: 1rem; }
  .hero-text h1 { font-size: 1.875rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card { padding: 1.25rem 0.75rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { font-size: 0.875rem; }
  .reviews-aggregate { flex-direction: column; gap: 0.375rem; }
  .section-header h2 { font-size: 1.5rem; }
  .footer-bottom nav { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===== NAV DROPDOWN ===== */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-arrow { font-size: 0.7rem; transition: transform 0.2s; }
.nav-has-dropdown:hover .nav-arrow,
.nav-has-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.75rem 0 0.5rem;
  min-width: 200px;
  z-index: 200;
  list-style: none;
}
.nav-dropdown > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown > li > a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav-dropdown-inner {
  display: flex;
  gap: 0;
}
.nav-dropdown-col {
  min-width: 160px;
}
.nav-dropdown-col + .nav-dropdown-col {
  border-left: 1px solid #e5e7eb;
}
.nav-dropdown-col.no-border {
  border-left: none !important;
}
.nav-col-header {
  padding: 0.25rem 1rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: .05em;
  white-space: nowrap;
}
.nav-col-header.invisible {
  visibility: hidden;
}
.nav-dropdown-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dropdown-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--text);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-col ul li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown { display: block; }

/* ===== CITY PAGE LAYOUT ===== */
.city-page-wrap {}
.city-main { min-width: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.55rem 0;
  font-size: 0.8rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #6b7280;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.3rem; }
.breadcrumb a { color: var(--color-green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #9ca3af; user-select: none; }
.breadcrumb-current { color: #374151; font-weight: 500; }

/* ===== CITY INTRO (below hero) ===== */
.city-intro {
  background: #fff;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.city-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.city-intro p {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 640px;
}
.city-intro p a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}
.city-intro p a:hover { text-decoration: underline; }

/* ===== CITY INFO SECTION ===== */
.city-info { background: #f9fafb; padding: 5rem 0; }
.city-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.city-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.city-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.city-info-card h3 i { color: var(--green); }
.city-stats, .city-landmarks, .city-weather, .city-regulations {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
}
.city-stats li, .city-weather li { padding-left: 0; }
.city-landmarks li::before, .city-regulations li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-right: 0.5rem;
}
.city-info-card--regulations { grid-column: 1 / -1; }
.regulations-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
  background: var(--green-light);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
}
.regulations-note i { color: var(--green); margin-right: 0.3rem; }
.regulations-note a { color: var(--green-dark); font-weight: 600; }
@media (max-width: 768px) {
  .city-info-grid { grid-template-columns: 1fr; }
  .city-info-card--regulations { grid-column: 1; }
}
