
:root {
    --green: #126b45;
    --green-dark: #073b28;
    --green-deep: #052d20;
    --green-soft: #eaf5ef;
    --red: #b4232f;
    --red-dark: #8d1722;
    --red-soft: #f9eaec;
    --gold: #c8a45d;
    --black: #111816;
    --muted: #68736e;
    --white: #ffffff;
    --light: #f7f9f8;
    --border: #e5ebe8;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--black);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
}

a {
    text-decoration: none;
}

/* =========================
           TOP BAR
        ========================= */

.topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    padding: 9px 0;
}

    .topbar i {
        color: var(--gold);
    }

/* =========================
           NAVBAR
        ========================= */

.main-navbar {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}

.navbar-brand {
    color: var(--green-dark) !important;
    font-weight: 700;
    font-size: 20px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 700;
    border: 3px solid #d8eee2;
    margin-right: 10px;
}

.brand-name small {
    display: block;
    color: var(--red);
    font-size: 9px;
    letter-spacing: 2px;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #27332e;
    font-weight: 600;
    font-size: 14px;
    padding: 28px 15px !important;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--green);
    }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 22px;
            background: var(--red);
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
        }

.btn-classic {
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    font-weight: 600;
    transition: .25s ease;
}

    .btn-classic:hover {
        background: var(--green-dark);
        color: white;
        transform: translateY(-1px);
    }

.btn-red {
    background: var(--red);
    color: white;
    border: none;
    padding: 13px 25px;
    border-radius: 5px;
    font-weight: 600;
}

    .btn-red:hover {
        background: var(--red-dark);
        color: white;
    }

.btn-outline-classic {
    border: 1px solid rgba(255,255,255,.55);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
}

    .btn-outline-classic:hover {
        background: white;
        color: var(--green-dark);
    }

