﻿/*=============================
ROOT
==============================*/

:root{

    --primary:var(--brand-green-dark);
    --secondary:var(--brand-gold);

    --white:#ffffff;
    --black:#111827;

    --text:#374151;

    --transition:.35s ease;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:16px;

}

/*=============================
RESET
==============================*/

.site-header,
.site-header *{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

.site-header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    font-family:Poppins,sans-serif;

}

.nav-wrapper{

    width:min(92%,1360px);
    margin:auto;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}
/*=====================================================
TOP BAR
======================================================*/

.top-bar{

    background:rgba(11,61,46,.96);

    border-bottom:1px solid rgba(255,255,255,.08);

    position:relative;

    z-index:10;

}

.top-bar .nav-wrapper{

    height:48px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left,
.top-center,
.top-right{

    display:flex;

    align-items:center;

}

.top-left,
.top-center{

    gap:8px;

    color:#fff;

    font-size:14px;

    font-weight:400;

}

.top-left i,
.top-center i{

    color:var(--brand-gold);

    font-size:13px;

}

.top-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 18px;
    border-radius:8px;
    background:rgb(245, 240, 240);
    color:var(--brand-gold);
    font-size:14px;
    font-weight:600;
    transition:var(--transition);
}

.top-btn:hover{
    background:#fff;
    color:var(--brand-green-dark);
    text-decoration: none;
    transform:translateY(-2px);

}
/*=====================================================
MAIN NAVIGATION
======================================================*/

.main-navigation{

    background:transparent;

    transition:var(--transition);

}

.navbar{

    height:92px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}
.navbar img{
    margin-top:0px;
    width:210px;
    display:block;

}
/*=====================================================
DESKTOP MENU
======================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.menu>li{

    position:relative;

}

.menu>li>a{

    position:relative;

    display:flex;

    align-items:center;

    gap:8px;

    font-size:15px;

    font-weight:500;

    color:#222;

    transition:.3s;

}

.menu>li>a:hover{

    color:#16A34A;
    text-decoration:none;
}
.menu>li>a.active{

    color:#16A34A;

    font-weight:600;

}

.menu>li>a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:100%;

    height:3px;

    background:var(--brand-gold);

    border-radius:20px;

}
.menu i{

    font-size:12px;

    transition:.3s;

}

.dropdown:hover>a i{

    transform:rotate(180deg);

}
/*=====================================================
DESKTOP DROPDOWN
======================================================*/

.dropdown{

    position:relative;

}

.submenu{

    position:absolute;

    top:135%;

    left:0;

    min-width:180px;

    background:#fff;

    border-radius:16px;

    padding:14px 0;

    box-shadow:0 20px 55px rgba(0,0,0,.12);

    border:1px solid rgba(0,0,0,.05);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:999;

}

.dropdown:hover>.submenu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
    text-decoration:none;

}

.submenu li{

    width:100%;

}

.submenu li a{

    display:flex;

    align-items:center;

    padding:14px 24px;

    color:#374151;

    font-size:14px;

    font-weight:500;

    transition:.3s;

}
.submenu li a:hover{

    background:#F5FAF7;

    color:#16A34A;
    text-decoration:none;
    padding-left:32px;

}
.dropdown>.submenu::before{

    content:"";

    position:absolute;

    top:-8px;

    left:35px;

    width:16px;

    height:16px;

    background:#fff;

    transform:rotate(45deg);

    border-left:1px solid rgba(0,0,0,.05);

    border-top:1px solid rgba(0,0,0,.05);

}
.dropdown::after{

    content:"";

    position:absolute;

    left:0;

    top:100%;

    width:100%;

    height:20px;

}
/*=====================================================
STICKY HEADER
======================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    transition:.4s ease;

}

.site-header.sticky .top-bar{

    height:0;

    overflow:hidden;

    opacity:0;

    border:none;

}

.site-header.sticky .main-navigation{

    background:rgba(14, 13, 13, 0.63);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.site-header.sticky .navbar{

    height:78px;

}

.site-header.sticky .logo img{

    width:185px;

}

.site-header.sticky .menu>li>a{

    color:#fff;

}
.site-header.sticky .menu>li>a.active{

    color:#16A34A;

    font-weight:600;

}
.site-header.sticky .menu>li>a:hover{

    color:#16A34A;

}
@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}

.site-header.sticky{

    animation:slideDown .35s ease;

}
.hamburger{
    display:none;
}
/*=========================================
MOBILE NAVIGATION
=========================================*/
.mobile-cta{
    display:none;
}

