:root {
  --primary: #1c7c54;
  --primary-dark: #145c3e;
  --accent: #25D366;
  --dark: #1a1a1a;
  --muted: #6b7280;
  --light: #f6f8f7;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* Language Toggle */
.lang-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.lang-toggle button {
  background: white;
  border: none;
  padding: 6px 12px;
  margin-left: 6px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  z-index: 1000;
}

/* Hero */
.hero {
  min-height: 80vh;
  background: url("../images/banner-1.jpg") center/cover no-repeat;
}

.hero-overlay {
  min-height: inherit;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 24px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-overlay p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section.light {
  background: var(--light);
}

.section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* Slider */
.slider {
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.15);
}

.slide {
  display: none;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.slide.active {
  display: block;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Map */
.map {
  max-width: 1000px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 20px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .slide {
    height: 260px;
  }
}