/* =====================================================
   TRIVEEXA NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

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


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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #58d6c5;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}


.nav-link,
.dropdown-toggle {
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 12px 15px;

    transition: 0.3s ease;
}


.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* ACTIVE */

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #58d6c5;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
}


.dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* ROTATE ARROW */

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 350px;

    padding: 10px;

    background: rgba(7, 17, 31, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* DESKTOP HOVER */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    text-decoration: none;

    border-radius: 7px;

    transition: 0.25s ease;
}


.dropdown-menu a:hover {
    background: rgba(88, 214, 197, 0.09);

    transform: translateX(3px);
}


/* ICON */

.menu-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

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

    border: 1px solid rgba(88, 214, 197, 0.25);

    color: #58d6c5;

    background: rgba(88, 214, 197, 0.05);

    border-radius: 6px;
}


.menu-icon i {
    font-size: 14px;
}


/* TEXT */

.dropdown-menu strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 3px;
}


.dropdown-menu small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =====================================================
   EMI MENU
===================================================== */

.emi-menu {
    width: 350px;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: #58d6c5;

    color: #07111f;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.nav-btn i {
    font-size: 10px;
}


/* MOBILE APPLY */

.mobile-apply {
    display: none !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* X ANIMATION */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-container {
        width: 94%;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link,
    .dropdown-toggle {
        padding: 10px 9px;
        font-size: 12px;
    }

    .nav-btn {
        padding: 10px 14px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }


    .nav-container {
        width: 92%;
    }


    /* HIDE DESKTOP APPLY */

    .nav-btn {
        display: none;
    }


    /* SHOW MENU BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-menu {

        position: absolute;

        top: 82px;
        left: 4%;
        right: 4%;

        height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(7, 17, 31, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.45);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-menu.show {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {

        display: block;

        padding: 15px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .nav-link.active::after {
        display: none;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .nav-dropdown {

        display: block;

        height: auto;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 12px;

        justify-content: space-between;

        color: rgba(255, 255, 255, 0.75);
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none !important;

        background: rgba(255, 255, 255, 0.025);

        border: none;

        box-shadow: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        padding: 11px 10px;

        border-top:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .dropdown-menu a:hover {

        transform: none;

        background: rgba(88, 214, 197, 0.07);
    }


    .menu-icon {

        width: 34px;
        height: 34px;
    }


    .dropdown-menu strong {

        font-size: 11px;
    }


    .dropdown-menu small {

        font-size: 9px;
    }


    /* =================================================
       MOBILE APPLY
    ================================================= */

    .mobile-apply {

        display: flex !important;

        justify-content: center;
        align-items: center;

        margin-top: 12px;

        padding: 13px !important;

        background: #58d6c5;

        color: #07111f !important;

        font-weight: 700;

        border: none !important;

        text-align: center;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .logo span {
        font-size: 19px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }


    .nav-menu {

        top: 68px;

        left: 3%;
        right: 3%;

        max-height: calc(100vh - 85px);

        overflow-y: auto;
    }


    .menu-toggle {

        width: 40px;
        height: 40px;
    }


    .dropdown-menu a {

        padding: 10px 7px;
    }
}



:root {

    --navy: #06111f;
    --navy2: #091a2b;
    --navy3: #10263a;

    --gold: #c8a96b;
    --gold-light: #e4ca91;

    --white: #ffffff;
    --cream: #f6f4ee;

    --dark: #253547;

    --gray: #738294;

    --border: rgba(255, 255, 255, .1);

    --ease: cubic-bezier(.22, 1, .36, 1);

}


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--cream);

    color: var(--dark);

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input {
    font: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.section-container {
    width: min(1180px, calc(100% - 50px));
    margin: auto;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(6, 17, 31, .94);

    backdrop-filter: blur(16px);

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

}


.nav-container {

    width: min(1250px, calc(100% - 50px));

    margin: auto;

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* LOGO */

.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo span {

    color: var(--white);

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 2px;

}


.logo small {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 4px;

    margin-top: 5px;

}


/* NAV MENU */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 8px;

}


.nav-link,
.dropdown-toggle {

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

    font-size: 13px;

    letter-spacing: .3px;

}


.nav-link {

    padding: 12px 15px;

    transition: .3s ease;

}


.nav-link:hover {

    color: var(--gold-light);

}


/* DROPDOWN */

.nav-dropdown {

    position: relative;

}


.dropdown-toggle {

    border: none;

    background: transparent;

    cursor: pointer;

    padding: 12px 15px;

    display: flex;

    align-items: center;

    gap: 8px;

}


.dropdown-toggle i {

    font-size: 9px;

    transition: .3s ease;

}


.nav-dropdown:hover .dropdown-toggle {

    color: var(--gold-light);

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 10px);

    left: 0;

    min-width: 220px;

    background: var(--navy2);

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

    padding: 8px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s ease;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: block;

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

    padding: 12px;

    font-size: 12px;

    transition: .25s ease;

}


.dropdown-menu a:hover {

    background:
        rgba(200, 169, 107, .1);

    color: var(--gold-light);

}


/* APPLY */

.nav-btn {

    background: var(--gold);

    color: var(--navy);

    padding: 13px 20px;

    font-size: 12px;

    font-weight: 800;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s ease;

}


.nav-btn:hover {

    background: var(--gold-light);

}


/* MOBILE */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    background: transparent;

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

    cursor: pointer;

    padding: 9px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-toggle span {

    width: 21px;

    height: 2px;

    background: white;

    display: block;

    transition: .35s ease;

}


.menu-toggle.active span:nth-child(1) {

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

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

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

}


.mobile-apply {

    display: none !important;

}


/* =========================================
   HERO
========================================= */

.car-hero {

    position: relative;

    min-height: 620px;

    background: var(--navy);

    overflow: hidden;

    padding-top: 78px;

}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        radial-gradient(rgba(200, 169, 107, .5) 1px,
            transparent 1px);

    background-size: 28px 28px;

}