@media (max-width:991px){

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

.top-bar{
    display:none;
}

.main-navigation{
    background:#ffffff;
    height:80px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar{
    height:80px;
}

.logo img{
    width:170px;
}
/* Show only on mobile */

.mobile-cta{
    display:block;
    width:100%;
    margin-top:auto;
    padding-top:30px;
}
/* Hamburger */

.hamburger{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:none;
    cursor:pointer;
    position:relative;
    z-index:10001;
}

.hamburger span{
    position:absolute;
    width:28px;
    height:3px;
    background:var(--brand-green-dark);
    color:var(--brand-green-dark);
    border-radius:20px;
    transition:.35s ease;
}

.hamburger span:nth-child(1){
    transform:translateY(-8px);
}

.hamburger span:nth-child(2){
    transform:translateY(0);
}

.hamburger span:nth-child(3){
    transform:translateY(8px);
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
}
/* Offcanvas */

.menu{

    position:fixed;

    top:0;

    right:-360px;

    width:340px;

    height:100vh;

    background:#3531314b;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    padding:110px 35px 40px;

    gap:0;

    transition:.45s ease;

    overflow-y:auto;

    z-index:9998;

    box-shadow:-10px 0 40px rgba(0,0,0,.25);

}

.menu.active{

    right:0;

}
/* ===========================
   MOBILE MENU LINKS
=========================== */

.menu li{
    width:100%;
    list-style:none;
}

.menu > li > a{

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    padding:18px 0;

    color:#fff;

    font-size:17px;

    font-weight:500;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.menu > li > a:hover{

    color:#16A34A;

    padding-left:10px;

}

.menu > li > a.active{

    color:var(--brand-gold);

    font-weight:600;

}

.menu > li > a i{

    font-size:12px;

    transition:.35s;

}
/* ===========================
   MOBILE SUBMENU
=========================== */

.submenu{

    position:static;

    display:none;

    background:rgba(255,255,255,.05);

    margin:0;

    padding:10px 0;

    border-radius:12px;

    box-shadow:none;

    opacity:1;

    visibility:visible;

    transform:none;

}

.dropdown.active .submenu{

    display:block;

}

.submenu li a{

    display:block;

    color:#d9d9d9;

    text-decoration:none;

    padding:14px 18px;

    font-size:15px;

    transition:.3s;

}

.submenu li a:hover{

    color:var(--brand-gold);

    padding-left:26px;

}
.dropdown.active > a i{

    transform:rotate(180deg);

}
/*==============================
MOBILE MENU OVERLAY
==============================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(3px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9997;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}
.hamburger{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:6px;

}

.hamburger span{

    width:28px;

    height:3px;

    border-radius:20px;

    background:var(--brand-green-dark);

    transition:.35s;

}

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}
/*==================================
MENU ITEM ANIMATION
==================================*/

.menu li{

    opacity:0;

    transform:translateX(30px);

    transition:.45s ease;

}

.menu.active li{

    opacity:1;

    transform:translateX(0);

}

.menu.active li:nth-child(1){transition-delay:.08s;}
.menu.active li:nth-child(2){transition-delay:.14s;}
.menu.active li:nth-child(3){transition-delay:.20s;}
.menu.active li:nth-child(4){transition-delay:.26s;}
.menu.active li:nth-child(5){transition-delay:.32s;}
.menu.active li:nth-child(6){transition-delay:.38s;}
.menu::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:rgb(35, 107, 86);

}
.mobile-cta{

    margin-top:auto;

    width:100%;

    padding-top:35px;

}

.mobile-cta p{

    color:#fff;

    font-size:14px;

    margin-bottom:14px;

}

.mobile-cta a{

    display:block;

    width:100%;

    text-align:center;

    background:var(--brand-gold);

    color:#fff;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.mobile-cta a:hover{

    background:#16A34A;

    transform:translateY(-2px);

}
.menu > li > a.active{

    color:var(--brand-gold);

    font-weight:600;

}

.menu > li > a.active::before{

    content:"";

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--brand-gold);

    margin-right:10px;

}
}
/*======================================================
                FOOTER
======================================================*/

.site-footer{
    position:relative;
    margin-top:180px;
    background:#101828;
    color:#fff;
}

/*======================================================
                    CTA
======================================================*/

.footer-cta{
    width:min(92%,1280px);
    margin:auto;
    transform:translateY(-85px);
    position:relative;
    z-index:5;
}

.footer-cta-content{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

    padding:55px 70px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        var(--brand-green-dark),
        #138A3E
    );

    box-shadow:
    0 20px 60px rgba(0,0,0,.22);

}

.footer-cta-content h2{

    color:#fff;
    font-size:2.2rem;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.25;

}

.footer-cta-content p{

    color:rgba(255,255,255,.88);

    max-width:820px;

    font-size:1.05rem;

    line-height:1.8;

}

