/* ========================= */
/* GLOBAL CSS */
/* ========================= */

:root {
    --primary: #0F4C4C;
    --secondary: #D4AF37;
    --dark: #071212;
    --dark-light: #102222;
    --white: #ffffff;
    --text: #cfd8dc;
    --gradient: linear-gradient(135deg, #0F4C4C, #D4AF37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ========================= */
/* TOP STRIP */
/* ========================= */

.top-strip {
    background: #000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip .left-text,
.top-strip .right-contact a {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.top-strip i {
    color: var(--secondary);
    margin-right: 8px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.custom-navbar {
    padding: 18px 0;
    background: rgba(7, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.4s;
}

.navbar-brand img {
    height: 60px;
    object-fit: contain;
}

/* Nav Links */
.navbar-nav {
    gap: 15px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    transition: 0.4s;
}

.nav-link:hover {
    color: var(--secondary);
}

.navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* Hover Underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Apply Button */
.apply-btn {
    background: var(--gradient);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.apply-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 28px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero-section {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(212, 175, 55, 0.10),
            transparent 28%),
        radial-gradient(circle at bottom right,
            rgba(15, 76, 76, 0.35),
            transparent 38%),
        var(--dark);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Heading */
.hero-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    max-width: 620px;
    margin-bottom: 22px;
    color: #fff;
}

/* Description */
.hero-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 34px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.hero-btn-primary {
    background: var(--gradient);
    padding: 15px 28px;
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.16);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 15px 28px;
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.4s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.stat-box span {
    color: var(--text);
    font-size: 14px;
}

/* RIGHT SIDE */
.hero-image-wrapper {
    position: relative;
    height: 480px;
}

/* Main Card */
.finance-card {
    position: absolute;
    width: 360px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 28px;
    border-radius: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

/* Card Top */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.card-top span {
    color: var(--text);
    font-size: 14px;
}

.card-top i {
    color: #22c55e;
    font-size: 18px;
}

/* Amount */
.finance-card h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.finance-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Progress */
.progress {
    height: 8px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
    width: 95%;
    background: var(--gradient);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 13px;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    border-radius: 18px;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floating 4s infinite ease-in-out;
}

.floating-card i {
    color: var(--secondary);
}

/* Positions */
.card-one {
    top: 60px;
    right: 10px;
}

.card-two {
    bottom: 80px;
    left: 10px;
}

/* Circle */
.hero-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image-wrapper {
        margin-top: 70px;
        height: 420px;
    }

}

@media(max-width:576px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .finance-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================= */
/* LOAN SECTION */
/* ========================= */
.loan-section {
    padding: 100px 0;
    background: #081616;
    position: relative;
}

/* SECTION HEADING */
.section-heading {
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.section-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

/* LOAN CARD */
.loan-card {
    position: relative;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    overflow: hidden;
    transition: 0.45s ease;
}

/* Top Glow */
.loan-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    transition: 0.5s;
}

.loan-card:hover::before {
    transform: scale(1.4);
}

/* Hover */
.loan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ICON */
.loan-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, 0.18),
            rgba(15, 76, 76, 0.25));
    margin-bottom: 25px;
}

.loan-icon i {
    font-size: 28px;
    color: var(--secondary);
}

/* CONTENT */
.loan-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.loan-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
}

/* BUTTON */
.loan-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
}

.loan-card a:hover {
    gap: 15px;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .loan-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

}

@media(max-width:576px) {
    .section-title {
        font-size: 30px;
    }

    .loan-card {
        padding: 28px;
    }

}

/* ========================= */
/* TRUST SECTION */
/* ========================= */
.trust-section {
    padding: 100px 0;
    background: #061111;
    overflow: hidden;
}

/* LEFT CONTENT */
.trust-content {
    max-width: 540px;
}

.trust-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 18px 0;
}

.trust-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Features */
.trust-features {
    display: flex;
    /* flex-direction: column; */
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: 0.4s ease;
}

.trust-item:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.15);
}

.trust-item i {
    color: var(--secondary);
}

/* RIGHT VISUAL */
.trust-visual {
    position: relative;
    height: 420px;
}

