/* ============================================
   BOWL DELIVERY LOCAL OPTIONS GUIDE
   Base Stylesheet - Map-Inspired Local Style
   Colors: Light Green + White + Gray
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --green-primary: #4CAF50;
  --green-light: #81C784;
  --green-pale: #E8F5E9;
  --green-dark: #2E7D32;
  --green-mid: #388E3C;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --map-dot: #4CAF50;
  --map-line: #A5D6A7;
  --map-bg: #F1F8E9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--green-dark);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
}

p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 100px 0;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header .eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  display: inline-block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
  line-height: 1.1;
}

.nav-logo .logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.dropdown-menu a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.dropdown-menu a .dm-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76,175,80,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76,175,80,0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green-light);
}

.btn-secondary:hover {
  background: var(--green-pale);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost {
  background: var(--green-pale);
  color: var(--green-dark);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--green-light);
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================
   MAP-STYLE UI COMPONENTS
   ============================================ */

/* Map Background Pattern */
.map-bg {
  background-color: var(--map-bg);
  background-image:
    linear-gradient(rgba(165,214,167,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,214,167,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.map-bg-dark {
  background-color: var(--green-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Pin / Location Marker */
.map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(76,175,80,0.4);
  position: relative;
  flex-shrink: 0;
}

.map-pin::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
}

.map-pin-sm {
  width: 28px;
  height: 28px;
}

.map-pin-sm::after {
  width: 10px;
  height: 10px;
}

/* Area Cards */
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-light);
}

.area-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.area-card h3 {
  margin-bottom: 10px;
  color: var(--gray-900);
}

.area-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.area-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--green-pale);
  color: var(--green-dark);
}

.tag-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Coverage Map Block */
.coverage-block {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.coverage-block .coverage-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 20px;
}

.coverage-cell {
  height: 30px;
  border-radius: 4px;
  background: var(--gray-100);
}

.coverage-cell.active {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
}

.coverage-cell.high {
  background: var(--green-primary);
  opacity: 0.7;
}

/* Route Line */
.route-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0;
}

.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

.route-segment {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green-light) 0,
    var(--green-light) 8px,
    transparent 8px,
    transparent 16px
  );
}

