/* ============================================================
   Redding Tote Rentals — Main Stylesheet
   Color Palette:
     Primary Green : #2D6A4F
     Light Green   : #40916C
     Accent Gold   : #E9A832
     Background    : #FAFAF8
     Dark Text     : #1A2E1A
     Mid Text      : #4A5568
     Border        : #E2E8E0
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #FAFAF8;
  color: #1A2E1A;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  font-weight: 700;
  color: #1A2E1A;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p  { color: #4A5568; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D6A4F;
  background: #D4EDDA;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header p { font-size: 1.05rem; margin-top: 0.75rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #2D6A4F;
  color: #fff;
}
.btn-primary:hover { background: #245940; }

.btn-accent {
  background: #E9A832;
  color: #1A2E1A;
}
.btn-accent:hover { background: #d4951f; }

.btn-outline {
  background: transparent;
  color: #2D6A4F;
  border: 2px solid #2D6A4F;
}
.btn-outline:hover { background: #2D6A4F; color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2E8E0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}
#navbar.scrolled .nav-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #2D6A4F;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: #2D6A4F;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-logo span { line-height: 1.15; }
.nav-logo small { display: block; font-size: 0.6rem; font-weight: 500; color: #4A5568; letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5568;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: #2D6A4F; background: #EBF5EE; }

.nav-cta { margin-left: 0.8rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.6rem;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #2D6A4F;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #E2E8E0;
  gap: 0.25rem;
  background: rgba(250, 250, 248, 0.98);
  width: 100%;
}
.mobile-menu.open {
  display: flex !important;
  flex-direction: column !important;
}
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  color: #1A2E1A;
  transition: background 0.18s;
}
.mobile-menu a:hover { background: #EBF5EE; color: #2D6A4F; }
.mobile-menu .btn { margin-top: 0.5rem; text-align: center; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2318 0%, #1a4030 40%, #2D6A4F 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13, 35, 24, 0.88) 0%,
    rgba(45, 106, 79, 0.55) 60%,
    rgba(45, 106, 79, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(233,168,50,0.2);
  border: 1px solid rgba(233,168,50,0.4);
  color: #E9A832;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-text h1 { color: #fff; margin-bottom: 1rem; }
.hero-text h1 .accent { color: #E9A832; }
.hero-text > p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 1.5rem; }

.hero-bullets { margin-bottom: 2rem; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.hero-bullets li .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: #E9A832;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 500px;
}
.hero-stat-cards {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.stat-card .stat-icon { font-size: 1.3rem; }
.stat-card .stat-text strong { display: block; font-size: 0.9rem; color: #1A2E1A; font-family: 'Poppins', sans-serif; }
.stat-card .stat-text span { font-size: 0.72rem; color: #4A5568; }

/* ── Why Us / Features ────────────────────────────────────── */
.features-section { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  border: 1px solid #E2E8E0;
  background: #FAFAF8;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #2D6A4F;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,106,79,0.12); border-color: #2D6A4F; }
.feature-card:hover::before { transform: scaleY(1); }

.feature-icon {
  width: 58px; height: 58px;
  background: #EBF5EE;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: background 0.22s;
}
.feature-card:hover .feature-icon { background: #2D6A4F; }

.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.feature-card p { font-size: 0.95rem; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section { background: #F2F7F4; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 2px solid #E2E8E0;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(45,106,79,0.14); }

.pricing-card.popular {
  border-color: #2D6A4F;
  box-shadow: 0 8px 40px rgba(45,106,79,0.18);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: #E9A832;
  color: #1A2E1A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card .pkg-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #4A5568;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.pricing-card .pkg-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1A2E1A;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card .pkg-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-card .pkg-period { font-size: 0.82rem; color: #4A5568; margin-bottom: 1.2rem; }

.pricing-divider { height: 1px; background: #E2E8E0; margin: 1.2rem 0; }

.pkg-features { margin-bottom: 1.5rem; }
.pkg-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: #4A5568;
  padding: 0.35rem 0;
}
.pkg-features li .check { color: #2D6A4F; font-weight: 700; font-size: 0.85rem; }

.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card.popular .btn { background: #2D6A4F; color: #fff; }

/* ── How It Works ─────────────────────────────────────────── */
.how-section { background: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 3.2rem; left: calc(16.6% + 1rem); right: calc(16.6% + 1rem);
  height: 2px;
  background: linear-gradient(to right, #2D6A4F, #E9A832, #2D6A4F);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px; height: 64px;
  background: #2D6A4F;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  border: 4px solid #F2F7F4;
  box-shadow: 0 0 0 2px #2D6A4F;
  position: relative;
  z-index: 1;
}
.step-card:nth-child(2) .step-num { background: #E9A832; box-shadow: 0 0 0 2px #E9A832; color: #1A2E1A; }

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.step-card h3 { margin-bottom: 0.6rem; }
.step-card p { font-size: 0.95rem; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: #F2F7F4; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid #E2E8E0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(45,106,79,0.1); }

.stars { color: #E9A832; font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 0.05em; }

.testimonial-card .quote { font-size: 0.97rem; color: #4A5568; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-card .quote::before { content: '\201C'; font-size: 2rem; color: #E9A832; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }

.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D6A4F, #40916C);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem; color: #fff;
}
.reviewer-info strong { display: block; font-size: 0.9rem; color: #1A2E1A; font-family: 'Poppins', sans-serif; }
.reviewer-info span { font-size: 0.8rem; color: #4A5568; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a4030 0%, #2D6A4F 60%, #40916C 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(233,168,50,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Local Section ────────────────────────────────────────── */
.local-section { background: #fff; }

.local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.local-image-wrap { position: relative; }
.local-image-wrap img { border-radius: 20px; box-shadow: 0 20px 60px rgba(45,106,79,0.15); }
.local-badge-float {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #E9A832;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(233,168,50,0.3);
}
.local-badge-float strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.8rem; color: #1A2E1A; }
.local-badge-float span { font-size: 0.8rem; color: #5a3e10; font-weight: 600; }

.local-text .section-label { margin-bottom: 1rem; }
.local-text h2 { margin-bottom: 1rem; }
.local-text p { margin-bottom: 1.5rem; }

.local-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem;
  background: #F2F7F4;
  border-radius: 10px;
}
.pillar .pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.88rem; color: #1A2E1A; font-family: 'Poppins', sans-serif; margin-bottom: 0.15rem; }
.pillar span { font-size: 0.8rem; color: #4A5568; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #0d2318;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { color: #74C69D; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: #E9A832; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: #74C69D; }
.footer-bottom a:hover { color: #E9A832; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d2318 0%, #2D6A4F 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── About Page ───────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story img { border-radius: 20px; box-shadow: 0 20px 60px rgba(45,106,79,0.15); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-card {
  background: #fff;
  border: 1px solid #E2E8E0;
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,106,79,0.1); }
.value-card .v-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

.service-areas {
  background: #F2F7F4;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.area-chip {
  background: #fff;
  border: 2px solid #E2E8E0;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.area-chip:hover { border-color: #2D6A4F; transform: translateY(-2px); }
.area-chip .area-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.area-chip strong { display: block; font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: #1A2E1A; }
.area-chip span { font-size: 0.78rem; color: #4A5568; }

/* ── How It Works Page ────────────────────────────────────── */
.hiw-steps { background: #fff; }
.hiw-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E2E8E0;
}
.hiw-item:last-child { border-bottom: none; }
.hiw-num {
  width: 64px; height: 64px;
  background: #2D6A4F;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800;
  flex-shrink: 0;
}
.hiw-item:nth-child(even) .hiw-num { background: #E9A832; color: #1A2E1A; }
.hiw-body h3 { margin-bottom: 0.6rem; }
.hiw-body p { margin-bottom: 0.8rem; }
.hiw-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #EBF5EE;
  color: #2D6A4F;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
}

.faq-section { background: #F2F7F4; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #E2E8E0;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: #1A2E1A;
  gap: 1rem;
}
.faq-q:hover { background: #F2F7F4; }
.faq-q .faq-arrow { color: #2D6A4F; font-size: 1.1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.93rem;
  color: #4A5568;
  display: none;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info-card {
  background: #2D6A4F;
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-detail .cd-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 0.15rem; }
.contact-detail span { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.hours-grid { margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1.5rem; }
.hours-grid h4 { color: #E9A832; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.8); padding: 0.3rem 0; }

/* ── Forms ────────────────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #E2E8E0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { color: #4A5568; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A2E1A;
  margin-bottom: 0.4rem;
}
.form-group label .req { color: #2D6A4F; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E2E8E0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1A2E1A;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234A5568'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; margin-top: 0.5rem; }

.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-message .success-icon {
  width: 72px; height: 72px;
  background: #EBF5EE;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}
.success-message h3 { color: #2D6A4F; margin-bottom: 0.5rem; }
.success-message p { color: #4A5568; }

/* ── Pricing Page extras ──────────────────────────────────── */
.pricing-note {
  background: #EBF5EE;
  border: 1px solid #74C69D;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note .note-icon { font-size: 1.2rem; flex-shrink: 0; }
.pricing-note p { font-size: 0.9rem; color: #1A2E1A; margin: 0; }

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.addon-card {
  background: #fff;
  border: 1px solid #E2E8E0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.addon-card:hover { border-color: #2D6A4F; transform: translateY(-2px); }
.addon-icon { font-size: 1.8rem; flex-shrink: 0; }
.addon-card strong { display: block; font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: #1A2E1A; margin-bottom: 0.2rem; }
.addon-card span { font-size: 0.82rem; color: #4A5568; }
.addon-price { margin-top: 0.4rem; font-size: 1rem; font-weight: 700; color: #2D6A4F; font-family: 'Poppins', sans-serif; }

/* ── Booking Page ─────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.booking-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: #F2F7F4;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid #E2E8E0;
  margin-bottom: 1.2rem;
}
.sidebar-card h4 { font-size: 0.95rem; margin-bottom: 0.8rem; color: #1A2E1A; }
.sidebar-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: #4A5568;
  padding: 0.3rem 0;
}
.sidebar-list li .chk { color: #2D6A4F; font-weight: 700; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .local-inner { grid-template-columns: 1fr; gap: 3rem; }
  .local-image-wrap { order: -1; }
  .local-badge-float { bottom: 1rem; right: 1rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid, .pricing-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .add-ons-grid { grid-template-columns: 1fr; }
  .local-pillars { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .areas-grid { grid-template-columns: 1fr; }
}
