@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #062822;
    --dark-green-rgb: 6, 40, 34;
    --accent-gold: #EAB308;
    --accent-gold-rgb: 234, 179, 8;
    --dark-bg: #01140F;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-muted: #6C757D;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-green);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.bg-dark-bg {
    background-color: var(--dark-bg) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #d19f07;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
    color: var(--primary-green);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    border: 2px solid var(--white);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Sections */
section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

/* Navbar Customization */
.glass-navbar {
    background-color: rgba(6, 40, 34, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.glass-navbar .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 20px !important;
}

.glass-navbar .nav-link.active {
    color: var(--accent-gold) !important;
}

/* Footer */
.main-footer {
    background-color: #00281e;
    /* Darker green matching the image */
    padding: 80px 0 40px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.footer-links,
.footer-contact-info {
    padding-left: 0;
    list-style: none;
}

.footer-links li,
.footer-contact-info li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.badge-gold {
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subpage Hero Banner */
.subpage-hero {
    background: linear-gradient(to right, rgba(0, 40, 30, 0.85), rgba(0, 40, 30, 0.5)), url('../images/img-banner.webp');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    margin-top: -90px;
    padding-top: 90px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.subpage-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subpage-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-right-img {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 991px) {
    .subpage-hero h1 {
        font-size: 2.8rem;
    }

    .hero-right-img {
        display: none;
    }

    .subpage-hero {
        height: 400px;
        text-align: center;
    }

    .subpage-hero p {
        margin: 0 auto;
    }
}

/* Modal Form Styles */
.message-form-box {
    background: #F8FBFA;
    border-radius: 24px;
}

.message-form-box .form-control {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.message-form-box .form-control:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.btn-emerald {
    background-color: #10B981;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-emerald:hover {
    background-color: #059669;
    color: white;
    transform: translateY(-2px);
}