/* =====================================================
   TRIVEEXA FINCORP
   HOME LOAN + LAP
===================================================== */

: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);

}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", Arial, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}


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


button {
    font-family: inherit;
}


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



/* =====================================================
   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;
    }
}

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

.hero {

    min-height: 92vh;

    background:

        linear-gradient(90deg,
            rgba(8, 20, 30, 0.96),
            rgba(8, 20, 30, 0.82),
            rgba(8, 20, 30, 0.42)),

        url("images/home-loan/hero.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding-top: 82px;

    color: white;

}


.hero-grid {

    width: min(1180px, 90%);

    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;
    }
}



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

.property-hero {
    position: relative;

    min-height: 820px;

    background:
        radial-gradient(circle at 80% 30%, rgba(200, 169, 107, .12), transparent 25%),
        var(--navy);

    overflow: hidden;

    padding-top: 82px;
}


.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom, black, transparent);
}


.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}


.hero-glow-1 {
    width: 420px;
    height: 420px;

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

    right: -150px;
    top: 150px;
}


.hero-glow-2 {
    width: 260px;
    height: 260px;

    background: rgba(34, 92, 130, .15);

    left: -100px;
    bottom: 100px;
}


.hero-container {
    width: min(1180px, 90%);

    margin: auto;

    min-height: 650px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


.hero-content {
    position: relative;
    z-index: 3;
}


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

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.eyebrow span {
    width: 32px;
    height: 1px;

    background: var(--gold);
}


.hero-content h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 5.5vw, 78px);

    line-height: 1.02;

    font-weight: 600;

    max-width: 650px;
}


.hero-content h1 span {
    color: var(--gold-light);
    display: block;
}


.hero-content>p {
    max-width: 590px;

    margin-top: 28px;

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

    font-size: 16px;

    line-height: 1.9;
}


.hero-actions {
    display: flex;

    gap: 13px;

    margin-top: 35px;
}


.btn-primary,
.btn-outline {
    min-height: 50px;

    padding: 0 23px;

    display: inline-flex;

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

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s var(--ease);
}


.btn-primary {
    background: var(--gold);
    color: var(--navy);
}


.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, .22);
    color: white;
}


.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px);
}


.hero-note {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;

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

    font-size: 11px;
}


.hero-note i {
    color: var(--gold);
}


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

.hero-visual {
    height: 540px;

    position: relative;

    display: flex;

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


.visual-grid {
    position: absolute;

    width: 430px;
    height: 430px;

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

    background-size: 18px 18px;

    opacity: .18;
}


.orbit {
    position: absolute;

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

    border-radius: 50%;

    transform: rotate(-20deg);
}


.orbit-1 {
    width: 460px;
    height: 210px;
}


.orbit-2 {
    width: 350px;
    height: 500px;

    transform: rotate(50deg);
}


/* HOUSE */

.house {
    position: relative;

    width: 280px;
    height: 230px;

    z-index: 3;

    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .3));
}


.roof {
    position: absolute;

    top: 0;
    left: 25px;

    width: 230px;
    height: 150px;

    background: linear-gradient(135deg,
            var(--gold-light),
            var(--gold));

    clip-path: polygon(50% 0, 100% 52%, 92% 58%, 50% 18%, 8% 58%, 0 52%);
}


.roof-line {
    position: absolute;

    width: 140px;
    height: 2px;

    background: var(--navy);

    opacity: .35;

    left: 45px;
    top: 63px;

    transform: rotate(-45deg);
}