.hero-container {

    width: min(1180px, calc(100% - 50px));

    min-height: 542px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 2;

}


.hero-content {

    padding: 50px 0;

}


.eyebrow {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

}


.eyebrow span {

    width: 28px;

    height: 1px;

    background: var(--gold);

}


.hero-content h1 {

    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -2px;

}


.hero-content h1 strong {

    display: block;

    color: var(--gold-light);

    font-weight: 500;

}


.hero-content p {

    max-width: 570px;

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

    font-size: 15px;

    line-height: 1.9;

    margin-top: 25px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.gold-btn,
.outline-btn {

    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;

}


.gold-btn {

    background: var(--gold);

    color: var(--navy);

}


.gold-btn:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


.outline-btn {

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

    color: var(--white);

}


.outline-btn:hover {

    border-color: var(--gold);

    color: var(--gold-light);

}


/* CAR VISUAL */

.car-visual {

    position: relative;

    min-height: 390px;

    display: flex;

    justify-content: center;

    align-items: center;

}


.car-glow {

    width: 340px;

    height: 180px;

    background:
        radial-gradient(ellipse,
            rgba(200, 169, 107, .22),
            transparent 68%);

    position: absolute;

}


.car-icon {

    width: 300px;

    height: 180px;

    border:
        1px solid rgba(200, 169, 107, .35);

    display: flex;

    justify-content: center;

    align-items: center;

    transform: skewX(-8deg);

    position: relative;

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

}


.car-icon i {

    font-size: 125px;

    color: var(--gold);

    transform: skewX(8deg);

    filter:
        drop-shadow(0 15px 25px rgba(0, 0, 0, .4));

}


.car-icon::before,
.car-icon::after {

    content: "";

    position: absolute;

    height: 1px;

    width: 90px;

    background: var(--gold);

    opacity: .5;

}


.car-icon::before {

    top: 28px;
    left: -40px;

}


.car-icon::after {

    bottom: 28px;
    right: -40px;

}


/* FLOATING INFO */

.floating-info {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background:
        rgba(9, 26, 43, .95);

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

}


.floating-info i {

    color: var(--gold);

    font-size: 18px;

}


.floating-info small {

    display: block;

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

    font-size: 9px;

    margin-bottom: 4px;

}


.floating-info strong {

    display: block;

    color: var(--white);

    font-size: 12px;

}


.info-one {

    top: 65px;

    right: 10px;

}


.info-two {

    bottom: 55px;

    left: 5px;

}


/* =========================================
   QUICK STATS
========================================= */

.quick-stats {

    width: min(1100px, calc(100% - 50px));

    margin: -45px auto 0;

    position: relative;

    z-index: 5;

    background: var(--white);

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    box-shadow:
        0 20px 60px rgba(6, 17, 31, .12);

}


.stat {

    min-height: 110px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-right:
        1px solid #eee;

}


.stat:last-child {

    border-right: none;

}


.stat-icon {

    width: 45px;

    height: 45px;

    background: var(--navy);

    color: var(--gold);

    display: flex;

    justify-content: center;

    align-items: center;

}


.stat strong {

    display: block;

    font-size: 13px;

    margin-bottom: 5px;

}


.stat small {

    color: var(--gray);

    font-size: 11px;

}


/* =========================================
   INTRO
========================================= */

.intro-section {

    background: var(--white);

    padding: 120px 0 100px;

    text-align: center;

}


.section-label {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.intro-section h2,
.center-heading h2 {

    margin-top: 15px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    color: var(--dark);

    font-weight: 500;

    letter-spacing: -1.5px;

}


.intro-section h2 span,
.center-heading h2 span {

    color: var(--gold);

}


.intro-text {

    max-width: 720px;

    margin: 25px auto 0;

    color: var(--gray);

    line-height: 1.9;

    font-size: 14px;

}


/* =========================================
   CALCULATOR
========================================= */

.calculator-section {

    background: var(--navy);

    padding: 100px 0;

}


.calculator-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 45px;

}


.calculator-heading h2 {

    color: var(--white);

    font-size: 42px;

    font-weight: 500;

    margin-top: 12px;

}


.calculator-heading h2 span {

    color: var(--gold-light);

}


.calculator-heading p {

    max-width: 350px;

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

    line-height: 1.7;

    font-size: 13px;

}


/* CALCULATOR BOX */

.calculator {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    background: var(--navy2);

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

}


/* INPUT */

.calculator-inputs {

    padding: 50px;

}


.input-group {

    margin-bottom: 40px;

}


.input-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

}


