body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(16px);

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

/* NAVBAR */

.navbar {
    height: 82px;

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

/* LOGO */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
}

.logo-box {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    overflow: hidden;

    background: #111;

    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    color: #fff;

    font-size: 28px;
    font-weight: 800;

    line-height: 1;
}

.logo-subtitle {
    color: #9ca3af;

    font-size: 11px;

    letter-spacing: 4px;
    text-transform: uppercase;
}

/* DESKTOP MENU */

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* MENU LINK */

.menu-link {
    position: relative;

    color: #d1d5db;

    text-decoration: none;

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

    transition: .3s;
}

.menu-link:hover {
    color: #fff;
}

.menu-link::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #fff;

    transition: .3s;
}

.menu-link:hover::after {
    width: 100%;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

/* DROPDOWN BUTTON */

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    background: none;
    border: none;
    outline: none;

    color: #d1d5db;

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

    cursor: pointer;

    transition: .3s;
}

.dropdown-btn:hover {
    color: #fff;
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DROPDOWN MENU */

.dropdown-menu {
    position: absolute;

    top: 55px;
    left: 0;

    width: 320px;

    padding: 14px;

    background: #111111;

    border-radius: 22px;

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;

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

    z-index: 999;
}

/* SHOW DROPDOWN */

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

    transform: translateY(0);
}

/* DROPDOWN LINKS */

.dropdown-menu a {
    text-decoration: none;
}

/* DROPDOWN ITEM */

.dropdown-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px;

    border-radius: 16px;

    transition: .3s;
}

.dropdown-item:hover {
    background: #1a1a1a;
}

/* ICON */

.dropdown-item i {
    width: 42px;
    height: 42px;

    border-radius: 12px;

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

    background: #1f1f1f;

    color: #fff;

    font-size: 15px;

    transition: .3s;
}

.dropdown-item:hover i {
    background: #fff;
    color: #000;
}

/* TEXT */

.dropdown-item span {
    color: #d1d5db;

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

    transition: .3s;
}

.dropdown-item:hover span {
    color: #fff;
}

/* RIGHT SECTION */

.right-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* BUTTON */

.header-btn {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 13px 28px;

    border-radius: 999px;

    background: #fff;

    color: #000;

    text-decoration: none;

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

    transition: .3s;
}

.header-btn:hover {
    background: #e5e7eb;

    transform: translateY(-2px);
}

/* MOBILE BUTTON */

.mobile-btn {
    width: 46px;
    height: 46px;

    border: none;
    outline: none;

    border-radius: 14px;

    background: #111;

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    display: none;
}

/* MOBILE MENU */