.footer-cta-btn{

    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 36px;

    border-radius:14px;

    background:#fff;

    color:var(--brand-green-dark);

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.footer-cta-btn:hover{

    background:var(--brand-gold);
    color:#fff;

    transform:translateY(-5px);

    text-decoration:none;

}

/*======================================================
                MAIN FOOTER
======================================================*/

.footer-main{

    padding:20px 0 70px;

}

.footer-container{

    width:min(92%,1280px);

    margin:auto;

    display:grid;

    grid-template-columns:1.25fr .9fr .9fr 1fr;

    gap:70px;

}

/*======================================================
                LOGO
======================================================*/

.footer-about img{

    width:180px;

    margin-bottom:28px;

}

.footer-about p{

    color:#B6C2D1;

    line-height:1.9;

    font-size:.9rem;

    margin-bottom:35px;

}

/*======================================================
                HEADINGS
======================================================*/

.footer-container h4{

    position:relative;

    color:#fff;

    font-size:1.2rem;

    font-weight:600;

    margin-bottom:35px;

}

.footer-container h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:55px;

    height:3px;

    border-radius:20px;

    background:var(--brand-gold);

}

/*======================================================
                    LINKS
======================================================*/
.footer-container > div{
    text-align:left;
}

.footer-container h4{
    text-align:left;
}

.footer-container ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-container li{
    margin-bottom:18px;
}

.footer-container li a{
    display:inline-block;
    color:#B6C2D1;

    text-decoration:none;

    transition:.3s;
}
.footer-container li a::before{

    content:"";

    margin-right:8px;

    color:var(--brand-gold);

    opacity:0;

    transform:translateX(-8px);

    transition:.3s;

}
.footer-container li a:hover{

    color:#16A34A;

    transform:translateX(6px);

}

.footer-container li a:hover::before{

    opacity:1;

    transform:translateX(0);
}
/*======================================================
                CONTACT
======================================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    color:#B6C2D1;

    line-height:1.8;

}

.footer-contact i{

    width:18px;

    color:var(--brand-gold);

    margin-top:4px;

    flex-shrink:0;

}

/*======================================================
                SOCIALS
======================================================*/

.footer-socials{

    display:flex;

    gap:16px;

}

.footer-socials a{

    width:44px;

    height:44px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;
    background:linear-gradient(135deg,var(--brand-green-dark),#15945C);

    color:var(--brand-gold);

    transition:.35s;

}

.footer-socials a:hover{

    background:#138A3E;
    text-decoration:none;
    border-color:#138A3E;

    color:#fff;

    transform:translateY(-4px);

}

/*======================================================
                COPYRIGHT
======================================================*/
.footer-bottom-content{
    width:min(92%,1320px);
    margin:auto;
    display:flex;
    align-items:center;
    font-size:0.9rem;
    justify-content:space-between;
    gap:20px;
}

.footer-legal-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-legal-links a{
    color:#fff;
    font-size:0.85rem;
    font-family:play;
    text-decoration:none;
    transition:.3s ease;
}

.footer-legal-links a:hover{
    color:var(--brand-gold);
    text-decoration:none;
}

.footer-legal-links span{
    color:#687386;
    font-size:.75rem;
}
/* ======================================
   FOOTER - TABLET
====================================== */

@media (max-width:992px){

    .footer-cta{
        width:92%;
    }
    
    .footer-cta-content{
        padding:40px;
        flex-direction:column;
        text-align:center;
        gap:25px;
    }
    
    .footer-cta h2{
        font-size:2rem;
    }
    
    .footer-cta p{
        max-width:100%;
    }
    
    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:50px 40px;
    }
    
}
/* ======================================
   FOOTER - MOBILE
====================================== */

@media (max-width:768px){
    
    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
    .site-footer{
        margin-top:80px;
    }
    
    /* CTA */
    
    .footer-cta{
        transform:translateY(-45px);
    }
    
    .footer-cta-content{
        padding:30px 24px;
        border-radius:18px;
    }
    
    .footer-cta h2{
        font-size:1.7rem;
        line-height:1.3;
    }
    
    .footer-cta p{
        font-size:.96rem;
        line-height:1.7;
    }
    
    .footer-cta-btn{
        width:100%;
        text-align:center;
        padding:16px;
    }
    
    /* Main Footer */
    
    .footer-main{
        padding:10px 0 50px;
    }
    
    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
    }
    
    /* About */
    
    .footer-about{
        text-align:center;
    }
    
    .footer-about img{
        margin:0 auto 25px;
    }
    
    .footer-about p{
        max-width:100%;
    }
    
    .footer-socials{
        justify-content:center;
    }
    
    /* Headings */
    
    .footer-container h4{
        margin-bottom:24px;
    }
    
    .footer-container h4::after{
        left:0;
    }
    
    /* Contact */
    
    .footer-contact li{
        font-size:.95rem;
    }
    
    .footer-bottom{
        font-size:.9rem;
        line-height:1.7;
        padding:18px;
    }
    
}
/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .footer-cta{
        width:94%;
    }
    
    .footer-cta-content{
        padding:24px 18px;
    }
    
    .footer-cta h2{
        font-size:1.45rem;
    }
    
    .footer-cta p{
        font-size:.9rem;
    }
    
    .footer-about img{
        width:170px;
    }
    
    .footer-socials a{
        width:42px;
        height:42px;
    }
    
    .footer-container{
        gap:35px;
    }
    
}