/* =========================
           HERO
        ========================= */

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 80% 20%, rgba(255,255,255,.08), transparent 30% ), linear-gradient( 115deg, var(--green-deep), var(--green-dark) 55%, #105a3c );
    color: white;
    padding: 105px 0 125px;
}

    .hero::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50%;
        right: -180px;
        top: -180px;
    }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8eadf;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

    .hero-label span {
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

.hero h1 {
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    font-weight: 600;
    max-width: 800px;
}

    .hero h1 em {
        color: #d8eee2;
        font-style: normal;
    }

.hero-description {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
    max-width: 630px;
    margin-top: 25px;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-trust {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.15);
    max-width: 650px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

    .hero-trust-item i {
        color: var(--gold);
        font-size: 17px;
    }

/* =========================
           HERO CARD
        ========================= */

.finance-card {
    background: white;
    color: var(--black);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
    position: relative;
    z-index: 2;
}

.finance-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.finance-card-title {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.finance-card-status {
    background: var(--green-soft);
    color: var(--green);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.balance {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: var(--green-dark);
}

.balance-label {
    color: var(--muted);
    font-size: 12px;
}

.finance-divider {
    border-top: 1px solid var(--border);
    margin: 25px 0;
}

.finance-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
}

    .finance-row span:first-child {
        color: var(--muted);
    }

    .finance-row strong {
        color: var(--green-dark);
    }

/* =========================
           TRUST BAR
        ========================= */

.trust-bar {
    margin-top: -35px;
    position: relative;
    z-index: 5;
}

.trust-inner {
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    padding: 25px 30px;
    border-top: 3px solid var(--red);
}

.trust-number {
    font-family: "Playfair Display", serif;
    color: var(--green-dark);
    font-size: 29px;
    font-weight: 700;
}

.trust-text {
    font-size: 12px;
    color: var(--muted);
}

/* =========================
           SECTION
        ========================= */

.section-padding {
    padding: 105px 0;
}

.section-label {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.15;
    color: var(--green-dark);
}

.section-description {
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
           SERVICES
        ========================= */

.services-section {
    background: var(--light);
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    padding: 35px;
    height: 100%;
    border-radius: 8px;
    transition: .3s ease;
}

    .service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
        border-color: rgba(18,107,69,.25);
    }

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 25px;
    margin-bottom: 25px;
}

.service-card:nth-child(2) .service-icon {
    background: var(--red-soft);
    color: var(--red);
}

.service-card:nth-child(3) .service-icon {
    background: #f5f0e4;
    color: #99772c;
}

.service-card h4 {
    color: var(--green-dark);
    font-size: 24px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.service-link {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

/* =========================
           ABOUT
        ========================= */

.about-image {
    min-height: 500px;
    background: linear-gradient( rgba(5,45,32,.25), rgba(5,45,32,.65) ), linear-gradient( 135deg, #174d38, #0b3425 );
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .about-image::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 50%;
        left: -80px;
        top: -70px;
    }

.about-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,.96);
    padding: 25px;
    border-left: 4px solid var(--red);
}

    .about-quote p {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        color: var(--green-dark);
        margin-bottom: 5px;
    }

.about-list {
    list-style: none;
    padding: 0;
}

    .about-list li {
        display: flex;
        gap: 13px;
        margin-bottom: 17px;
        color: #4e5b55;
    }

    .about-list i {
        color: var(--green);
        font-size: 18px;
    }

/* =========================
           NUMBERS
        ========================= */

.numbers {
    background: var(--green-dark);
    color: white;
}

.number-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.12);
}

    .number-item:last-child {
        border-right: none;
    }

    .number-item h3 {
        font-size: 43px;
        color: white;
    }

    .number-item p {
        color: rgba(255,255,255,.65);
        font-size: 13px;
        margin: 0;
    }

/* =========================
           PROCESS
        ========================= */

.process-number {
    width: 50px;
    height: 50px;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 20px;
}

.process-line {
    height: 1px;
    background: var(--border);
    margin-top: 25px;
}

/* =========================
           CTA
        ========================= */

.cta-section {
    background: linear-gradient( 100deg, var(--red-dark), var(--red) );
    color: white;
    padding: 80px 0;
}

    .cta-section h2 {
        font-size: 43px;
    }

    .cta-section p {
        color: rgba(255,255,255,.8);
        max-width: 650px;
    }

.btn-white {
    background: white;
    color: var(--red-dark);
    border: none;
    padding: 14px 25px;
    font-weight: 700;
    border-radius: 5px;
}

    .btn-white:hover {
        background: #f2f2f2;
        color: var(--red-dark);
    }

/* =========================
           CONTACT
        ========================= */

.contact-box {
    background: var(--green-dark);
    color: white;
    padding: 45px;
    border-radius: 8px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 27px;
}

    .contact-item i {
        color: var(--gold);
        font-size: 20px;
    }

    .contact-item small {
        display: block;
        color: rgba(255,255,255,.55);
        margin-bottom: 3px;
    }

.contact-form {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.form-control {
    border: 1px solid var(--border);
    padding: 13px 15px;
    border-radius: 5px;
}

    .form-control:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 .2rem rgba(18,107,69,.1);
    }

/* =========================
           FOOTER
        ========================= */

footer {
    background: #061b13;
    color: rgba(255,255,255,.65);
    padding: 70px 0 25px;
}

.footer-brand {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

footer h5 {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 11px;
}

footer a {
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

    footer a:hover {
        color: white;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 45px;
    padding-top: 20px;
    font-size: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    margin-right: 6px;
}

    .social-icon:hover {
        background: var(--red);
        border-color: var(--red);
        color: white;
    }

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991px) {

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

        .navbar-nav .nav-link.active::after {
            display: none;
        }

    .hero {
        padding: 75px 0 100px;
    }

    .finance-card {
        margin-top: 50px;
    }

    .number-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

        .number-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 576px) {

    .topbar {
        display: none;
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-padding {
        padding: 75px 0;
    }

    .contact-box,
    .contact-form {
        padding: 30px;
    }

    .cta-section h2 {
        font-size: 34px;
    }
}
