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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Variables ===== */
:root {
  --green: #2E5E4E;
  --green-dark: #1F3F35;
  --green-light: #3A7A65;
  --copper: #C17F3E;
  --copper-light: #D4963F;
  --cream: #FDF8F0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.1), 0 12px 32px rgba(0,0,0,0.08);
  --max-width: 1140px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: var(--gray-800);
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0.75rem auto 0;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
}

.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(193, 127, 62, 0.35);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}

.nav-logo span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links .btn {
  padding: 0.625rem 1.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  color: #fff;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-points {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-points li {
  font-size: 1.15rem;
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  opacity: 0.9;
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--copper-light);
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
}

.hero-stat span {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--gray-50);
}

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

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: all 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card.popular,
.pricing-card.selected {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.pricing-card .price-period {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.pricing-card .includes {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
}

.pricing-card .includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.925rem;
  color: var(--gray-600);
}

.pricing-card .includes li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}

.pricing-note {
  margin-top: 2rem;
  color: var(--gray-600);
  font-size: 0.925rem;
}

.pricing-note strong {
  color: var(--gray-800);
}

/* ===== Pricing Table (Homepage) ===== */
.pricing-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.pricing-table td strong {
  font-size: 1.15rem;
  color: var(--green);
}

.pricing-table tr:hover {
  background: var(--gray-50);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ===== Delivery Zones ===== */
.delivery-zones {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.delivery-zones h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.zone-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
}

.zone-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.zone-label {
  font-weight: 700;
  font-size: 1rem;
}

.zone-free {
  border-color: var(--green);
  background: rgba(46, 94, 78, 0.04);
}

.zone-free .zone-label {
  color: var(--green);
}

.zone-paid .zone-label {
  color: var(--copper);
}

.zone-paid {
  border-color: var(--copper);
  background: rgba(193, 127, 62, 0.04);
}

.zone-self .zone-label {
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .zones-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ===== Benefits ===== */
.benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 10px;
}

.benefit-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.benefit-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 740px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-300);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Booking Form ===== */
.booking {
  background: var(--gray-50);
}

.booking-form-wrapper {
  max-width: 680px;
  margin: 3rem auto 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 94, 78, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  color: #fff;
}

.footer-brand .nav-logo span {
  color: var(--copper-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: #fff;
}

.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;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 4rem 0;
}

.cta h2 {
  color: #fff;
}

.cta .section-subtitle {
  color: rgba(255,255,255,0.85);
}

/* ===== Local Business ===== */
.local {
  background: var(--cream);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.local-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.local-item .benefit-icon {
  margin: 0 auto 0.75rem;
}

.local-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.local-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .local-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .local-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ===== Booking Page ===== */
.booking-pricing {
  padding-top: 7rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  section { padding: 3.5rem 0; }

  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 420px; margin: 2rem auto 0; }

  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 1rem;
  }
  .mobile-toggle { display: block; }

  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}
