/* GENERAL BODY STYLES */
body {
  font-family: 'Poppins', sans-serif;
  background: #fdfbf6;
  color: #333;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/coconut_leaf.png") center/cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #2f5d3a;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* HEADER & NAVBAR */
.main-header {
  padding: 0;
}

.navbar-brand {
  margin-right: 0;
}

.main-logo {
  width: 100px;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #2f5d3a;
  margin-top: 5px;
  margin-bottom: 0;
}

.brand-tagline {
  color: #7a6a3d;
  font-size: 14px;
}

.navbar-nav .nav-link {
  margin: 0 15px;
  font-weight: 500;
  color: #2f5d3a;
  font-size: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c9a227;
}

.navbar-toggler {
  border-color: #2f5d3a;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(47, 93, 58, 0.7 )' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ABOUT BANNER */
.about-banner {
  height: 450px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/about_banner2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner h1 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  padding: 0 1rem;
}

/* OUR STORY SECTION */
.our-story-section {
  text-align: justify;
}

.story-image {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

/* MISSION & VISION SECTION */
.mission-vision-section {
  background: #2f5d3a;
}

.mv-box {
  background: linear-gradient(135deg, #f3ecd3, #fff8e1);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

.mv-box h3 {
  font-family: 'Playfair Display', serif;
  color: #2f5d3a;
}

/* WHY US SECTION */
.why-us-section .why-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.why-us-section .why-card:hover {
  background: #5A3E2B;
  color: #fff;
  transform: translateY(-8px);
}

.why-us-section .icons {
  width: 60px;
  margin-bottom: 15px;
}

/* CERTIFICATIONS SECTION */
.certifications-section {
  background: #fdfbf6;
}

.cert-grid img {
  width: 180px;
  margin: 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.cert-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: #faf7f2;
}

.testimonial-carousel {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.testimonial {
  background: #fff;
  width: 300px;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial::before {
  content: "❝";
  font-size: 50px;
  color: #c9a227;
  position: absolute;
  top: -15px;
  left: 20px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial span {
  font-weight: 500;
  color: #2f5d3a;
}

.testimonial:hover {
  transform: translateY(-10px);
  background: #2f5d3a;
  color: #fff;
}

.testimonial:hover span {
  color: #fff;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.wa-float:hover {
  background: #20b358;
  color: white;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 15px;
  }
  .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .our-story-section {
    text-align: center;
  }
}
