/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f6ef;
  color: #1e3d34;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #1e3d34;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 60px;
}
.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #f9f6ef;
}
#lang-toggle {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  background: #f9f6ef;
  color: #1e3d34;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
#lang-toggle:hover {
  background: #e2ddd3;
  transform: scale(1.05);
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #f9f6ef, #d8e2db);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero h1 span {
  color: #1e3d34;
}
.hero p {
  margin: 20px auto;
  max-width: 600px;
  font-size: 1.2rem;
}
.buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 25px;
  font-weight: 600;
  background: #1e3d34;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}
.buttons .btn:hover {
  background: #274f44;
  transform: scale(1.05);
}
.btn-alt {
  background: #f9f6ef;
  color: #1e3d34;
  border: 2px solid #1e3d34;
}
.btn-alt:hover {
  background: #1e3d34;
  color: #fff;
}

/* Services */
.services {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  padding: 20px;
  border-radius: 15px;
  background: #f9f6ef;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card h3 {
  margin-bottom: 10px;
  color: #1e3d34;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #d8e2db;
}

/* Contact */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #1e3d34;
  color: #fff;
}

/* Animations */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.animate-slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.show {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
