* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: #E0E0E0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
.section { padding: 6vw 3vw; text-align: center; position: relative; }
.content-section { padding-top: clamp(100px, 10vw, 150px); }
h1 { font-size: clamp(2rem, 5vw, 4rem); color: #4CAF50; }
h2 { font-size: clamp(1.5rem, 3.5vw, 3rem); color: #388E3C; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); color: #4CAF50; }
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-decoration: none;
}
.btn:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5); background: #388E3C; }

/* Topbar */
.topbar {
  background: #333;
  color: #fff;
  padding: clamp(5px, 0.8vw, 10px) clamp(10px, 2vw, 20px) clamp(1px, 0.3vw, 3px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(10px, 0.8vw, 12px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}
.topbar-contact { display: flex; gap: clamp(5px, 1vw, 10px); }
.topbar-contact a { 
  color: #fff; 
  text-decoration: none; 
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.topbar-contact a:hover { color: #4CAF50; }
.topbar-address {
  flex-grow: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.topbar-address i { margin-right: 0.3rem; }
.topbar-social { display: flex; gap: clamp(5px, 0.8vw, 10px); }
.topbar-social a {
  color: #fff;
  font-size: clamp(12px, 1.2vw, 16px);
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}
.topbar-social a:hover { transform: scale(1.2); color: #4CAF50; }

/* Navbar */
.navbar {
  position: fixed;
  top: clamp(15px, 1.5vw, 25px);
  width: 100%;
  background: #fff;
  padding: clamp(15px, 2vw, 25px) clamp(10px, 2vw, 20px) clamp(5px, 1vw, 10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid #4CAF50;
}
.navbar.scrolled {
  padding: clamp(10px, 1.5vw, 20px) clamp(10px, 2vw, 20px) clamp(3px, 0.8vw, 8px);
  top: clamp(10px, 1vw, 20px);
}
.logo { height: clamp(50px, 6vw, 80px); transition: height 0.3s ease; }
.navbar.scrolled .logo { height: clamp(40px, 5vw, 60px); }
.nav-container {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}
.nav-links {
  display: flex;
  gap: clamp(10px, 1.5vw, 20px);
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 16px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #4CAF50;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 80%; }
.nav-links a:hover, .nav-links a.active { color: #4CAF50; }
.search-bar {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #4CAF50;
  font-size: clamp(12px, 1vw, 14px);
  width: clamp(100px, 15vw, 200px);
  transition: width 0.3s ease, border-color 0.3s ease;
}
.search-bar:focus { width: clamp(150px, 20vw, 250px); border-color: #388E3C; outline: none; }
.navbar .btn {
  font-size: clamp(12px, 1vw, 14px);
  background: #4CAF50;
}
.burger {
  display: none;
  width: 1.5rem;
  height: 1rem;
  cursor: pointer;
  position: relative;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  background: #4CAF50;
  border-radius: 0.15rem;
  transition: all 0.3s ease;
}
.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 0.5rem; width: 70%; }
.burger-line:nth-child(3) { top: 1rem; }
.burger.is-active .burger-line:nth-child(1) { top: 0.5rem; transform: rotate(135deg); }
.burger.is-active .burger-line:nth-child(2) { opacity: 0; }
.burger.is-active .burger-line:nth-child(3) { top: 0.5rem; transform: rotate(-135deg); }

/* Mega Menu */
.mega-menu-item { position: relative; }
.mega-menu {
  display: none; /* Default hidden */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 999;
  width: 700px;
  max-width: 90vw;
  border-radius: 10px;
  justify-content: space-between;
  gap: 1.5rem;
}
.mega-menu-column {
  flex: 1;
  padding: 0.5rem;
  text-align: left;
}
.mega-menu-column h3 { 
  margin-bottom: 0.75rem; 
  font-size: 1.2rem; 
  color: #388E3C; 
}
.mega-menu-column a {
  display: block;
  color: #555;
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: clamp(12px, 1vw, 14px);
  transition: color 0.3s ease;
}
.mega-menu-column a:hover { color: #4CAF50; }
.mega-menu-item:hover .mega-menu { 
  display: flex; /* Show only on hover */
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.mobile-menu.is-active { display: block; }
.mobile-menu .nav-links { 
  flex-direction: column; 
  gap: 0.5rem; 
}
.mobile-menu .mega-menu {
  display: none;
  position: static;
  width: 100%;
  box-shadow: none;
  padding: 0.5rem 0;
  transform: none;
  background: #f9f9f9;
}
.mobile-menu .mega-menu-column {
  padding: 0.25rem 0;
}
.mobile-menu .mega-menu-column a {
  padding: 0.3rem 1rem;
}
.mobile-menu .mega-menu-item.is-active .mega-menu { 
  display: block; /* Show only when active */
}
.mobile-contact {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}
.mobile-contact a {
  display: block;
  color: #333;
  text-decoration: none;
  margin: 0.5rem 0;
  font-size: clamp(12px, 1.2vw, 14px);
}
.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.mobile-social a {
  color: #4CAF50;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.mobile-social a:hover { transform: scale(1.2); }

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 7vw, 100px);
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-1.active { animation: slideInFromLeft 1s ease forwards; }
.slide-2.active { animation: zoomIn 1s ease forwards; }
.slide-3.active { animation: fadeIn 1s ease forwards; }
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: clamp(15px, 2vw, 30px);
}
.hero-content h1, .hero-content p, .hero-content .btn {
  opacity: 0;
  animation: fadeInUpContent 0.8s ease forwards;
}
.hero-content h1 { 
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  animation-delay: 0.2s; 
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 1rem 0;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation-delay: 0.4s;
}
.hero-content .btn { animation-delay: 0.6s; }

/* Grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 20px);
  justify-content: center;
  margin-top: 2vw;
}
.card {
  background: #fff;
  padding: clamp(10px, 1.5vw, 20px);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 clamp(180px, 22%, 250px);
  max-width: 250px;
}
.card img { width: 100%; height: auto; border-radius: 10px; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2); }

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: #fff;
  padding: clamp(30px, 4vw, 50px) clamp(10px, 2vw, 20px);
  text-align: center;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(10px, 1.5vw, 20px);
}
.footer-logo { height: clamp(50px, 6vw, 80px); margin-bottom: 0.5rem; }
.footer-top p {
  font-size: clamp(12px, 1.2vw, 14px);
  font-style: italic;
  color: #E0E0E0;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(10px, 1.5vw, 20px);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-section h3 {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a, .footer-links a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: clamp(11px, 1vw, 13px);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.footer-nav a:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.footer-links a:hover { text-decoration: underline; color: #fff; }
.footer-contact p {
  font-size: clamp(11px, 1vw, 13px);
  margin: 0.3rem 0;
  color: #E0E0E0;
}
.footer-contact i { margin-right: 0.5rem; }
.footer-social {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
}
.footer-social a {
  color: #E0E0E0;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover { transform: scale(1.2); color: #fff; }
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.footer-newsletter input {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  font-size: clamp(11px, 1vw, 13px);
}
.footer-newsletter button {
  padding: 0.5rem;
  border-radius: 5px;
  background: #FFFFFF;
  color: #388E3C;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover { background: #E0E0E0; }
.footer-map iframe {
  width: 100%;
  height: clamp(120px, 15vw, 180px);
  border: 0;
  border-radius: 10px;
}
.footer-credit {
  margin-top: 1.5rem;
  font-size: clamp(10px, 0.8vw, 12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
.footer-credit a {
  color: #E0E0E0;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; color: #fff; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUpContent {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}