* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}
/* GENERAL BODY STYLES */
body {
  font-family: 'Poppins', sans-serif;
  background: #fdfbf6;
  color: #333;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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");
}

/* BANNER */
.banner {
    height: 400px;
    background:
        url("../images/contact_banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;      /* vertical center */
    justify-content: flex-start; /* move content to left */
    padding-left: 60px;       /* space from left edge */
    color: #fff;
}
.banner-content {
    text-align: left;
}

.banner h1 {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 6000;
    margin-bottom: 12px;
}

.banner p {
    font-size: clamp(15px, 2vw, 20px);
    color: #f9e547; /* coconut yellow */
    font-weight: 500;
}


/* CONTACT SECTION */
.contact-section {
    /* background: #f6f4ef; */
    padding: 70px 40px;
}

.contact-container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 150px;
}

/* GET IN TOUCH */
.contact-info {
    width: 40%;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border-left: 6px solid #2f5d2f;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-left: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.contact-info h2 {
    margin-bottom: 25px;
    color: #2f5d2f;
}

.info-box {
    margin-bottom: 20px;
}

.info-box h4 {
    color: #8f7007; /* brown */
    margin-bottom: 6px;
}

.info-box p {
    color: #333;
    line-height: 1.6;

}


/* CONTACT FORM */
/* .contact-form {
    width: 40%;
  background: #faf7f2;
    padding: 35px;
    border-radius: 12px;
    border-left: 6px solid #f6e884;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-left :  70px;
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #2f5d2f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c4e5c4;
}

.contact-form .row {
    display: flex;
    gap: 15px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg,#186518);
    color: #010a0e;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
} */

/* HOVER EFFECT */
.contact-form button:hover {
    background: linear-gradient(90deg,  #dbc41a); /* gradient shift */
    color: #fff;  /* text changes to white */
    transform: translateY(-3px) scale(1.05);  /* move up & slightly bigger */
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);  /* deeper shadow */
}

/* CARD HOVER EFFECT */
.contact-info:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}
/* mobile friendly */
/* ================= RESPONSIVE ================= */

/* Tablets & below */
@media (max-width: 992px) {

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-info {
        width: 100%;
        margin-left: 0;
    }
}

/* Mobile devices */
@media (max-width: 576px) {

    /* Banner */
    .banner {
        height: 260px;
        padding-left: 20px;
        justify-content: center;
        text-align: center;
    }

    .banner-content {
        text-align: center;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner p {
        font-size: 15px;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 20px;
    }

    .contact-info {
        padding: 25px 20px;
        border-left-width: 4px;
    }

    .contact-form .row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form button {
        font-size: 14px;
        padding: 13px;
    }
}
/* floating wats app */
.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;
  transform: scale(1.1);
}

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