/* Info Block / Callout */
.info-block {
  background: var(--green-pale);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-block p {
  color: var(--green-dark);
  font-size: 0.95rem;
  margin: 0;
}

/* Stat Cards */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 24px;
  text-align: center;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-main {
  background: linear-gradient(150deg, #F1F8E9 0%, #E8F5E9 50%, #F9FAFB 100%);
  padding: 100px 0 80px;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--gray-900);
}

.hero h1 .highlight {
  color: var(--green-primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  border-radius: 2px;
  opacity: 0.4;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.map-preview-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.map-preview-card .map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.map-preview-card .map-header .map-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.map-preview-card .map-header .map-subtitle {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.map-grid {
  background: var(--map-bg);
  background-image:
    linear-gradient(rgba(165,214,167,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,214,167,0.4) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: var(--radius-md);
  height: 200px;
  position: relative;
  overflow: hidden;
}

.map-area-block {
  position: absolute;
  border-radius: var(--radius-sm);
  background: rgba(76,175,80,0.15);
  border: 1.5px solid rgba(76,175,80,0.4);
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-marker .pin {
  width: 20px;
  height: 20px;
  background: var(--green-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(76,175,80,0.5);
}

.map-marker .pin-label {
  margin-top: 6px;
  background: var(--white);
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.map-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-primary) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb .current {
  color: rgba(255,255,255,0.9);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* Feature Card */
.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.feature-card .fc-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-card h4 {
  margin-bottom: 10px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Bowl Type Card */
.bowl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

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

.bowl-card-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.bowl-card-header .bowl-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
}

.bowl-card-body {
  padding: 20px;
}

.bowl-card-body h4 {
  margin-bottom: 8px;
}

.bowl-card-body p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--green-pale);
  position: relative;
}

.blog-card-img .post-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.blog-card-body p {
  font-size: 0.88rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-top: 14px;
}

.read-more:hover {
  gap: 10px;
}

/* ============================================
   SPLIT LAYOUTS
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-layout.reverse > *:first-child {
  order: 2;
}

.split-layout.reverse > *:last-child {
  order: 1;
}

.split-content h2 {
  margin-bottom: 16px;
}

.split-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.check-list {
  margin: 20px 0 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--gray-600);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--green-pale);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps-wrapper {
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% - 1px);
  bottom: 28px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--green-light) 0,
    var(--green-light) 8px,
    transparent 8px,
    transparent 16px
  );
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.step-item:last-child { margin-bottom: 0; }

.step-item.left .step-content { grid-column: 1; grid-row: 1; text-align: right; }
.step-item.left .step-number { grid-column: 2; grid-row: 1; }
.step-item.left .step-space { grid-column: 3; grid-row: 1; }

.step-item.right .step-space { grid-column: 1; grid-row: 1; }
.step-item.right .step-number { grid-column: 2; grid-row: 1; }
.step-item.right .step-content { grid-column: 3; grid-row: 1; }

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(76,175,80,0.35);
  z-index: 1;
  position: relative;
  justify-self: center;
}

.step-content h4 {
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}

.accordion-header:hover {
  background: var(--gray-50);
}

.accordion-header h4 {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 600;
  margin: 0;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--green-primary);
  color: var(--white);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--gray-50);
}

.accordion-body p {
  font-size: 0.92rem;
  margin: 0;
  padding-top: 16px;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ============================================
   LOCATION MAP SECTION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map-visual {
  background: var(--map-bg);
  background-image:
    linear-gradient(rgba(165,214,167,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,214,167,0.4) 1px, transparent 1px);
  background-size: 35px 35px;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-info {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  margin-bottom: 20px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.location-detail:last-of-type {
  border-bottom: none;
}

.location-detail .ld-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-detail .ld-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 3px;
}

.location-detail .ld-text span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-primary) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

.cta-banner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.footer-contact-item .fci-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.footer-bottom-links a:hover {
  color: var(--green-light);
}

/* ============================================
   SIDEBAR LAYOUT (Inner Pages)
   ============================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  color: var(--gray-900);
}

.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.sidebar-links a::before {
  content: '→';
  color: var(--green-light);
  font-size: 0.8rem;
}

/* ============================================
   ARTICLE CONTENT (Blog)
   ============================================ */
.article-content h2 {
  font-size: 1.7rem;
  margin: 40px 0 16px;
  color: var(--gray-900);
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
  color: var(--gray-800);
}

.article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid var(--green-primary);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--green-dark);
  margin: 0;
}

/* ============================================
   DELIVERY ZONE VISUAL
   ============================================ */
.zone-map {
  background: var(--map-bg);
  background-image:
    linear-gradient(rgba(165,214,167,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,214,167,0.35) 1px, transparent 1px);
  background-size: 36px 36px;
  border-radius: var(--radius-xl);
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green-light);
}

.zone-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-label {
  background: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TABLE STYLES
   ============================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.data-table tr:last-child td {
  border-bottom: none;
}

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

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--gray-900);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--gray-800);
}

.legal-content p, .legal-content li {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 6px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-dark { color: var(--gray-900); }
.text-muted { color: var(--gray-500); }
.bg-pale { background: var(--green-pale); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-center {
  margin: 16px auto 24px;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--gray-800);
  color: var(--gray-400);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.disclaimer-bar a {
  color: var(--green-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse > *:first-child { order: 0; }
  .split-layout.reverse > *:last-child { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-main { padding: 70px 0 60px; }
  .location-grid { grid-template-columns: 1fr; }
  .steps-wrapper::before { display: none; }
  .step-item { grid-template-columns: 60px 1fr; }
  .step-item.left .step-content { grid-column: 2; text-align: left; }
  .step-item.left .step-number { grid-column: 1; }
  .step-item.left .step-space { display: none; }
  .step-item.right .step-space { display: none; }
  .step-item.right .step-number { grid-column: 1; }
  .step-item.right .step-content { grid-column: 2; }
  .cta-banner { padding: 40px 28px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .cta-banner, .sidebar { display: none; }
  body { font-size: 12pt; }
  .container { max-width: 100%; }
}