/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Color Palette - Rolex/Porsche Inspired */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #4a4a4a;
    --light-gray: #8a8a8a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --white: #ffffff;
    --off-white: #f8f8f8;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 5%;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-black), var(--secondary-black), var(--dark-gray), var(--primary-black));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    animation: floatingLights 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatingLights {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 100px;
    width: 500px;
}

.nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232a2a2a" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cube Animation */
.cube {
    place-self: center;
    transform-style: preserve-3d;
    transform: rotatex(-35deg) rotatey(-45deg);
    width: 39vmin;
    height: 39vmin;
    display: grid;
    transition: transform 0.3s ease;
}

.face {
    grid-area: 1/ 1;
    width: 39vmin;
    aspect-ratio: 3/ 4;
    transform: 
        rotatey(calc(var(--j)/var(--n)*1turn))
        translatez(19.5vmin);
    background: 
        /* ABC Pattern - A */
        linear-gradient(90deg, transparent 15%, currentcolor 15% 25%, transparent 25%) 
            39vmin 0/ 100% 20% repeat-x,
        /* ABC Pattern - B */
        linear-gradient(90deg, transparent 40%, currentcolor 40% 50%, transparent 50%) 
            39vmin 0/ 100% 20% repeat-x,
        /* ABC Pattern - C */
        linear-gradient(90deg, transparent 65%, currentcolor 65% 75%, transparent 75%) 
            39vmin 0/ 100% 20% repeat-x,
        /* Vertical lines for letter structure */
        linear-gradient(transparent 30%, currentcolor 30% 35%, transparent 35%),
        linear-gradient(transparent 50%, currentcolor 50% 55%, transparent 55%),
        linear-gradient(transparent 70%, currentcolor 70% 75%, transparent 75%);
    color: 
        color-mix(in srgb, 
            #403700 calc(var(--int, round(down, var(--j)/2, 1))*100%), 
            #d4af37);
    filter: drop-shadow(1px 0 currentcolor);
    animation: cubeRotate 2s ease-in-out infinite;
}

@keyframes cubeRotate { 
    to { 
        background-position: 0 0;
        transform: 
            rotatey(calc(var(--j)/var(--n)*1turn + 360deg))
            translatez(19.5vmin);
    } 
}

/* Fallback for no round() in CSS */
@supports not (scale: Round(.3, 1)) {
    .face { 
        --int: calc(var(--j)/2 - .5);
    }
}

/* GIF Animation Container */
.gif-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    animation: gifGlow 3s ease-in-out infinite;
    display: inline-block;
}

.gif-container .hero-subtitle {
    color: var(--primary-black);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.gif-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: gifShimmer 2s ease-in-out infinite;
}

@keyframes gifGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes gifShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}



.luxury-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.card-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--light-gray);
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.fade-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    animation: fadeScroll 3s ease-in-out infinite;
}

.fade-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: fadeLine 2s ease-in-out infinite;
}

@keyframes fadeScroll {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes fadeLine {
    0% { 
        height: 0;
        opacity: 0;
    }
    50% { 
        height: 40px;
        opacity: 1;
    }
    100% { 
        height: 0;
        opacity: 0;
    }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.luxury-video {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold);
}

.luxury-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(10, 10, 10, 0.3) 100%);
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-black);
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 2rem;
    font-size: 2rem;
    color: var(--primary-black);
    position: relative;
    z-index: 2;
    border: 4px solid var(--secondary-black);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.service-features span {
    background: var(--dark-gray);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--medium-gray);
}

/* Investment Section */
.investment {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--dark-gray) 100%);
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

.investment-highlights {
    margin-bottom: 3rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-black);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

.highlight i {
    font-size: 2rem;
    color: var(--gold);
    min-width: 50px;
}

.highlight h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.investment-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.investment-amount {
    text-align: center;
}

.amount {
    display: block;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-primary);
}

.label {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 300px;
    justify-content: center;
}

.chart-element {
    width: 60px;
    background: linear-gradient(to top, var(--gold), var(--gold-light));
    border-radius: 5px 5px 0 0;
    animation: chartGrow 2s ease-out;
}

.chart-element:nth-child(1) { height: 200px; animation-delay: 0s; }
.chart-element:nth-child(2) { height: 280px; animation-delay: 0.3s; }
.chart-element:nth-child(3) { height: 180px; animation-delay: 0.6s; }

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--final-height); }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--secondary-black);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    min-width: 50px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--light-gray);
    font-size: 1rem;
}

.contact-form {
    background: var(--secondary-black);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-black);
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: 350px;
}

.footer-brand h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-align: left;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 60px;
        width: 320px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .about-content,
    .investment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        margin: 0;
        border-radius: 8px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .investment-cta {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cube {
        width: 30vmin;
        height: 30vmin;
    }
    
    .face {
        width: 30vmin;
    }
    
    .luxury-video {
        height: 350px;
        border-radius: 8px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .highlight i {
        min-width: auto;
        font-size: 1.5rem;
    }
    
    .highlight h4 {
        font-size: 1.1rem;
    }
    
    .highlight p {
        font-size: 0.85rem;
    }
    
    .investment-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4%;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .about-content,
    .investment-content,
    .contact-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .services-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .service-card {
        margin: 0;
        border-radius: 6px;
    }
    
    .service-image {
        height: 140px;
        border-radius: 6px 6px 0 0;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        top: -25px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-features span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .contact-form {
        padding: 1rem 0.5rem;
        border-radius: 6px;
    }
    
    .form-group input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .cube {
        width: 25vmin;
        height: 25vmin;
    }
    
    .face {
        width: 25vmin;
    }
    
    .luxury-video {
        height: 250px;
        border-radius: 6px;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .stat {
        padding: 1rem;
        border-radius: 6px;
    }
    
    .stat h3 {
        font-size: 1.4rem;
    }
    
    .stat p {
        font-size: 0.7rem;
    }
    
    .highlight {
        padding: 0.8rem;
        border-radius: 6px;
    }
    
    .highlight h4 {
        font-size: 1rem;
    }
    
    .highlight p {
        font-size: 0.8rem;
    }
    
    .investment-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
} 

/* Tag List Styles */
.tag-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.5rem 0;
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0 0.1rem;
  color: black;
  font-size: 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 0.3rem;
  padding: 0.3rem 0.6rem;
  margin-right: 0.5rem;
  box-shadow: 
    0 0.05rem 0.1rem rgb(0 0 0 / 20%),
    0 0.05rem 0.25rem rgb(0 0 0 / 30%),
    0 0.1rem 0.75rem rgb(0 0 0 / 40%);
  
  span {
    font-size: 0.8rem;
    color: var(--white);
  }
}

.fade {
  pointer-events: none;
  background: linear-gradient(90deg, var(--primary-black), transparent 30%, transparent 70%, var(--primary-black));
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsiveness for tag list */
@media (max-width: 768px) {
  .tag-list {
    max-width: 90vw;
    gap: 0.3rem 0;
    padding: 0.3rem 0;
  }
  
  .tag {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    margin-right: 0.4rem;
    
    span {
      font-size: 0.7rem;
    }
  }
}

@media (max-width: 480px) {
  .tag-list {
    max-width: 95vw;
    gap: 0.2rem 0;
    padding: 0.2rem 0;
  }
  
  .tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
    margin-right: 0.3rem;
    
    span {
      font-size: 0.65rem;
    }
  }
} 

/* Gold Text Styling */
.gold-text {
  color: var(--gold);
  font-weight: 600;
}

/* Contact Form Error Messages */
.error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  display: block;
}

.success-message {
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-black);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Themed Popup Modal */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-modal.show {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
  border: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}

.popup-modal.show .popup-content {
  transform: scale(1);
}

.popup-header {
  margin-bottom: 1.5rem;
}

.popup-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: popupIconPulse 2s ease-in-out infinite;
}

.popup-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-primary);
}

.popup-body {
  margin-bottom: 2rem;
}

.popup-body p {
  color: var(--light-gray);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.popup-footer {
  display: flex;
  justify-content: center;
}

.popup-footer .btn {
  min-width: 120px;
}

@keyframes popupIconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Mobile responsiveness for popup */
@media (max-width: 768px) {
  .popup-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .popup-icon {
    font-size: 2.5rem;
  }
  
  .popup-header h3 {
    font-size: 1.3rem;
  }
  
  .popup-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 1rem;
  }
  
  .popup-icon {
    font-size: 2rem;
  }
  
  .popup-header h3 {
    font-size: 1.2rem;
  }
} 