.mobile-menu {
    background: #080808;

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

.mobile-menu-wrapper {
    padding: 24px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.mobile-menu-wrapper a {
    color: #d1d5db;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;
}

/* MOBILE CONTACT BUTTON */

.mobile-contact-btn {
    margin-top: 10px;

    background: #fff;

    color: #000 !important;

    padding: 14px;

    border-radius: 999px;

    text-align: center;

    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:1024px) {

    .desktop-menu {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    /* MOBILE DROPDOWN */

    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown-btn {
        width: 100%;

        padding: 0;

        justify-content: space-between;
    }

    .mobile-dropdown-menu {
        position: static;

        width: 100%;

        margin-top: 14px;

        padding: 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        border-radius: 16px;

        box-shadow: none;
    }

    /* OPEN DROPDOWN */

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: block;
    }

}

@media(max-width:768px) {

    .navbar {
        height: 75px;
    }

    .logo-box {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .dropdown-item {
        padding: 14px;
    }

    .dropdown-item i {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .dropdown-item span {
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .logo-box {
        width: 42px;
        height: 42px;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .mobile-menu-wrapper {
        padding: 20px;
    }

}

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

.dropdown {
    position: relative;
}

/* Desktop Dropdown Menu */

.dropdown-menu {
    position: absolute;

    top: 55px;
    left: 0;

    width: 320px;

    padding: 14px;

    background: #111111;

    border-radius: 22px;

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;

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

    z-index: 999;
}

/* Hover Only Desktop */

@media(min-width:1025px) {

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

        transform: translateY(0);
    }

}

/* =========================
   MOBILE & TABLET DROPDOWN
========================= */

@media(max-width:1024px) {

    .mobile-dropdown {
        width: 100%;
    }

    /* Button */

    .mobile-dropdown-btn {
        width: 100%;

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

        padding: 5px 0;

        background: none;
        border: none;
        outline: none;

        cursor: pointer;
    }

    /* Mobile Dropdown Menu */

    .mobile-dropdown-menu {

        position: static;

        width: 100%;

        margin-top: 14px;

        padding: 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        border-radius: 16px;

        background: #111111;

        box-shadow: none;

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

    /* Open Dropdown */

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: block;
    }

}

.logo-box {
    width: 60px;
    height: 60px;

    border-radius: 18px;

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

    background: linear-gradient(to bottom right, #ffffff, #6b7280);

    color: #000;

    font-size: 35px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

/* Right Side */

.right-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 12px 24px;
    border: 1px solid #d1d5db;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.btn-login:hover {
    background: #000000;
    color: #fff;
}


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

.footer-section {
    position: relative;

    padding-top: 90px;

    background: #050505;

    overflow: hidden;

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

/* GLOW */

.footer-section::before {
    content: '';

    position: absolute;

    top: -120px;
    left: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(130px);

    opacity: .18;
}

/* TOP */

.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 40px;

    padding-bottom: 60px;
}

/* LOGO */

.footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 26px;
    font-weight: 800;

    margin-bottom: 24px;

    text-decoration: none;
}

.footer-logo span {
    width: 60px;
    height: 60px;

    border-radius: 14px;

    background: #ffffff;

    color: #000000;

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

    font-size: 34px;
    font-weight: 800;
}

/* ABOUT */

.footer-about p {
    color: #9ca3af;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 28px;

    max-width: 380px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 12px;

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

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

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

    color: #ffffff;

    font-size: 16px;

    transition: .35s;

    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-5px);

    background: #ffffff;

    color: #000000;
}

/* LINKS */

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;

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

    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #9ca3af;

    font-size: 14px;

    text-decoration: none;

    transition: .3s;
}

.footer-links ul li a:hover {
    color: #ffffff;

    padding-left: 6px;
}

/* CONTACT */

.footer-contact ul li {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;
}

.footer-contact ul li i {
    color: #ffffff;

    font-size: 16px;

    margin-top: 4px;
}

.footer-contact ul li span {
    color: #9ca3af;

    font-size: 14px;

    line-height: 1.8;
}

/* BOTTOM */

.footer-bottom {
    padding: 22px 0;

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

    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;

    font-size: 14px;
}

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

@media(max-width:992px) {

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

        gap: 40px 30px;
    }

}

@media(max-width:768px) {

    .footer-section {
        padding-top: 70px;
    }

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

        gap: 40px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-logo span {
        width: 44px;
        height: 44px;

        font-size: 20px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }

    .footer-about p,
    .footer-links ul li a,
    .footer-contact ul li span {
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .footer-section {
        padding-top: 60px;
    }

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

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

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

    color: #ffffff;

    font-size: 34px;

    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);

    z-index: 9999;

    animation: whatsappPulse 2s infinite;

    transition: .35s;
}

/* HOVER */

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);

    color: #ffffff;
}

/* PULSE ANIMATION */

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

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

@media(max-width:768px) {

    .whatsapp-float {
        width: 58px;
        height: 58px;

        right: 36px;
        bottom: 46px;

        font-size: 30px;
    }

}

@media(max-width:480px) {

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 37px;
        bottom: 47px;

        font-size: 28px;
    }

}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: #050505;
    padding: 20px 0;
}

/* BACKGROUND */

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #1f2937;
    top: -250px;
    left: -150px;
    filter: blur(140px);
    opacity: .35;
}

.hero::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #374151;
    bottom: -200px;
    right: -150px;
    filter: blur(140px);
    opacity: .30;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 85vh;
    position: relative;
    z-index: 2;
}

