/* =========================================================
           ROOT
        ========================================================= */

:root {
    --green-dark: #063b30;
    --green: #075a45;
    --green-mid: #08765a;
    --green-light: #eaf5ef;
    --gold: #d4a843;
    --gold-light: #efd27a;
    --cream: #f8f6ef;
    --white: #ffffff;
    --dark: #14221e;
    --text: #5f6864;
    --border: #e4ebe7;
    --shadow: 0 20px 60px rgba(4,55,43,.10);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans",sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1200px,92%);
    margin: auto;
}

section {
    position: relative;
}

.section {
    padding: 105px 0;
}


/* =========================================================
           PRELOADER
        ========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(255,255,255,.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
           TOP NOTICE
        ========================================================= */

.notice-bar {
    background: var(--green-dark);
    color: #fff;
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.notice-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .notice-left i {
        color: var(--gold-light);
    }

.notice-right {
    display: flex;
    gap: 22px;
}

    .notice-right span {
        opacity: .9;
    }

    .notice-right i {
        color: var(--gold-light);
        margin-right: 5px;
    }


/* =========================================================
           HEADER
        ========================================================= */

header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 5000;
    box-shadow: 0 4px 25px rgba(0,0,0,.06);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
 
}


.logo-symbol {
    width: 55px;
    height: 55px;
    background: var(--green-dark);
    color: var(--gold-light);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display",serif;
    font-size: 20px;
    font-weight: 700;
}

.logo-name strong {
    display: block;
    color: var(--green-dark);
    font-family: "Manrope",sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.logo-name span {
    display: block;
    color: #7b8580;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 27px;
}

nav a {
    color: #303a36;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

    nav a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: .3s;
    }

    nav a:hover,
    nav a.active {
        color: var(--green);
    }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

.apply-btn {
    background: var(--green-dark);
    color: #fff !important;
    padding: 13px 20px !important;
    border-radius: 5px;
}

    .apply-btn:hover {
        background: var(--gold);
        color: var(--green-dark) !important;
    }

    .apply-btn::after {
        display: none;
    }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--green-dark);
    font-size: 25px;
    cursor: pointer;
}