.house-body {
    position: absolute;

    bottom: 0;

    left: 35px;

    width: 210px;
    height: 160px;

    background: linear-gradient(145deg,
            #eef0ed,
            #bfc6c3);

    border-top: 5px solid var(--gold);
}


.window {
    position: absolute;

    width: 48px;
    height: 45px;

    top: 35px;

    background: #173b52;

    border: 4px solid #d7d7d0;
}


.window::after,
.window::before {
    content: "";

    position: absolute;

    background: rgba(255, 255, 255, .3);
}


.window::after {
    width: 100%;
    height: 2px;

    top: 50%;
    left: 0;
}


.window::before {
    height: 100%;
    width: 2px;

    left: 50%;
    top: 0;
}


.window-left {
    left: 25px;
}


.window-right {
    right: 25px;
}


.door {
    position: absolute;

    bottom: 0;
    left: 81px;

    width: 50px;
    height: 90px;

    background: #6f5738;

    border-top: 4px solid var(--gold);
}


.door-handle {
    position: absolute;

    right: 8px;
    top: 48px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold-light);
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 17px;

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

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

    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);

    backdrop-filter: blur(15px);
}


.floating-card small {
    display: block;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 5px;
}


.floating-card strong {
    display: block;

    font-size: 11px;

    color: white;
}


.floating-icon,
.lap-card-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

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

    color: var(--gold-light);
}


.home-card {
    top: 90px;
    left: 10px;
}


.lap-card {
    right: 0;
    bottom: 90px;
}


.hero-dot {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 20px rgba(200, 169, 107, .8);
}


.dot-1 {
    top: 70px;
    right: 90px;
}


.dot-2 {
    bottom: 80px;
    left: 70px;
}


.dot-3 {
    top: 190px;
    right: 20px;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: min(1180px, 90%);

    display: grid;

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

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


.hero-stat {
    padding: 22px 15px;

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

    display: flex;

    align-items: center;

    gap: 14px;
}


.hero-stat:last-child {
    border-right: 0;
}


.hero-stat strong {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;
}


.hero-stat span {
    color: rgba(255, 255, 255, .48);

    font-size: 10px;
}


/* =====================================================
   SELECTOR
===================================================== */

.finance-selector {
    background: var(--cream);

    color: var(--dark);

    padding: 110px 0;
}


.selector-heading {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    margin-bottom: 45px;
}


.section-kicker {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    display: block;

    margin-bottom: 17px;
}


.selector-heading h2,
.comparison-heading h2,
.documents-heading h2,
.process-heading h2,
.why-heading h2,
.planning-content h2,
.feature-content h2,
.eligibility-content h2 {
    font-family: "Playfair Display", serif;

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

    line-height: 1.1;

    font-weight: 600;
}


.selector-heading h2 span,
.comparison-heading h2 span,
.documents-heading h2 span,
.process-heading h2 span,
.why-heading h2 span,
.planning-content h2 span,
.feature-content h2 span,
.eligibility-content h2 span {
    color: var(--gold);
}


.selector-tabs {
    display: flex;

    gap: 10px;

    margin-bottom: 40px;
}


.selector-tab {
    border: 1px solid #dcd9d0;

    background: transparent;

    padding: 15px 22px;

    cursor: pointer;

    color: var(--dark);

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s ease;
}


.selector-tab.active,
.selector-tab:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--gold-light);
}


.finance-panel {
    display: none;
}


.finance-panel.active {
    display: block;
}


.panel-intro {
    max-width: 720px;

    margin-bottom: 40px;
}


.panel-intro>span {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: 700;
}


.panel-intro h3 {
    font-family: "Playfair Display", serif;

    font-size: 38px;

    margin: 10px 0;

    color: var(--dark);
}


.panel-intro h3 em {
    color: var(--gold);

    font-style: normal;
}


.panel-intro p {
    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;
}


.finance-options {
    display: grid;

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

    gap: 1px;

    background: #d8d5cd;
}


.finance-option {
    background: var(--cream);

    padding: 32px 25px;

    min-height: 300px;

    position: relative;

    transition: .4s var(--ease);
}


.finance-option:hover {
    background: var(--navy);

    color: white;

    transform: translateY(-7px);

    z-index: 2;
}


.option-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color: #b4afa4;

    font-size: 10px;
}


.option-icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    border: 1px solid #d7d2c8;

    color: var(--gold);

    margin-bottom: 30px;

    transition: .3s ease;
}