/* =========================
   LEFT
========================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: clamp(38px, 7vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    color: #9ca3af;
}

.hero-content p {
    color: #9ca3af;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.btn-primary {
    padding: 15px 28px;
    background: #ffffff;
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-secondary {
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .10);
    transition: .3s;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-5px);
}

/* STATS */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    min-width: 150px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
}

.stat h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 6px;
}

.stat span {
    color: #9ca3af;
    font-size: 13px;
}

/* =========================
   RIGHT SIDE
========================= */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    filter: blur(120px);
    opacity: .4;
}

/* MAIN CIRCLE */

.main-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .15);
    position: relative;
    animation: rotateCircle 30s linear infinite;
}

/* ICONS */

.icon-box {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, .08);

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

    color: #ffffff;
    font-size: 36px;

    position: absolute;

    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.center {
    width: 150px;
    height: 150px;
    border-radius: 35px;
    background: #fff;
    color: #000;
    font-size: 60px;

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

.one {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.two {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.three {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.four {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.five {
    top: 80px;
    right: 20px;
}

.six {
    bottom: 80px;
    left: 20px;
}

/* INVESTMENT CARD */

.investment-card {
    position: absolute;
    right: 0;
    bottom: 40px;

    min-width: 280px;

    padding: 30px;

    border-radius: 24px;

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

    backdrop-filter: blur(20px);
}

.investment-card h4 {
    color: #9ca3af;
    margin-bottom: 10px;
}

.investment-card h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.investment-card p {
    color: #9ca3af;
}

/* ANIMATION */

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

@media(max-width:992px) {

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 500px;
    }

    .main-circle {
        width: 420px;
        height: 420px;
    }

    .investment-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
    }

}

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

@media(max-width:768px) {

    .hero {
        padding: 80px 0 60px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .hero-visual {
        min-height: 380px;
    }

    .main-circle {
        width: 280px;
        height: 280px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 18px;
    }

    .center {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .investment-card {
        width: 100%;
    }

}

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

@media(max-width:480px) {

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .main-circle {
        width: 240px;
        height: 240px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 15px;
    }

    .investment-card h2 {
        font-size: 34px;
    }

    .hero-visual {
        min-height: 320px;
    }

}

.hero {
    background: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 39px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #1f2937;
    border-radius: 50%;
    top: -250px;
    left: -150px;
    filter: blur(140px);
    opacity: .30;
}

.hero::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: #374151;
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    filter: blur(140px);
    opacity: .25;
}

.container {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 0 20px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */

.hero-badge {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;
    color: #9ca3af;
}

.hero-content p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.btn-primary {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-secondary {
    color: #fff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
}

/* STATS */

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    padding: 20px;
    min-width: 180px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
}

.stat-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-card span {
    color: #9ca3af;
    font-size: 13px;
}

/* PROPERTY CARD */

.hero-property {
    position: relative;
}

.property-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.property-tag {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.property-icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
}

.property-card h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.location {
    color: #9ca3af;
    margin-bottom: 30px;
}

.property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-box {
    padding: 20px;
    border-radius: 18px;
    background: #111;
}

.detail-box span {
    color: #9ca3af;
    font-size: 13px;
}

.detail-box h4 {
    color: #fff;
    font-size: 30px;
    margin-top: 10px;
}

.property-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
}

/* FLOATING CARDS */

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 18px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
}

.floating-card i {
    color: #fff;
    font-size: 22px;
}

.floating-card h5 {
    color: #fff;
    font-size: 18px;
}

.floating-card span {
    color: #9ca3af;
    font-size: 12px;
}

.yield-card {
    top: 40px;
    right: -40px;
}

.rental-card {
    bottom: 40px;
    left: -40px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-property {
        max-width: 600px;
        margin: auto;
    }

}

@media(max-width:768px) {

    .hero {
        padding: 90px 0 60px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .property-details {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

}

/* =========================
   TRACK RECORD SECTION
========================= */

.track-record-section {
    position: relative;

    padding: 100px 0;

    background: #050505;

    overflow: hidden;
}

/* BACKGROUND EFFECT */

.track-record-section::before {
    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    left: -150px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(140px);

    opacity: .25;
}

.track-record-section::after {
    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -150px;
    right: -150px;

    border-radius: 50%;

    background: #374151;

    filter: blur(120px);

    opacity: .20;
}

.container {
    max-width: 1280px;

    margin: auto;

    padding: 0 20px;

    position: relative;

    z-index: 2;
}

/* HEADING */

.track-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 70px;
}

.track-badge {
    display: inline-block;

    padding: 12px 20px;

    border-radius: 50px;

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

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

    color: #d1d5db;

    font-size: 14px;

    margin-bottom: 20px;
}

.track-heading h2 {
    color: #fff;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;
}

.track-heading p {
    color: #9ca3af;

    font-size: 16px;

    line-height: 1.9;
}

/* GRID */

.track-grid {
    display: grid;

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

    gap: 25px;
}

/* CARD */

.track-card {
    position: relative;

    padding: 40px 25px;

    text-align: center;

    border-radius: 28px;

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

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

    backdrop-filter: blur(20px);

    transition: .4s;
}

.track-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 255, 255, .18);
}

/* ICON */

.track-icon {
    width: 85px;
    height: 85px;

    margin: 0 auto 25px;

    border-radius: 22px;

    background: #111111;

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

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

    color: #fff;

    font-size: 34px;
}

/* VALUE */

.track-card h3 {
    color: #fff;

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 12px;
}

/* LABEL */

.track-card span {
    color: #9ca3af;

    font-size: 15px;

    line-height: 1.6;
}

/* TABLET */

@media(max-width:992px) {

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

    .track-heading h2 {
        font-size: 42px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .track-record-section {
        padding: 80px 0;
    }

    .track-heading {
        margin-bottom: 50px;
    }

    .track-heading h2 {
        font-size: 34px;
    }

    .track-heading p {
        font-size: 14px;
    }

    .track-card {
        padding: 30px 20px;
    }

    .track-card h3 {
        font-size: 32px;
    }

}

/* SMALL MOBILE */

@media(max-width:576px) {

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

    .track-heading h2 {
        font-size: 28px;
    }

    .track-icon {
        width: 70px;
        height: 70px;

        font-size: 28px;
    }

    .track-card h3 {
        font-size: 28px;
    }

}

/* =========================
   GROWTH ASSETS DARK
========================= */

.growth-assets-dark {
    position: relative;
    padding: 100px 0;
    background: #050505;
    overflow: hidden;
}

/* BACKGROUND EFFECT */

.growth-assets-dark::before {
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    left: -180px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(140px);

    opacity: .25;
}

.growth-assets-dark::after {
    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -200px;
    right: -150px;

    border-radius: 50%;

    background: #374151;

    filter: blur(140px);

    opacity: .20;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* WRAPPER */

.growth-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */

.growth-content {
    position: relative;
    padding-right: 60px;
}

.growth-content::after {
    content: '';

    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 100%;

    border-radius: 20px;

    background: #6b7280;
}

/* BADGE */

.section-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

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

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

    color: #d1d5db;

    font-size: 14px;

    margin-bottom: 20px;
}

/* TITLE */

.growth-content h2 {
    color: #ffffff;

    font-size: 60px;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 25px;
}

.growth-content h2 span {
    display: block;
    color: #9ca3af;
}

/* TEXT */

.growth-content p {
    color: #9ca3af;

    font-size: 18px;

    line-height: 1.9;
}

/* GRID */

.growth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */

.growth-card {
    background: rgba(255, 255, 255, .03);

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

    border-radius: 24px;

    padding: 35px;

    transition: .35s;

    backdrop-filter: blur(20px);
}

.growth-card:hover {
    transform: translateY(-8px);

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

    border-color: rgba(255, 255, 255, .15);
}

/* ICON */

.card-icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background: #111111;

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

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

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 25px;
}

/* CARD TITLE */

.growth-card h3 {
    color: #ffffff;

    font-size: 28px;

    line-height: 1.3;

    margin-bottom: 15px;
}

/* CARD TEXT */

.growth-card p {
    color: #9ca3af;

    font-size: 15px;

    line-height: 1.8;
}

/* TABLET */

@media(max-width:992px) {

    .growth-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .growth-content {
        text-align: center;
        padding-right: 0;
    }

    .growth-content::after {
        display: none;
    }

    .growth-content h2 {
        font-size: 48px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .growth-assets-dark {
        padding: 80px 0;
    }

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

    .growth-content h2 {
        font-size: 38px;
    }

    .growth-content p {
        font-size: 15px;
    }

    .growth-card {
        padding: 28px;
    }

    .growth-card h3 {
        font-size: 24px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px) {

    .growth-content h2 {
        font-size: 32px;
    }

    .growth-card h3 {
        font-size: 22px;
    }

}

/* ====================================
   WHY COMMERCIAL REAL ESTATE
==================================== */

.why-cre-section {
    position: relative;
    padding: 110px 0;
    background: #050505;
    overflow: hidden;
}

/* BACKGROUND EFFECT */

.why-cre-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    filter: blur(150px);
    opacity: .25;
}

.why-cre-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #374151;
    filter: blur(150px);
    opacity: .20;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADER */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header h2 span {
    display: block;
    color: #9ca3af;
}

.section-header p {
    color: #9ca3af;
    font-size: 17px;
    line-height: 1.9;
}

/* GRID */

.why-cre-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.why-card {
    position: relative;

    padding: 40px 30px;

    border-radius: 24px;

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

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

    backdrop-filter: blur(20px);

    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);

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

    border-color: rgba(255, 255, 255, .15);
}

/* ICON */

.why-icon {
    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: #111111;

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

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

    color: #ffffff;

    font-size: 32px;

    margin-bottom: 25px;
}

/* TITLE */

.why-card h3 {
    color: #ffffff;

    font-size: 26px;

    line-height: 1.3;

    margin-bottom: 15px;
}

/* TEXT */

.why-card p {
    color: #9ca3af;

    font-size: 15px;

    line-height: 1.8;
}

/* TABLET */

@media(max-width:992px) {

    .section-header h2 {
        font-size: 46px;
    }

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

}

/* MOBILE */

@media(max-width:768px) {

    .why-cre-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 15px;
    }

    .why-card {
        padding: 30px 24px;
    }

    .why-card h3 {
        font-size: 22px;
    }

}

/* SMALL MOBILE */

@media(max-width:576px) {

    .why-cre-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

}

/* ==================================
   STRATA ADVANTAGE SECTION
================================== */

.strata-advantage {
    position: relative;
    padding: 110px 0;
    background: #050505;
    overflow: hidden;
}

/* BACKGROUND EFFECT */

.strata-advantage::before {
    content: '';

    position: absolute;

    top: -180px;
    left: -150px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(140px);

    opacity: .25;
}

.strata-advantage::after {
    content: '';

    position: absolute;

    bottom: -180px;
    right: -150px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: #374151;

    filter: blur(140px);

    opacity: .20;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADER */

.advantage-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.advantage-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

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

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

    color: #d1d5db;

    font-size: 14px;

    margin-bottom: 20px;
}

.advantage-header h2 {
    color: #ffffff;

    font-size: 58px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 20px;
}

.advantage-header h2 span {
    color: #9ca3af;
}

.advantage-header p {
    color: #9ca3af;

    font-size: 17px;

    line-height: 1.9;
}

/* GRID */

.advantage-grid {
    display: grid;

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

    gap: 25px;
}

/* CARD */

.advantage-card {
    position: relative;

    padding: 40px 30px;

    border-radius: 24px;

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

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

    backdrop-filter: blur(20px);

    transition: .4s;
}

.advantage-card:hover {
    transform: translateY(-10px);

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

    border-color: rgba(255, 255, 255, .15);
}

/* ICON */

.advantage-icon {
    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: #111111;

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

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

    color: #ffffff;

    font-size: 32px;

    margin-bottom: 25px;
}

/* TITLE */

.advantage-card h3 {
    color: #ffffff;

    font-size: 26px;

    line-height: 1.3;

    margin-bottom: 15px;
}

/* TEXT */

.advantage-card p {
    color: #9ca3af;

    font-size: 15px;

    line-height: 1.8;
}

/* TABLET */

@media(max-width:992px) {

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

    .advantage-header h2 {
        font-size: 46px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .strata-advantage {
        padding: 80px 0;
    }

    .advantage-header {
        margin-bottom: 50px;
    }

    .advantage-header h2 {
        font-size: 36px;
    }

    .advantage-header p {
        font-size: 15px;
    }

    .advantage-card {
        padding: 30px 24px;
    }

    .advantage-card h3 {
        font-size: 22px;
    }

}

/* SMALL MOBILE */

@media(max-width:576px) {

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

    .advantage-header h2 {
        font-size: 30px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    top: -200px;
    left: -150px;
    filter: blur(150px);
    opacity: .25;
}

.how-it-works::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #374151;
    bottom: -180px;
    right: -150px;
    filter: blur(150px);
    opacity: .20;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* CENTER LINE */

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
            #6b7280,
            #374151);
    transform: translateX(-50%);
}

/* ITEM */

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.process-item.left {
    justify-content: flex-start;
}

.process-item.right {
    justify-content: flex-end;
}

/* CARD */

.process-content {
    width: 42%;

    padding: 35px;

    border-radius: 24px;

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

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

    backdrop-filter: blur(20px);

    transition: .4s;
}

.process-content:hover {
    transform: translateY(-10px);

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

/* ICON */

.process-icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background: #111111;

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

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

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 20px;
}

/* TITLE */

.process-content h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}

/* TEXT */

.process-content p {
    color: #9ca3af;
    line-height: 1.8;
}

/* NUMBER */

.process-number {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: #111111;

    border: 3px solid #6b7280;

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

    color: #fff;

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

    z-index: 10;

    animation: pulseStep 3s infinite;
}

/* ANIMATION */

@keyframes pulseStep {

    0% {
        box-shadow: 0 0 0 0 rgba(107, 114, 128, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(107, 114, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 114, 128, 0);
    }

}

/* TABLET */

@media(max-width:992px) {

    .process-content {
        width: 44%;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .process-timeline::before {
        left: 35px;
    }

    .process-item,
    .process-item.left,
    .process-item.right {
        justify-content: flex-start;
    }

    .process-number {
        left: 35px;

        width: 70px;
        height: 70px;

        font-size: 22px;
    }

    .process-content {
        width: 100%;

        margin-left: 95px;

        padding: 25px;
    }

    .process-content h3 {
        font-size: 24px;
    }

}

@media(max-width:480px) {

    .how-it-works {
        padding: 80px 0;
    }

    .process-number {
        width: 60px;
        height: 60px;

        font-size: 18px;
    }

    .process-content {
        margin-left: 80px;
        padding: 20px;
    }

    .process-content h3 {
        font-size: 20px;
    }

}

/* ==========================
   EXPLORE GROWTH ASSETS
========================== */

.growth-assets {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.growth-assets::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    filter: blur(150px);
    opacity: .25;
}

.growth-assets::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #374151;
    filter: blur(150px);
    opacity: .20;
}

.growth-assets .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADER */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #9ca3af;
}

.section-header p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.9;
}

/* GRID */

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.asset-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: .4s;
}

.asset-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .15);
}

/* TOP */

.asset-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.asset-tag {
    padding: 8px 15px;
    border-radius: 30px;
    background: #111111;
    color: #d1d5db;
    font-size: 13px;
}

.asset-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, .08);

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

    color: #fff;
    font-size: 24px;
}

/* CONTENT */

.asset-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.asset-card p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* STATS */

.asset-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.asset-stats strong {
    display: block;
    color: #fff;
    font-size: 28px;
    margin-bottom: 5px;
}

.asset-stats span {
    color: #9ca3af;
    font-size: 13px;
}

/* BUTTON */

.asset-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-weight: 700;
    transition: .3s;
}

.asset-btn:hover {
    transform: translateY(-3px);
}

/* VIEW ALL */

.section-btn {
    text-align: center;
    margin-top: 50px;
}

.view-all-assets {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 30px;

    border-radius: 50px;

    text-decoration: none;

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

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

    color: #fff;

    font-weight: 600;
}

/* TABLET */

@media(max-width:992px) {

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

    .section-header h2 {
        font-size: 44px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .growth-assets {
        padding: 80px 0;
    }

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

    .section-header h2 {
        font-size: 34px;
    }

    .asset-card {
        padding: 25px;
    }

    .asset-card h3 {
        font-size: 24px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px) {

    .section-header h2 {
        font-size: 28px;
    }

    .asset-stats strong {
        font-size: 22px;
    }

}

/* ==================================
   RECENT OPPORTUNITIES
================================== */

.recent-opportunities {
    background: #050505;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.recent-opportunities::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    top: -200px;
    left: -150px;
    filter: blur(150px);
    opacity: .25;
}

.recent-opportunities::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #374151;
    bottom: -200px;
    right: -150px;
    filter: blur(150px);
    opacity: .20;
}

.recent-opportunities .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADER */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #9ca3af;
}