/* Main Card */
.trust-card {
    position: absolute;
    width: 100%;
    max-width: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

/* Top */
.trust-top span {
    color: var(--text);
    font-size: 14px;
}

.trust-top h3 {
    font-size: 56px;
    color: #fff;
    margin: 10px 0 30px;
}

/* Progress */
.progress-line {
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 35px;
}

.line-fill {
    width: 95%;
    height: 100%;
    background: var(--gradient);
}

/* Stats */
.trust-stats {
    display: flex;
    justify-content: space-between;
}

.trust-stats h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 5px;
}

.trust-stats span {
    color: var(--text);
    font-size: 14px;
}

/* Badge */
.trust-badge {
    position: absolute;
    top: 40px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    color: var(--secondary);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .trust-section {
        padding: 80px 0;
    }

    .trust-title {
        font-size: 34px;
    }

    .trust-visual {
        margin-top: 60px;
    }
}

@media(max-width:576px) {
    .trust-title {
        font-size: 30px;
    }

    .trust-card {
        max-width: 320px;
        padding: 24px;
    }

    .trust-top h3 {
        font-size: 46px;
    }
}

/* ========================= */
/* CALCULATOR SECTION */
/* ========================= */
.calculator-section {
    padding: 100px 0;
    background: #081616;
}

/* Wrapper */
.calculator-wrapper {
    margin-top: 60px;
}

/* LEFT BOX */
.calculator-box {
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Group */
.calc-group {
    margin-bottom: 40px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

/* Label */
.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.calc-label span {
    color: var(--text);
    font-size: 15px;
}

.calc-label strong {
    color: #fff;
    font-size: 18px;
}

/* Range */
.custom-range {
    width: 100%;
}

/* RANGE STYLING */
.custom-range::-webkit-slider-thumb {
    background: var(--secondary);
}

.custom-range::-moz-range-thumb {
    background: var(--secondary);
}

/* RESULT CARD */
.result-card {
    padding: 40px 35px;
    border-radius: 30px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

/* Result */
.result-subtitle {
    color: var(--secondary);
    font-size: 14px;
}

.result-card h3 {
    font-size: 52px;
    margin: 18px 0;
    color: #fff;
}

.result-card p {
    color: var(--text);
    line-height: 1.8;
}

/* Divider */
.result-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

/* Result Item */
.result-item {
    display: flex;
    justify-content: space-between;

    margin-bottom: 18px;
}

.result-item span {
    color: var(--text);
}

.result-item strong {
    color: #fff;
}

/* Button */
.calculator-btn {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border-radius: 60px;
    text-align: center;
    text-decoration: none;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    transition: 0.4s;
}

.calculator-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .calculator-section {
        padding: 80px 0;
    }

}

@media(max-width:576px) {

    .calculator-box,
    .result-card {
        padding: 28px;
    }

    .result-card h3 {
        font-size: 40px;
    }

}

/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about-section {
    padding: 100px 0;
    background: #061111;
    overflow: hidden;
}

/* LEFT VISUAL */
.about-visual {
    position: relative;
    height: 420px;
}

/* Main Card */
.about-main-card {
    position: absolute;
    width: 100%;
    max-width: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

/* Title */
.about-mini-title {
    color: var(--secondary);
    font-size: 14px;
}

.about-main-card h3 {
    font-size: 34px;
    line-height: 1.3;
    color: #fff;
    margin: 18px 0 35px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 30px;
}

.about-stat-box h4 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 6px;
}

.about-stat-box span {
    color: var(--text);
    font-size: 14px;
}

/* Floating Card */
.about-floating-card {
    position: absolute;
    bottom: 20px;
    right: 10px;
    padding: 16px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.about-floating-card i {
    color: var(--secondary);
}

/* RIGHT CONTENT */
.about-title {
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin: 18px 0 24px;
}

.about-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
}

.about-feature i {
    color: var(--secondary);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 34px;
    }

    .about-visual {
        margin-bottom: 50px;
    }

}

@media(max-width:576px) {
    .about-title {
        font-size: 30px;
    }

    .about-main-card {
        padding: 28px;
    }

    .about-main-card h3 {
        font-size: 28px;
    }

}

/* ========================= */
/* FAQ SECTION */
/* ========================= */
.faq-section {
    padding: 100px 0;
    background: #071414;
}

/* Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

/* Accordion Item */
.custom-accordion {
    margin-bottom: 20px;
    border: none !important;
    background: transparent !important;
}

/* Button */
.custom-accordion .accordion-button {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px !important;
    color: #fff;
    padding: 24px 28px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: none !important;
}

/* Open */

.custom-accordion .accordion-button:not(.collapsed) {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    color: #fff;
}

/* Icon */
.custom-accordion .accordion-button::after {
    filter: invert(1);
}

/* Body */
.custom-accordion .accordion-body {
    color: var(--text);
    line-height: 1.9;
    font-size: 15px;
    padding: 20px 28px 28px;
}

/* Remove Border */
.accordion-item {
    border: none !important;
}

/* Responsive */
@media(max-width:576px) {

    .faq-section {
        padding: 80px 0;
    }

    .custom-accordion .accordion-button {
        font-size: 15px;
        padding: 20px;
    }

    .custom-accordion .accordion-body {
        padding: 18px 20px 24px;
    }

}

/* ========================= */
/* CTA SECTION */
/* ========================= */

.compact-cta-section {
    padding: 40px 0 20px;
    background: #071414;
}

/* Wrapper */
.compact-cta-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 34px 40px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, 0.10),
            rgba(15, 76, 76, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Glow */
.compact-cta-wrapper::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    top: -80px;
    right: -60px;
    filter: blur(20px);
}