.finance-option:hover .option-icon {
    border-color: rgba(200, 169, 107, .4);

    background: rgba(200, 169, 107, .08);
}


.finance-option h4 {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    margin-bottom: 13px;
}


.finance-option p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 24px;
}


.finance-option:hover p {
    color: rgba(255, 255, 255, .55);
}


.finance-option a {
    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 8px;
}


.finance-option a i {
    transition: .3s ease;
}


.finance-option a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   FEATURE
===================================================== */

.feature-section {
    padding: 130px 0;

    background: var(--navy);
}


.lap-feature {
    background: var(--navy2);
}


.feature-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.feature-grid.reverse .feature-content {
    order: 1;
}


.feature-grid.reverse .feature-visual {
    order: 2;
}


.feature-content>p {
    color: rgba(255, 255, 255, .52);

    font-size: 14px;

    line-height: 1.9;

    max-width: 550px;

    margin-top: 25px;
}


.feature-points {
    margin-top: 30px;

    display: grid;

    gap: 16px;
}


.feature-points div {
    display: flex;

    align-items: center;

    gap: 13px;

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

    font-size: 12px;
}


.feature-points i {
    color: var(--gold);

    width: 25px;
}


.text-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}


.text-btn:hover {
    gap: 15px;
}


/* HOME VISUAL */

.feature-frame {
    min-height: 480px;

    background:
        radial-gradient(circle at center, rgba(200, 169, 107, .12), transparent 45%),
        var(--navy3);

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

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


.frame-top {
    position: absolute;

    top: 22px;
    left: 25px;
    right: 25px;

    display: flex;

    justify-content: space-between;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;
}


.home-illustration {
    position: relative;

    width: 330px;
    height: 300px;
}


.building {
    position: absolute;

    left: 40px;
    bottom: 30px;

    width: 250px;
}


.building-roof {
    height: 65px;

    background: var(--gold);

    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}


.building-body {
    height: 180px;

    background: #d7d8d3;

    padding: 25px;

    display: grid;

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

    gap: 15px;

    position: relative;
}


.building-window {
    height: 40px;

    background: #15364d;

    border: 3px solid #eee;
}


.building-door {
    position: absolute;

    bottom: 0;

    left: 105px;

    width: 48px;

    height: 85px;

    background: #71593d;
}


.ground-line {
    position: absolute;

    bottom: 25px;

    left: 0;

    width: 100%;

    height: 1px;

    background: rgba(200, 169, 107, .5);
}


.feature-badge {
    position: absolute;

    bottom: 28px;
    right: 28px;

    padding: 12px 15px;

    background: var(--navy);

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

    font-size: 9px;

    display: flex;

    align-items: center;

    gap: 8px;

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


.feature-badge i {
    color: var(--gold);
}


/* LAP VISUAL */

.lap-visual {
    min-height: 480px;

    position: relative;

    display: flex;

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


.property-outline {
    width: 350px;
    height: 300px;

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

    display: flex;

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

    transform: perspective(600px) rotateX(10deg);
}


.property-building {
    width: 220px;

    display: grid;

    gap: 8px;

    padding: 15px;
}


.property-floor {
    height: 55px;

    border: 2px solid rgba(200, 169, 107, .6);

    position: relative;
}


.property-floor::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;

    top: 18px;

    height: 15px;

    background: rgba(200, 169, 107, .15);
}


.value-circle {
    position: absolute;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    display: flex;

    flex-direction: column;

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

    right: 15px;
    top: 70px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}


.value-circle i {
    font-size: 25px;

    margin-bottom: 8px;
}


.value-circle span {
    font-size: 8px;

    letter-spacing: 2px;
}


.value-circle strong {
    font-size: 14px;

    letter-spacing: 2px;
}


.lap-floating {
    position: absolute;

    left: 0;
    bottom: 70px;

    padding: 14px;

    background: var(--navy3);

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

    display: flex;

    align-items: center;

    gap: 10px;
}


.lap-floating i {
    color: var(--gold);

    font-size: 20px;
}


.lap-floating small {
    display: block;

    font-size: 7px;

    color: var(--gold);

    letter-spacing: 2px;
}


.lap-floating strong {
    font-size: 11px;
}


/* =====================================================
   COMPARISON
===================================================== */

.comparison-section {
    background: var(--cream);

    color: var(--dark);

    padding: 120px 0;
}


.comparison-heading {
    max-width: 720px;

    margin-bottom: 50px;
}


.comparison-heading p {
    color: var(--gray);

    margin-top: 20px;

    line-height: 1.8;
}


.comparison-table {
    border-top: 1px solid #d7d3c9;
}


.comparison-row {
    display: grid;

    grid-template-columns: 1fr 1.5fr 1.5fr;

    border-bottom: 1px solid #d7d3c9;
}


.comparison-row>div {
    padding: 22px 20px;

    font-size: 12px;

    border-right: 1px solid #d7d3c9;
}


.comparison-row>div:last-child {
    border-right: 0;
}


.comparison-header {
    background: var(--navy);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


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

.planning-section {
    padding: 120px 0;

    background: var(--navy);

    position: relative;

    overflow: hidden;
}


.planning-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: 0;

    border-radius: 50%;

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

    filter: blur(40px);
}


.planning-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


.planning-content p {
    color: rgba(255, 255, 255, .52);

    line-height: 1.9;

    font-size: 14px;

    margin-top: 25px;

    max-width: 500px;
}


.planning-board {
    background: var(--navy2);

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

    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}


.board-header {
    padding: 22px;

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

    display: flex;

    justify-content: space-between;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;
}


.planning-row {
    padding: 23px;

    display: flex;

    gap: 15px;

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


.planning-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

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

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

    color: var(--gold);
}


.planning-info {
    flex: 1;
}


.planning-info small {
    display: block;

    font-size: 7px;

    letter-spacing: 2px;

    color: var(--gold);

    margin-bottom: 5px;
}


.planning-info strong {
    font-size: 12px;

    color: rgba(255, 255, 255, .75);
}


.planning-line {
    height: 3px;

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

    margin-top: 12px;

    overflow: hidden;
}


.planning-line span {
    display: block;

    height: 100%;

    background: var(--gold);
}


.board-footer {
    padding: 20px 23px;

    display: flex;

    justify-content: space-between;

    align-items: center;

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

    font-size: 10px;
}


.board-footer i {
    color: var(--gold);
}


/* =====================================================
   ELIGIBILITY
===================================================== */

.eligibility-section {
    padding: 120px 0;

    background: var(--navy2);
}


.eligibility-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.eligibility-content>p {
    color: rgba(255, 255, 255, .5);

    line-height: 1.9;

    font-size: 13px;

    margin-top: 22px;

    max-width: 560px;
}


.eligibility-list {
    border-top: 1px solid rgba(255, 255, 255, .1);
}


.eligibility-item {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px 0;

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


.eligibility-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

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

    color: var(--gold);
}


.eligibility-item span {
    display: block;

    font-size: 8px;

    color: var(--gold);

    letter-spacing: 2px;

    margin-bottom: 5px;
}


.eligibility-item strong {
    font-size: 14px;

    font-weight: 500;
}


/* =====================================================
   DOCUMENTS
===================================================== */

.documents-section {
    padding: 120px 0;

    background: var(--cream);

    color: var(--dark);
}


.documents-heading {
    max-width: 720px;

    margin-bottom: 50px;
}


.documents-heading p {
    color: var(--gray);

    margin-top: 20px;

    line-height: 1.8;
}


.documents-grid {
    display: grid;

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

    gap: 1px;

    background: #d6d2c9;
}


.document-item {
    background: var(--cream);

    min-height: 250px;

    padding: 28px;

    transition: .35s ease;
}


.document-item:hover {
    background: var(--navy);

    color: white;

    transform: translateY(-5px);
}


.document-top {
    display: flex;

    justify-content: space-between;

    color: var(--gold);

    margin-bottom: 35px;
}


.document-top i {
    font-size: 23px;
}


.document-top span {
    font-size: 9px;
}


.document-item h3 {
    font-family: "Playfair Display", serif;

    font-size: 21px;

    margin-bottom: 13px;
}


.document-item p {
    color: var(--gray);

    font-size: 11px;

    line-height: 1.8;
}


.document-item:hover p {
    color: rgba(255, 255, 255, .5);
}


/* =====================================================
   PROCESS
===================================================== */

.process-section {
    padding: 130px 0;

    background: var(--navy);
}


.process-heading {
    max-width: 650px;

    margin-bottom: 70px;
}


.journey {
    position: relative;

    display: grid;

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

    gap: 40px;
}


.journey-line {
    position: absolute;

    top: 28px;

    left: 8%;

    right: 8%;

    height: 1px;

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

    z-index: 0;
}


.journey-progress {
    width: 0;

    height: 100%;

    background: var(--gold);

    transition: width 1.8s var(--ease);
}


.journey.complete .journey-progress {
    width: 100%;
}


.journey-step {
    position: relative;

    z-index: 2;
}


.step-circle {
    width: 57px;
    height: 57px;

    border-radius: 50%;

    background: var(--navy);

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

    color: var(--gold-light);

    display: flex;

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

    font-size: 10px;

    margin-bottom: 28px;
}


.step-content span {
    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;
}


.step-content h3 {
    font-family: "Playfair Display", serif;

    font-size: 21px;

    margin: 10px 0 12px;
}


.step-content p {
    color: rgba(255, 255, 255, .45);

    font-size: 11px;

    line-height: 1.8;

    max-width: 220px;
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 120px 0;

    background: var(--navy2);
}


.faq-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;
}


.faq-heading p {
    color: rgba(255, 255, 255, .48);

    font-size: 13px;

    line-height: 1.8;

    margin-top: 22px;

    max-width: 350px;
}


.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .1);
}