.input-top label {

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

    font-size: 13px;

}


.input-top strong {

    color: var(--gold-light);

    font-size: 18px;

}


input[type="range"] {

    width: 100%;

    height: 4px;

    appearance: none;

    -webkit-appearance: none;

    background:
        linear-gradient(to right,
            var(--gold) 0%,
            var(--gold) var(--range-progress, 50%),
            #26384a var(--range-progress, 50%),
            #26384a 100%);

    border-radius: 10px;

    outline: none;

}


input[type="range"]::-webkit-slider-thumb {

    appearance: none;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--gold);

    border:
        4px solid var(--navy2);

    box-shadow:
        0 0 0 1px var(--gold);

    cursor: pointer;

}


input[type="range"]::-moz-range-thumb {

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--gold);

    border:
        4px solid var(--navy2);

    cursor: pointer;

}


.range-labels {

    display: flex;

    justify-content: space-between;

    margin-top: 10px;

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

    font-size: 10px;

}


.calculator-note {

    display: flex;

    gap: 12px;

    padding-top: 10px;

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

    font-size: 10px;

    line-height: 1.6;

}


.calculator-note i {

    color: var(--gold);

    margin-top: 2px;

}


/* RESULT */

.calculator-result {

    padding: 50px;

    background:
        linear-gradient(145deg,
            var(--navy3),
            var(--navy2));

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

    text-align: center;

}


.result-title {

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

    font-size: 10px;

    letter-spacing: 3px;

}


.emi-value {

    color: var(--white);

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 500;

    margin-top: 12px;

}


.result-caption {

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

    font-size: 11px;

}


