/* ================================
   GLOBAL RESET (FIXES BREAKAGE)
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #1e1e1e;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================
   VARIABLES
================================ */
:root {
  --primary: #1f7a3f;
  --gold: #d4af37;
  --dark: #1e1e1e;
  --light: #f6f6f6;
}

/* ================================
   HEADER FIX (BIGGEST ISSUE)
================================ */
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 55px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav li {
  list-style: none;
}

.nav li a {
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  color: #fff;
  background: var(--dark);
  transition: 0.3s;
}

.nav li a:hover {
  background: #f35525;
}

/* ================================
   MOBILE MENU FIX
================================ */
.menu-trigger {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-trigger {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav li a {
    width: 100%;
    text-align: center;
    border-radius: 0;
    background: #fff;
    color: #1e1e1e;
    border-bottom: 1px solid #eee;
  }
}

/* ================================
   BANNER FIX (WAS OVERFLOWING)
================================ */
.main-banner {
  margin-top: 80px;
}

.main-banner .item {
  height: 80vh;
  background-size: cover;
  background-position: center;
}

/* ================================
   SECTION SPACING FIX
================================ */
.section {
  padding: 80px 0;
}

/* ================================
   FEATURED SECTION FIX
================================ */
.featured .left-image {
  position: relative;
}

.featured .left-image a {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background: #25D366;
  padding: 12px;
  border-radius: 50%;
}

.featured .left-image a img {
  width: 35px;
}

/* ================================
   ACCORDION FIX
================================ */
.accordion-button {
  font-weight: 500;
}

.accordion-body ul {
  padding-left: 20px;
}

/* ================================
   INFO TABLE FIX
================================ */
.info-table {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-table li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-table img {
  margin-right: 15px;
}

/* ================================
   WHATSAPP BUTTON (FIXED)
================================ */
.whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ================================
   VIDEO FIX
================================ */
.video {
  padding: 100px 0;
  background: #f8f8f8;
  text-align: center;
}

.video-frame {
  position: relative;
}

.video-frame a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  padding: 15px;
  border-radius: 50%;
}

/* ================================
   FUN FACTS FIX
================================ */
.fun-facts {
  text-align: center;
}

.counter {
  background: #ffeee9;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ================================
   CONTACT FIX (MAJOR ALIGNMENT FIX)
================================ */
.contact-content {
  margin-top: -100px;
}

.contact-content .item {
  display: flex;
  align-items: center;
  padding: 20px;
}

.contact-content img {
  margin-right: 15px;
}

/* EMAIL ICON FIX */
.email-icon {
  list-style: none;
}

.email-icon a {
  color: #f35525;
  font-size: 20px;
}

/* ================================
   FORM FIX
================================ */
#contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background: #f6f6f6;
}

#contact-form button {
  background: #1e1e1e;
  color: #fff;
  padding: 12px;
  border-radius: 25px;
  border: none;
}

/* ================================
   FOOTER FIX
================================ */
footer {
  background: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ================================
   SMALL SCREEN POLISH
================================ */
@media (max-width: 768px) {
  .featured .row {
    flex-direction: column;
  }

  .info-table {
    margin-top: 30px;
  }

  .contact-content {
    margin-top: 0;
  }
}