.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}


.faq-question {
    width: 100%;

    padding: 22px 0;

    border: 0;

    background: transparent;

    color: white;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    font-size: 13px;
}


.faq-question i {
    color: var(--gold);

    transition: .3s ease;
}


.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .45s var(--ease);
}


.faq-answer p {
    color: rgba(255, 255, 255, .48);

    font-size: 11px;

    line-height: 1.9;

    padding: 0 0 22px;

    max-width: 650px;
}


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

.final-cta {
    position: relative;

    padding: 120px 0;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(circle at center, rgba(200, 169, 107, .14), transparent 38%),
        var(--navy);
}


.cta-content {
    position: relative;

    z-index: 3;

    max-width: 800px;

    margin: auto;
}


.cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.08;
}


.cta-content h2 span {
    color: var(--gold-light);

    display: block;
}


.cta-content p {
    max-width: 620px;

    margin: 25px auto 0;

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

    line-height: 1.8;

    font-size: 13px;
}


.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 32px;
}


.cta-orbit {
    position: absolute;

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

    border-radius: 50%;
}


.orbit-a {
    width: 650px;
    height: 650px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);
}


.orbit-b {
    width: 420px;
    height: 420px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);
}


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

.footer {
    background: #040d17;

    padding-top: 75px;
}


.footer-container {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;
}


.footer-logo {
    display: flex;

    flex-direction: column;

    width: fit-content;
}


.footer-logo span {
    font-size: 20px;

    letter-spacing: 2px;

    font-weight: 700;
}


.footer-logo small {
    color: var(--gold);

    font-size: 7px;

    letter-spacing: 4px;

    margin-top: 4px;
}


.footer-brand p {
    max-width: 300px;

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

    font-size: 11px;

    line-height: 1.8;

    margin-top: 20px;
}


.social-links {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}


.social-links a {
    width: 36px;
    height: 36px;

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

    display: flex;

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

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

    transition: .3s ease;
}


.social-links a:hover {
    border-color: var(--gold);

    color: var(--gold);
}