.section-header p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.9;
}

/* GRID */

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.opportunity-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: .4s;
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .15);
}

/* STATUS */

.property-status {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.open {
    background: rgba(34, 197, 94, .15);
    color: #4ade80;
}

.limited {
    background: rgba(245, 158, 11, .15);
    color: #fbbf24;
}

.funded {
    background: rgba(59, 130, 246, .15);
    color: #60a5fa;
}

/* ICON */

.property-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, .08);

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

    color: #fff;
    font-size: 30px;

    margin-bottom: 20px;
}

/* TITLE */

.opportunity-card h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* LOCATION */

.location {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 25px;
}

.location i {
    margin-right: 8px;
}

/* DETAILS */

.property-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.detail-box {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 18px;
}

.detail-box span {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 8px;
}

.detail-box strong {
    color: #fff;
    font-size: 24px;
}

/* TYPE */

.property-type {
    color: #d1d5db;
    margin-bottom: 25px;
    font-size: 14px;
}

/* BUTTON */

.property-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.property-btn:hover {
    transform: translateY(-3px);
}

/* VIEW ALL */

.section-btn {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* TABLET */

@media(max-width:992px) {

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

    .section-header h2 {
        font-size: 44px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .recent-opportunities {
        padding: 80px 0;
    }

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

    .section-header h2 {
        font-size: 34px;
    }

    .opportunity-card {
        padding: 25px;
    }

    .opportunity-card h3 {
        font-size: 24px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px) {

    .section-header h2 {
        font-size: 28px;
    }

    .property-details {
        grid-template-columns: 1fr;
    }

}

/* TESTIMONIAL SLIDER */

.testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;

    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* CARD */

.testimonial-card {
    width: 380px;
    flex-shrink: 0;

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

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

    border-radius: 24px;

    padding: 30px;

    backdrop-filter: blur(20px);

    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);

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

.quote-icon {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: #111;

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

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

    color: #fff;

    margin-bottom: 20px;
}

.testimonial-card p {
    color: #d1d5db;

    line-height: 1.8;

    margin-bottom: 25px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #111;

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

    color: #fff;
}

.testimonial-footer h4 {
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-footer span {
    color: #9ca3af;
    font-size: 14px;
}

/* AUTO SCROLL */

@keyframes scrollTestimonials {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* TABLET */

@media(max-width:992px) {

    .testimonial-card {
        width: 320px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .testimonial-card {
        width: 280px;
        padding: 25px;
    }

    .testimonial-track {
        animation-duration: 22s;
    }

}

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

.faq-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #1f2937;
    filter: blur(150px);
    opacity: .25;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #374151;
    filter: blur(150px);
    opacity: .20;
}

.faq-section .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-wrapper {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 20px;

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

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

    border-radius: 20px;

    overflow: hidden;

    transition: .3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, .15);
}

.faq-question {
    width: 100%;

    background: none;

    border: none;

    padding: 25px 30px;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.faq-question span {
    font-size: 28px;
    color: #9ca3af;
}

.faq-answer {
    display: none;

    padding: 0 30px 25px;
}

.faq-answer p {
    color: #9ca3af;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* TABLET */

@media(max-width:768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

}

/* MOBILE */

@media(max-width:480px) {

    .faq-question {
        font-size: 15px;
        line-height: 1.6;
    }

}