/* Color palette: olive greens and warm neutrals */
:root {
  --olive-900: #2d3b2f;
  --olive-800: #3b4d3d;
  --olive-700: #4e6a50;
  --olive-600: #5f7e5f;
  --olive-500: #7e9b77;
  --gold-400: #c5a572;
  --cream-100: #f7f5ef;
  --cream-50: #fbfaf7;
  --text-900: #1f2a24;
  --text-700: #3a4a41;
  --muted-500: #6b7b71;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Noto Sans', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text-900);
  background: var(--cream-50);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: var(--olive-900);
  line-height: 1.25;
}

a { color: var(--olive-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream-100);
  border-bottom: 1px solid #e9e6da;
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--olive-900); }
.brand-mark { font-size: 22px; display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.brand-mark svg { display: block; width: 1em; height: 1em; }
.brand-name { font-size: 18px; }
.main-nav { display: flex; gap: 18px; }
.nav-link { color: var(--text-700); font-weight: 600; padding: 6px 8px; border-radius: 8px; }
.nav-link:hover, .nav-link.active { background: #ece9df; text-decoration: none; }

.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-btn { background: transparent; border: 0; font-weight: 700; color: var(--olive-800); cursor: pointer; padding: 6px 8px; border-radius: 8px; }
.lang-btn:hover { background: #ece9df; }
.lang-btn.active { color: var(--white); background: var(--olive-700); }
.divider { color: var(--muted-500); }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #f2efe5, #faf9f3 55%, #f7f2e6); }
.hero-inner { padding: 80px 0 96px; text-align: center; }
.hero-title { font-size: clamp(28px, 4vw, 44px); margin: 0 0 12px; }
.hero-subtitle { max-width: 720px; margin: 0 auto 26px; color: var(--text-700); }
.leaf-bg { position: absolute; inset: -10% -10% auto auto; height: 360px; width: 360px; opacity: 0.12; background: radial-gradient(120px 220px at 60% 40%, var(--olive-700), transparent 62%), radial-gradient(200px 160px at 45% 55%, var(--gold-400), transparent 62%); filter: blur(20px); transform: rotate(18deg); }

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; letter-spacing: 0.2px; }
.btn-primary { background: var(--olive-700); color: var(--white); box-shadow: 0 6px 14px rgba(78,106,80,0.25); }
.btn-primary:hover { background: var(--olive-800); text-decoration: none; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--cream-100); }
.grid.two { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
@media (max-width: 860px) { .grid.two { grid-template-columns: 1fr; } .hero-inner { padding: 56px 0 72px; } }

.illustration { display: grid; place-items: center; height: 220px; }
.oil-drop { display: inline-flex; align-items: center; justify-content: center; color: var(--olive-700); }
.oil-drop svg { width: 140px; height: 140px; display: block; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.07)); }

.service-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; }
.service-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding: 12px; border-radius: 12px; background: #fff; border: 1px solid #eee6d6; }
.icon { font-size: 18px; }

/* Page hero small */
.page-hero.small { background: linear-gradient(160deg, #f2efe5, #faf9f3 55%, #f7f2e6); padding: 28px 0; border-bottom: 1px solid #e9e6da; }

/* Contact page */
.contact-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; padding: 12px; border-radius: 12px; background: #fff; border: 1px solid #eee6d6; }
.label { font-weight: 700; color: var(--text-700); }
.card { background: #fff; border: 1px solid #eee6d6; border-radius: 16px; padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.05); }

/* Footer */
.site-footer { padding: 26px 0 40px; border-top: 1px solid #e9e6da; background: var(--cream-100); }
.footer-inner { display: flex; align-items: center; justify-content: center; }
.muted { color: var(--muted-500); }

/* Map */
.map { position: relative; width: 100%; padding-bottom: 56%; border-radius: 16px; overflow: hidden; border: 1px solid #eee6d6; background: #fff; }

/* Service Areas Section */
.areas-header {
  text-align: center;
  margin-bottom: 48px;
}

.areas-header h2 {
  margin-bottom: 12px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.area-card {
  background: var(--white);
  border: 1px solid #eee6d6;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.area-card.main-area {
  border-color: var(--olive-500);
  background: linear-gradient(135deg, var(--cream-50), var(--white));
}

.area-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.area-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
}

.area-card p {
  margin: 0;
  font-size: 14px;
}

.villages-section {
  background: var(--cream-100);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e9e6da;
}

.villages-section h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 18px;
}

.villages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.village-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #eee6d6;
  transition: background-color 0.2s ease;
}

.village-item:hover {
  background: #f8f6f0;
}

.village-icon {
  font-size: 20px;
}

.village-item span:last-child {
  font-weight: 600;
  color: var(--text-700);
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .villages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .villages-section {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .villages-grid {
    grid-template-columns: 1fr;
  }
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }


