:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --color-gold: #DDBD81;
    --color-blue: #4da6ff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px
}

.text-gold {
    color: var(--color-gold)
}

.text-center {
    text-align: center
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent
}

.btn-primary {
    background-color: var(--color-gold);
    color: #000 !important;
    font-weight: 700
}

.btn-primary:hover {
    background-color: #c9a868;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(221, 189, 129, 0.2)
}

.btn-outline {
    border-color: var(--color-gold);
    color: var(--color-gold)
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: #000
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s
}

.main-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    font-weight: 500
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold)
}

.nav-links .btn-primary {
    color: #000 !important;
    font-weight: 700
}

.hamburger-menu {
    display: none !important;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px
}

.hero .container {
    width: 100%
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.hero-text {
    text-align: left
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #DDBD81);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 600px
}

.hero-price {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5)
}

.hero-form-card {
    background: rgba(18, 18, 18, 0.85);
    padding: 40px;
    border: 1px solid rgba(221, 189, 129, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin-left: auto
}

.hero-form-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px
}

.hero-form-card p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 0.9rem
}

.section {
    padding: 80px 0
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff
}

.section-subtitle {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px
}

.overview-text p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 1.1rem
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 30px
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 5px
}

.stat-item p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase
}

.amenities-slider-wrapper {
    position: relative;
    padding: 20px 0
}

.amenities-track {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.amenities-track::-webkit-scrollbar {
    display: none
}

.amenity-card {
    min-width: 350px;
    max-width: 350px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.amenity-img {
    height: 220px;
    width: 100%;
    object-fit: cover
}

.amenity-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.amenity-card.cta-card {
    background: linear-gradient(135deg, #2d1b4e, #1a0b2e);
    border: 1px solid rgba(221, 189, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%
}

.cta-card-content {
    padding: 30px
}

.cta-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px
}

.cta-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 25px
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-right: 20px
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.slider-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000
}

.amenity-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff
}

.amenity-content p {
    color: #aaa;
    font-size: 0.9rem
}

.legacy-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px
}

.legacy-card {
    text-align: left
}

.legacy-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.legacy-icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.6) 0%, transparent 70%);
    filter: blur(5px);
    z-index: 0
}

.legacy-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-gold);
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5)
}

.legacy-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px
}

.legacy-card p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6
}

@media(max-width:1024px) {
    .legacy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px
    }
}

@media(max-width:600px) {
    .legacy-grid {
        grid-template-columns: 1fr
    }
}

.investment-edge-section {
    background: #080808;
    padding: 80px 0
}

.inv-category-header {
    border: 1px solid var(--color-blue);
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
    background: rgba(77, 166, 255, 0.05)
}

.inv-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px
}

.inv-card {
    background: transparent
}

.inv-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: 0.3s
}

.inv-card:hover img {
    opacity: 1;
    transform: scale(1.02)
}

.inv-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600
}

.inv-card p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5
}

@media(max-width:900px) {
    .inv-card-grid {
        grid-template-columns: 1fr
    }
}

.footer {
    background: linear-gradient(to bottom, #1a0b2e, #2d1b4e);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(221, 189, 129, 0.1);
    font-size: 0.9rem;
    color: #b3b3b3;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none
}

.footer .container {
    position: relative;
    z-index: 2
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 1px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: #b3b3b3;
    font-size: 0.85rem;
    transition: 0.3s
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s
}

.social-icon:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem
}

.footer-bottom p {
    margin: 0
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(5px)
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--color-gold);
    position: relative;
    transform: translateY(20px);
    transition: 0.4s
}

.modal-overlay.open .modal-content {
    transform: translateY(0)
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem
}

.form-control {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animation-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out
}

.animation-fade-up.active {
    opacity: 1;
    transform: translateY(0)
}

h1 {
    letter-spacing: -1px;
    font-weight: 700
}

h2 {
    letter-spacing: 0.5px
}

p {
    opacity: 0.9;
    font-weight: 300
}

@media(max-width:992px) {
    .hamburger-menu {
        display: block !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100% !important;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        display: flex;
        padding: 30px 20px;
        border-left: 1px solid rgba(221, 189, 129, 0.2);
        overflow-y: auto;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links a {
        margin: 15px 0;
        margin-left: 0;
        font-size: 1.1rem;
    }

    .nav-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        display: none;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
        display: block;
    }

    .hero-text h1 {
        font-size: 2.2rem
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-form-card {
        margin: 0 auto;
        width: 100%
    }

    .overview-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center
    }
}

@media(max-width:768px) {
    .hero-text h1 {
        font-size: 1.8rem
    }

    .hero-title {
        font-size: 3rem !important
    }

    .highlight-text {
        font-size: 2rem !important
    }

    .hero-subtitle {
        font-size: 1rem;
        border: none;
        padding: 0;
        margin-bottom: 20px
    }

    .hero-features {
        flex-direction: column
    }

    .feature-pill {
        width: 100%;
        justify-content: center
    }

    .glass-form {
        padding: 30px 20px
    }

    .form-header h3 {
        font-size: 1.4rem
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start !important
    }

    .price-row div:last-child {
        text-align: left;
        margin-top: 10px
    }

    .payment-plan-box {
        padding: 15px
    }

    .hero-grid {
        gap: 25px
    }

    .section {
        padding: 50px 0
    }

    .section-title {
        font-size: 1.8rem
    }

    .video-usp-item {
        flex-direction: column;
        gap: 10px !important
    }

    .usp-icon {
        width: 45px !important;
        height: 45px !important
    }

    .pricing-card {
        padding: 25px !important
    }

    .inv-card-grid {
        grid-template-columns: 1fr
    }

    .dev-stats-grid {
        grid-template-columns: 1fr
    }

    .vibe-accordion {
        flex-direction: column
    }

    .vibe-card {
        min-height: 300px
    }

    .modal-content {
        width: 95%;
        padding: 25px
    }

    .form-control {
        padding: 10px !important;
        font-size: 16px
    }
}

@media(max-width:576px) {
    .container {
        padding: 0 15px
    }

    .main-header {
        padding: 10px 0
    }

    .header-logo {
        height: 30px
    }

    .nav-links {
        max-width: 300px
    }

    .hero-section {
        padding: 80px 0 40px
    }

    .hero-title {
        font-size: 2.2rem !important
    }

    .highlight-text {
        font-size: 1.5rem !important
    }

    .hero-subtitle {
        font-size: 0.9rem
    }

    .feature-pill {
        font-size: 0.8rem;
        padding: 8px 15px
    }

    .hero-price-tag {
        padding: 12px 25px;
        flex-direction: row;
        gap: 20px
    }

    .hero-price-tag .price {
        font-size: 1.8rem
    }

    .section-title {
        font-size: 1.5rem
    }

    .section-subtitle {
        font-size: 0.8rem
    }

    .glass-form {
        padding: 20px
    }

    .form-header h3 {
        font-size: 1.2rem
    }

    .form-header p {
        font-size: 0.8rem
    }

    .input-group input,
    .input-group select {
        padding: 12px 12px 12px 45px !important;
        font-size: 16px
    }

    .input-group i {
        font-size: 1rem;
        left: 12px
    }

    .submit-btn {
        padding: 12px 15px;
        font-size: 0.85rem
    }

    .payment-plan-box {
        padding: 12px
    }

    .dev-stat h3 {
        font-size: 1.5rem
    }

    .vibe-card h3 {
        font-size: 1rem
    }

    .amenity-card {
        min-width: 100%;
        max-width: 100%
    }

    .amenities-track {
        gap: 15px
    }

    .slider-controls {
        justify-content: center;
        padding-right: 0
    }

    .legacy-card h4 {
        font-size: 1rem
    }

    .legacy-icon-wrapper i {
        font-size: 2rem
    }

    .footer {
        padding: 50px 0 20px
    }

    .footer-col h4 {
        font-size: 0.9rem
    }

    .footer-col ul li a {
        font-size: 0.8rem
    }

    .footer-bottom {
        font-size: 0.7rem
    }

    .modal-content {
        width: 98%;
        padding: 20px
    }

    .close-modal {
        font-size: 1.3rem
    }
}