.footer-column h4 {
    font-size: 11px;

    letter-spacing: 2px;

    color: white;

    margin-bottom: 20px;
}


.footer-column a {
    display: block;

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

    font-size: 11px;

    margin-bottom: 12px;

    transition: .25s ease;
}


.footer-column a:hover {
    color: var(--gold);
    padding-left: 4px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);

    padding: 22px 0;
}


.footer-bottom .section-container {
    display: flex;

    justify-content: space-between;

    gap: 20px;

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

    font-size: 9px;

    line-height: 1.6;
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   RIPPLE
===================================================== */

.ripple-effect {
    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: ripple .6s linear;

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

    pointer-events: none;
}


@keyframes ripple {

    to {
        transform: scale(4);

        opacity: 0;
    }

}


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

@media(max-width:1050px) {

    .nav-menu {
        gap: 0;
    }


    .hero-container {
        gap: 30px;
    }


    .hero-content h1 {
        font-size: 58px;
    }


    .finance-options {
        grid-template-columns: repeat(2, 1fr);
    }


    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-container {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

}


@media(max-width:900px) {

    .nav-container {
        height: 78px;
    }


    .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, .1);

        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;

        background: transparent;

        border: none;

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

        font-size: 13px;

        text-align: left;

        display: flex;

        justify-content: space-between;

        align-items: center;

        cursor: pointer;
    }


    .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;

        box-shadow: none;
    }


    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    .dropdown-menu a {
        padding: 12px 15px;

        font-size: 12px;

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

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

        border-bottom: 0;
    }


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


    .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: 70px;
    }


    .hero-content {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-visual {
        height: 430px;

        margin-top: -20px;
    }


    .hero-bottom {
        display: none;
    }


    .property-hero {
        min-height: 1050px;
    }


    .selector-heading,
    .feature-grid,
    .planning-grid,
    .eligibility-grid,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .journey {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-left: 20px;
    }


    .journey-line {
        top: 0;
        bottom: 0;

        left: 28px;

        width: 1px;

        height: auto;
    }


    .journey-progress {
        width: 100%;

        height: 0;

        transition: height 1.8s var(--ease);
    }


    .journey.complete .journey-progress {
        width: 100%;

        height: 100%;
    }


    .step-circle {
        margin-left: -20px;
    }


    .feature-grid.reverse .feature-content,
    .feature-grid.reverse .feature-visual {
        order: initial;
    }


    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:600px) {

    .section-container {
        width: 88%;
    }


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


    .property-hero {
        min-height: 950px;
    }


    .hero-content h1 {
        font-size: 45px;
    }


    .hero-content>p {
        font-size: 13px;

        line-height: 1.8;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .hero-actions a {
        width: 100%;
    }


    .hero-visual {
        height: 370px;

        transform: scale(.78);
    }


    .house-card {
        transform: scale(.9);
    }


    .home-card {
        left: -15px;
    }


    .lap-card {
        right: -15px;
    }


    .selector-tabs {
        flex-direction: column;
    }


    .selector-tab {
        justify-content: center;
    }


    .finance-options {
        grid-template-columns: 1fr;
    }


    .finance-option {
        min-height: 260px;
    }


    .panel-intro h3 {
        font-size: 31px;
    }


    .feature-section,
    .planning-section,
    .eligibility-section,
    .documents-section,
    .process-section,
    .faq-section,
    .comparison-section,
    .final-cta {
        padding: 85px 0;
    }


    .feature-frame,
    .lap-visual {
        min-height: 380px;
    }


    .home-illustration {
        transform: scale(.8);
    }


    .property-outline {
        transform: scale(.75) perspective(600px) rotateX(10deg);
    }


    .value-circle {
        transform: scale(.75);

        right: -20px;
    }


    .comparison-table {
        overflow-x: auto;
    }


    .comparison-row {
        min-width: 700px;
    }


    .documents-grid {
        grid-template-columns: 1fr;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom .section-container {
        flex-direction: column;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-buttons a {
        width: 100%;
    }

}