.chart-area {

    position: relative;

    width: 250px;

    height: 250px;

    margin: 25px auto 15px;

}


.chart-area canvas {

    width: 100% !important;

    height: 100% !important;

}


.chart-center {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    pointer-events: none;

}


.chart-center span {

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

    font-size: 10px;

}


.chart-center strong {

    color: var(--white);

    font-size: 15px;

    margin-top: 4px;

}


.chart-legend {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    text-align: left;

}


.chart-legend>div {

    display: flex;

    gap: 9px;

    align-items: flex-start;

}


.legend-dot {

    width: 9px;

    height: 9px;

    margin-top: 4px;

    flex-shrink: 0;

}


.principal-dot {

    background: var(--white);

}


.interest-dot {

    background: var(--gold);

}


.chart-legend small {

    display: block;

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

    font-size: 9px;

}


.chart-legend strong {

    display: block;

    color: var(--white);

    font-size: 12px;

    margin-top: 3px;

}


.result-btn {

    margin-top: 25px;

    width: 100%;

    min-height: 48px;

    background: var(--gold);

    color: var(--navy);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;

}


.result-btn:hover {

    background: var(--gold-light);

}


/* =========================================
   PLANNING
========================================= */

.planning-section {

    background: var(--white);

    padding: 110px 0;

}


.center-heading {

    text-align: center;

}


.planning-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: #e7e4dc;

    margin-top: 60px;

}


.planning-card {

    background: var(--white);

    padding: 45px 35px;

    position: relative;

}


.card-number {

    color: rgba(37, 53, 71, .12);

    font-size: 52px;

    font-weight: 800;

    position: absolute;

    top: 22px;

    right: 25px;

}


.planning-card>i {

    color: var(--gold);

    font-size: 27px;

    margin-bottom: 25px;

}


.planning-card h3 {

    font-size: 19px;

    font-weight: 600;

    margin-bottom: 14px;

}


.planning-card p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================
   HOW SECTION
========================================= */

.how-section {

    background: var(--navy);

    padding: 110px 0;

}


.how-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}


.how-content h2 {

    color: var(--white);

    font-size: 45px;

    font-weight: 500;

    line-height: 1.1;

    margin: 15px 0 25px;

}


.how-content h2 span {

    color: var(--gold-light);

}


.how-content p {

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

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;

}


.formula {

    margin-top: 30px;

    border-left:
        2px solid var(--gold);

    padding: 20px 25px;

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

}


.formula span {

    display: block;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.formula strong {

    color: var(--white);

    font-size: 16px;

    line-height: 1.6;

}


.emi-factors {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.factor {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px;

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

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

}


.factor-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--gold);

    color: var(--navy);

    font-weight: 800;

}


.factor h3 {

    color: var(--white);

    font-size: 15px;

    margin-bottom: 5px;

}


