* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #1f6b3a;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.navbar a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}



/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("https://i.postimg.cc/ncTbVT4b/logo.jpg") center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #f4b400;
}

.hero-buttons {
  margin-top: 20px;
}

/* SECTIONS */
.section {
  padding: 60px 40px;
  text-align: center;
}

.section.light {
  background: #f4f4f4;
}

.section h2 {
  margin-bottom: 30px;
  color: #1f6b3a;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* WHY LIST */
.why-list {
  list-style: none;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.why-list li {
  margin-bottom: 10px;
}

/* ABOUT */
.about-text {
  max-width: 700px;
  margin: auto;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  background: #ccc;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.gallery-note {
  margin-top: 10px;
  font-size: 14px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: center;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

form button {
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #1f6b3a;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .navbar {
    flex-direction: column;
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

/* PRICING LIST */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-block {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.price-block h3 {
  color: #1f6b3a;
  margin-bottom: 10px;
}

.price-block ul {
  list-style: none;
  padding-left: 0;
}

.price-block ul li {
  margin-bottom: 8px;
}

.note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.featured {
  border: 3px solid #f4b400;
}
.disclaimer {
  margin-top: 30px;
  font-size: 14px;
  color: #444;
}

/* PREMIUM PACKAGES */
.premium-packages {
  background: linear-gradient(#0f3d26, #1f6b3a);
  color: #fff;
}

.premium-packages h2{
  color:#f4b400
}

.subtitle {
  margin-bottom: 30px;
  opacity: 0.9;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.package-card {
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-align: left;
}


.package-card h3 {
  color: #1f6b3a;
  margin-bottom: 5px;
}

.package-tag {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.package-card ul li {
  margin-bottom: 8px;
}

.package-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.featured {
  border: 3px solid #f4b400;
  transform: scale(1.05);
}

.premium-border {
  border: 3px solid #2ecc71;
}

.addons {
  margin-top: 60px;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
}

.addons h3 {
  margin-bottom: 15px;
}

.addons ul {
  list-style: none;
}

.addons ul li {
  margin-bottom: 8px;
}

.closing-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
}

