* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #0f3d2e;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #0f3d2e;
}

h4 {
    font-size: 20px;
    color: #0f3d2e;
}

h6 {
    font-weight: 700;
    font-size: 12px;
    color: #0f3d2e;
}

p {
    font-size: 16px;
    color: #ffffff;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
    background: #f5f1eb;
    color: #0E1F1C;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar {
    background-color: #0f3d2e !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999;
}

.navbar .logo {
    width: 130px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #f5f1eb !important;
    padding: 10px 20px;
    position: relative;
    transition: 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c9a24d !important;
}

.navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: #c9a24d;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

#hero {
    position: relative;
    min-height: 100vh;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../img/BABG2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(14,31,28,0.65),
        rgba(14,31,28,0.25)
    );
    z-index: 1;
}

#hero h1,
#hero h2,
#hero h4,
#hero p,
#hero a {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

#hero h1 {
    color: #D6B15E;
}

/* Hero animations */
#hero h4 { animation: fadeDown 1s ease forwards; }
#hero h2 { animation: fadeLeft 1.2s ease forwards; }
#hero h1 { animation: fadeRight 1.4s ease forwards; }
#hero p  { animation: fadeUp 1.6s ease forwards; }
#hero a  { animation: fadeUp 1.9s ease forwards; }

#hero button {
    background-color: #D6B15E;
    border: none;
    padding: 12px 32px;
    color: #0E1F1C;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.35s ease;
}

#hero button:hover {
    transform: translateY(-3px);
    background-color: #c4a24f;
}

.section-p1 {
    padding: 60px 80px;
}

#feature {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fe-box {
    width: 23%;
    text-align: center;
    padding: 25px 15px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.fe-box:hover {
    transform: translateY(-8px);
}

.fe-box img {
    width: 80px;
    margin-bottom: 15px;
}

/*FOOTER*/

.BA-footer {
  background-color: #0f3d2e;
  color: #f5f1eb;
  padding: 60px 0 20px;
  font-size: 14px;
}

.BA-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

.BA-footer-box {
  line-height: 1.8;
}

.BA-footer-logo {
  color: #c9a24d;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.BA-footer-box h3 {
  color: #c9a24d;
  margin-bottom: 15px;
  font-size: 18px;
}

.BA-footer-text {
  color: #e6e2dc;
}

.BA-footer-box i {
  color: #c9a24d;
  margin-right: 8px;
}

.BA-footer-links {
  list-style: none;
  padding: 0;
}

.BA-footer-links li {
  margin-bottom: 10px;
}

.BA-footer-links a {
  color: #e6e2dc;
  text-decoration: none;
  transition: 0.3s ease;
}

.BA-footer-links a:hover {
  color: #c9a24d;
}

.BA-footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.BA-footer-form input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.BA-footer-form button {
  background-color: #c9a24d;
  color: #0f3d2e;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.BA-footer-form button:hover {
  background-color: #b8933f;
}

.BA-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #e6e2dc;
}

/*Animations*/
@keyframes heroZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/*Responsive*/
@media (max-width: 991px) {
    .section-p1 { padding: 40px; }
    #feature { justify-content: center; gap: 20px; }
    .fe-box { width: 45%; }
    .BA-footer-container { padding: 0 40px; }
}

@media (max-width: 576px) {
    #hero {
        padding: 0 25px;
        height: 75vh;
        text-align: center;
        align-items: center;
    }

    .fe-box { width: 100%; }

    .BA-footer-container {
        padding: 0 25px;
        text-align: center;
    }

    .BA-footer-form {
        flex-direction: column;
        align-items: center;
    }

    .BA-footer-form input,
    .BA-footer-form button {
        width: 100%;
        max-width: 320px;
    }
}


/* Responsive */

@media (max-width: 576px) {

    h1 {
        font-size: 32px;
        line-height: 42px;
    }

    h2 {
        font-size: 28px;
        line-height: 38px;
    }

    p {
        font-size: 14px;
    }

    .section-p1 {
        padding: 30px 20px;
    }

    .navbar .logo {
        width: 100px;
    }

    #hero {
        padding: 60px 20px;
        align-items: center;
        text-align: center;
        background-position: center;
    }

    #hero button {
        padding: 12px 28px;
        font-size: 14px;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        width: 100%;
        max-width: 280px;
    }

    .BA-footer-container {
        padding: 0 20px;
        gap: 30px;
        text-align: center;
    }

    .BA-footer-form {
        flex-direction: column;
    }

    .BA-footer-form button {
        width: 100%;
    }
}

@media (min-width: 577px) and (max-width: 992px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }

    .section-p1 {
        padding: 40px 40px;
    }

    #hero {
        padding: 80px 40px;
        background-position: center right;
    }

    #feature {
        justify-content: center;
        gap: 20px;
    }

    #feature .fe-box {
        width: 220px;
    }

    .BA-footer-container {
        padding: 0 30px;
        gap: 35px;
    }
}

@media (min-width: 993px) {

    #hero {
        height: 90vh;
    }

    .section-p1 {
        padding: 60px 80px;
    }

    #feature .fe-box {
        width: 180px;
    }
}