.factor p {

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

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================
   TIPS
========================================= */

.tips-section {

    background: var(--cream);

    padding: 110px 0;

}


.tips-list {

    margin-top: 55px;

    border-top:
        1px solid #ddd8cd;

}


.tip {

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 30px 10px;

    border-bottom:
        1px solid #ddd8cd;

}


.tip>span {

    color: var(--gold);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.tip h3 {

    font-size: 18px;

    margin-bottom: 8px;

}


.tip p {

    max-width: 650px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

}


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

.cta-section {

    background: var(--navy2);

    padding: 100px 25px;

    text-align: center;

}


.cta-inner {

    max-width: 800px;

    margin: auto;

}


.cta-section h2 {

    color: var(--white);

    font-size: clamp(38px, 5vw, 58px);

    font-weight: 500;

    line-height: 1.05;

    margin-top: 15px;

}


.cta-section h2 span {

    display: block;

    color: var(--gold-light);

}


.cta-section p {

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

    margin: 20px auto 0;

    max-width: 520px;

    font-size: 14px;

    line-height: 1.8;

}


.cta-actions {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 30px;

}


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

.footer {

    background: var(--navy);

    color: var(--white);

    padding: 70px 0 0;

}


.footer-container {

    width: min(1180px, calc(100% - 50px));

    margin: auto;

    display: grid;

    grid-template-columns:
        1.6fr repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 60px;

}


.footer-brand p {

    max-width: 280px;

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

    font-size: 12px;

    line-height: 1.8;

    margin-top: 20px;

}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 20px;

}


.social-links a {

    width: 38px;

    height: 38px;

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

    display: flex;

    justify-content: center;

    align-items: center;

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

    transition: .3s ease;

}


.social-links a:hover {

    border-color: var(--gold);

    color: var(--gold);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h4 {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


.footer-column a {

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

    font-size: 11px;

    transition: .25s ease;

}


.footer-column a:hover {

    color: var(--gold-light);

}


.footer-bottom {

    width: min(1180px, calc(100% - 50px));

    margin: auto;

    padding: 20px 0;

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

    display: flex;

    justify-content: space-between;

    gap: 20px;

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

    font-size: 9px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 900px) {

    .nav-container {

        padding: 18px 25px;

    }


    .nav-btn {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;

        right: 20px;

        background:
            rgba(7, 17, 31, .98);

        backdrop-filter: blur(20px);

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

        padding: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: .35s ease;

        box-shadow:
            0 25px 60px rgba(0, 0, 0, .35);

    }


    .nav-menu.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-menu>a {

        padding: 15px 10px;

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

        font-size: 13px;

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

    }


    .nav-dropdown {

        width: 100%;

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

    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 10px;

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

        justify-content: space-between;

    }


    .dropdown-menu {

        position: static;

        min-width: 100%;

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

        border: none;

        padding: 0;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

    }


    .nav-dropdown.open .dropdown-menu {

        display: block;

    }


    .nav-dropdown.open .dropdown-toggle i {

        transform: rotate(180deg);

    }


    .dropdown-menu a {

        padding: 12px 15px;

        font-size: 12px;

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

    }


    .mobile-apply {

        display: flex !important;

        justify-content: center;

        align-items: center;

        margin-top: 15px;

        padding: 13px !important;

        background: var(--gold);

        color: var(--navy) !important;

        font-weight: 700;

        border: none !important;

    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 50px;

    }


    .hero-content {

        padding-bottom: 0;

    }


    .eyebrow {

        justify-content: center;

    }


    .hero-actions {

        justify-content: center;

    }


    .car-visual {

        min-height: 300px;

    }


    .quick-stats {

        grid-template-columns: 1fr;

    }


    .stat {

        border-right: none;

        border-bottom:
            1px solid #eee;

    }


    .stat:last-child {

        border-bottom: none;

    }


    .calculator {

        grid-template-columns: 1fr;

    }


    .calculator-result {

        border-left: none;

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

    }


    .calculator-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .planning-grid {

        grid-template-columns: 1fr;

    }


    .how-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .footer-container {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media(max-width: 600px) {

    .section-container {

        width: min(100% - 30px, 1180px);

    }


    .nav-container {

        width: calc(100% - 30px);

        padding: 15px 0;

    }


    .car-hero {

        padding-top: 70px;

    }


    .hero-container {

        width: calc(100% - 30px);

    }


    .hero-content h1 {

        font-size: 43px;

    }


    .car-icon {

        width: 240px;

        height: 145px;

    }


    .car-icon i {

        font-size: 90px;

    }


    .floating-info {

        transform: scale(.85);

    }


    .info-one {

        right: -10px;

    }


    .info-two {

        left: -10px;

    }


    .intro-section,
    .calculator-section,
    .planning-section,
    .how-section,
    .tips-section {

        padding: 75px 0;

    }


    .calculator-inputs,
    .calculator-result {

        padding: 30px 20px;

    }


    .calculator-heading h2 {

        font-size: 34px;

    }


    .chart-area {

        width: 220px;

        height: 220px;

    }


    .chart-legend {

        grid-template-columns: 1fr;

    }


    .how-content h2 {

        font-size: 36px;

    }


    .tip {

        grid-template-columns: 45px 1fr;

        gap: 15px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}