/* Content */
.compact-mini-title {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 14px;
}

.compact-cta-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Buttons */
.compact-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary */
.compact-btn-primary {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    transition: 0.4s ease;
}

.compact-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Secondary */
.compact-btn-secondary {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.4s ease;
}

.compact-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .compact-cta-wrapper {
        padding: 28px;
    }

    .compact-cta-title {
        font-size: 28px;
    }

}

@media(max-width:576px) {
    .compact-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .compact-btn-primary,
    .compact-btn-secondary {
        width: 100%;
        text-align: center;
    }

}

/* ========================= */
/* FOOTER SECTION*/
/* ========================= */
.main-footer {
    background: #050d0d;

    padding-top: 70px;
}

/* TOP */
.footer-top {
    padding-bottom: 50px;
}

/* Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

/* About */
.footer-about p {
    color: var(--text);
    line-height: 1.9;
    font-size: 15px;
    max-width: 320px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
}

/* Lists */
.footer-links ul,
.footer-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Links */
.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Contact */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 4px;
}

/* BOTTOM */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .main-footer {
        padding-top: 60px;
    }

}

@media(max-width:576px) {

    .footer-top {
        padding-bottom: 30px;
    }

}

/* ========================= */
/* LOAN MODAL */
/* ========================= */

.loan-modal-content {
    position: relative;
    background:
        linear-gradient(145deg,
            #081616,
            #0b1f1f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
}

/* Body */
.loan-modal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT SIDE */
.loan-modal-left {
    padding: 50px;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, 0.08),
            rgba(15, 76, 76, 0.15));
}

.modal-mini-title {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 14px;
}

.loan-modal-left h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.loan-modal-left p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Features */
.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 18px;
    font-size: 15px;
}

.modal-feature i {
    color: var(--secondary);
}

/* RIGHT SIDE */
.loan-modal-right {
    padding: 50px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Input */
.custom-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    padding: 16px 18px;
    color: #fff !important;
    box-shadow: none !important;
}

/* Placeholder */
.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Select */
.custom-input option {
    background: #081616;
    color: #fff;
}

/* Focus */
.custom-input:focus {
    border-color: rgba(212, 175, 55, 0.28) !important;
}

/* Button */
.loan-submit-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 60px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    transition: 0.4s ease;
}

.loan-submit-btn:hover {
    transform: translateY(-3px);
}

/* Close */
.custom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    filter: invert(1);
    opacity: 1;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .loan-modal-wrapper {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .loan-modal-left,
    .loan-modal-right {
        padding: 32px 24px;
    }

    .loan-modal-left h2 {
        font-size: 32px;
    }

}

/* ========================= */
/* LEGAL DRAWER SECTION*/
/* ========================= */

/* Overlay */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9998;
}

/* Active */
.legal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.legal-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 650px;
    height: 100vh;
    background:
        linear-gradient(145deg,
            #081616,
            #0b1f1f);

    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 9999;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
}

/* Open */
.legal-drawer.active {
    right: 0;
}

/* HEADER */
.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Title */

.legal-mini-title {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 13px;
}

.legal-header h3 {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

/* Close */
.legal-close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.3s ease;
}

.legal-close:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* BODY */
.legal-body {
    flex: 1;

    overflow-y: auto;

    padding: 32px;
}

/* Scrollbar */
.legal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
}

/* Content */
.legal-section {
    margin-bottom: 36px;
}

.legal-section h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section p {
    color: var(--text);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 14px;
}

/* RESPONSIVE */
@media(max-width:576px) {

    .legal-drawer {
        max-width: 100%;
    }

    .legal-header {
        padding: 24px;
    }

    .legal-body {
        padding: 24px;
    }

    .legal-header h3 {
        font-size: 28px;
    }

}

/* ========================= */
/* CONTACT Page */
/* ========================= */

/* PAGE TITLE */
.page-title-section {
    padding: 60px 0 45px;
    background: #081616;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

/* Wrapper */
.page-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

/* Title */
.page-title-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* Description */
.page-title-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-breadcrumb a,
.page-breadcrumb span,
.page-breadcrumb p {
    margin: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

/* Hover */
.page-breadcrumb a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .page-title-section {
        padding: 110px 0 40px;
    }

    .page-title-content h1 {
        font-size: 34px;
    }

}

@media(max-width:576px) {
    .page-title-wrapper {
        align-items: flex-start;
    }

    .page-title-content h1 {
        font-size: 30px;
    }

}

/* CONTACT SECTION */
.contact-section {
    padding: 70px 0;
    background: #081616;
}

/* Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Boxes */
.contact-info-box,
.contact-form-box {
    padding: 32px;
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mini Title */
.contact-mini-title {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Headings */
.contact-info-box h2,
.contact-form-box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

/* Paragraph */
.contact-info-box p {
    color: var(--text);
    line-height: 1.8;
    font-size: 14px;
}

/* Contact Item */
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

/* Icon */
.contact-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    font-size: 16px;
}

/* Contact Heading */
.contact-info-item h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
}

/* Contact Text */

.contact-info-item p {
    margin: 0;
    font-size: 14px;
}

/* Tags */

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.contact-tags span {
    padding: 9px 14px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 12px;
}

/* FORM */
.form-group {
    margin-bottom: 16px;
}

/* Input */
.custom-contact-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff !important;
    font-size: 14px;
    box-shadow: none !important;
}

/* Placeholder */
.custom-contact-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

/* Focus */
.custom-contact-input:focus {
    border-color: rgba(212, 175, 55, 0.22) !important;
}

/* Textarea */
textarea.custom-contact-input {
    resize: none;
}

/* Button */
.contact-submit-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 50px;
    background: var(--gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
}

/* GLOBAL SUPPORT */
.global-support-section {
    padding: 0 0 70px;
    background: #081616;
}

/* Wrapper */
.global-support-wrapper {
    padding: 50px 34px;
    border-radius: 26px;
    text-align: center;
    background:
        linear-gradient(145deg,
            rgba(212, 175, 55, 0.06),
            rgba(15, 76, 76, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mini Title */
.global-mini-title {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 13px;
}

/* Title */
.global-support-wrapper h2 {
    max-width: 620px;
    margin: auto auto 30px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

/* Tags */
.global-country-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.global-country-tags span {
    padding: 10px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {
    .contact-hero {
        padding: 115px 0 50px;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 26px;
    }

    .global-support-wrapper h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .contact-info-box,
    .contact-form-box {
        padding: 24px;
    }

    .global-support-wrapper {
        padding: 40px 24px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }

}