/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --jet-black: #000000;
    --deep-black: #0a0a0a;
    --soft-silver: #e8e8e8;
    --midnight-blue: #1a1a2e;
    --warm-off-white: #fafafa;
    --accent-gold: #d4af37;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --border-light: #333333;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--jet-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--jet-black);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--jet-black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-left {
    justify-self: start;
    margin-left: -2rem;
}

.nav-center {
    justify-self: center;
}

.nav-right {
    justify-self: end;
}

.nav-brand .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-brand .brand-name:hover {
    color: var(--accent-gold);
}

.nav-brand .footer-logo {
    height: 80px;
    width: 120px;
    transition: transform 0.3s ease;
}

.nav-brand .footer-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-phone .phone-number {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-phone .phone-number:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--jet-black);
    color: var(--text-dark);
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Homebackground.jpg') center center/cover no-repeat;
    opacity: 0.6;
    animation: heroZoom 20s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Location Markers */
.location-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.location {
    position: absolute;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.location.left {
    bottom: 20%;
    left: 10%;
}

.location.center {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.location.right {
    bottom: 20%;
    right: 10%;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    transform: translateY(60px);
    transition: transform 0.3s ease;
}

.hero-content.scroll-animate {
    transform: translateY(0);
}

.hero-text-container {
    margin-bottom: 3rem;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-cta {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.launch-text {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOMO Section */
.fomo {
    background: var(--deep-black);
    color: var(--text-dark);
    padding: 4rem 0;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fomo.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.fomo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.fomo-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fomo-cta {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--deep-black);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--jet-black);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.5s ease;
}

.step.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.step.animate::before {
    height: 100%;
}

.step:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-soft);
}

.step-number {
    background: var(--accent-gold);
    color: var(--jet-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* Application Portal Section */
.application-portal {
    padding: 8rem 0;
    background: var(--jet-black);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.application-portal.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.membership-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--deep-black);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.membership-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--jet-black);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    font-size: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Concierge Section */
.concierge {
    padding: 8rem 0;
    background: var(--deep-black);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.concierge.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--jet-black);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.contact-card:hover::before {
    transform: translateX(100%);
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-gold);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-email {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--jet-black);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

/* Investor Relations Section */
.investor-relations {
    padding: 8rem 0;
    background: var(--jet-black);
    color: var(--text-dark);
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.investor-relations.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.investor-relations .section-title,
.investor-relations .section-subtitle {
    color: var(--text-dark);
}

.investor-relations p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investor-contact {
    margin-top: 3rem;
}

.investor-email {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--deep-black);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer.scroll-animate {
    transform: translateY(0);
    opacity: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-tagline {
    font-style: italic;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.footer-newsletter input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.footer-newsletter input::placeholder {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.footer-copyright {
    color: var(--text-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: var(--deep-black);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
    transform: scale(1.1) rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.waitlist-form .form-group {
    margin-bottom: 1.5rem;
}

/* Scroll Animations */
.section-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Animation Classes */
.image-scale {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.image-scale.scale-animate {
    transform: scale(1.1);
}

.image-slide {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0) scale(1);
}

.image-slide.slide-animate {
    transform: translateX(20px) scale(1.05);
}

.image-rotate {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg) scale(1);
}

.image-rotate.rotate-animate {
    transform: rotate(5deg) scale(1.1);
}

/* Image Slider Section */
.image-slider-section {
    height: 100vh;
    background: var(--jet-black);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.1s ease-out;
}

.slide {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: var(--text-dark);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-dark);
}

.slide-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-dots {
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.2);
}

.scroll-indicator {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
    color: var(--accent-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .nav-dots {
        gap: 0.75rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* margin-left: -300px; */
    }
    
    .nav-left, .nav-center, .nav-right {
        justify-self: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        transform: translateY(40px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .location {
        font-size: 0.7rem;
    }
    
    .location.left {
        left: 5%;
        bottom: 15%;
    }
    
    .location.center {
        bottom: 30%;
    }
    
    .location.right {
        right: 5%;
        bottom: 15%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-container {
        padding: 0 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        transform: translateY(30px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .location {
        display: none;
    }
} 

/* Premium Experience Showcase */
.premium-showcase {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--jet-black) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-image {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-image:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-image:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-image:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 3s;
}

.floating-image:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.showcase-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.experience-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: left 0.6s ease;
}

.experience-card:hover::before {
    left: 100%;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.card-visual {
    position: relative;
    margin-bottom: 2rem;
}

.image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-gold);
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-image {
    transform: scale(1.1);
}

.card-bg-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.card-content p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* Journey Process */
.journey-process {
    background: var(--jet-black);
    padding: 8rem 0;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.process-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marker-number {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--jet-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.marker-line {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    margin: 0 2rem;
}

.content-visual {
    flex-shrink: 0;
}

.visual-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-item:hover .visual-image {
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Service Highlights */
.service-highlights {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--jet-black) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.highlights-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.highlights-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.highlights-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlights-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.highlight-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-item:hover .highlight-image {
    transform: scale(1.1) rotate(5deg);
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.highlight-content p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-features {
    list-style: none;
    padding: 0;
}

.highlight-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.highlight-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--deep-black) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    opacity: 0.4;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer - Ensure visibility */
.footer {
    background: var(--deep-black);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-tagline {
    font-style: italic;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.footer-newsletter input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.footer-newsletter input::placeholder {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.footer-copyright {
    color: var(--text-light);
} 

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .showcase-title,
    .process-title,
    .highlights-title,
    .cta-title {
        font-size: 2.5rem;
    }
    
    .experience-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        flex-direction: column;
        gap: 2rem;
        margin: 1rem 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-image {
        width: 80px;
        height: 80px;
    }
    
    .image-container {
        width: 100px;
        height: 100px;
    }
    
    .visual-image {
        width: 120px;
        height: 120px;
    }
    
    .highlight-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .showcase-title,
    .process-title,
    .highlights-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .experience-card,
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .marker-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .floating-image {
        width: 60px;
        height: 60px;
    }
    
    .image-container {
        width: 80px;
        height: 80px;
    }
    
    .visual-image {
        width: 100px;
        height: 100px;
    }
    
    .highlight-image {
        width: 80px;
        height: 80px;
    }
}

/* Ensure footer is always visible */
.footer {
    position: relative !important;
    z-index: 1000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
} 

/* FOMO Highlight Block */
.fomo-section {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--midnight-blue) 100%);
    /* padding: 6rem 0; */
    position: relative;
    overflow: hidden;
    width: 100%;
}

.fomo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.fomo-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.fomo-headline {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fomo-subcopy {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.logo-reel-container {
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0rem 6rem;
}

.logo-reel {
    display: flex;
    animation: logoReel 30s linear infinite;
    width: max-content;
}

.logo-reel:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.logo-item:hover .brand-logo {
    filter: grayscale(0%) brightness(1);
}

.fomo-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@keyframes logoReel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for FOMO section */
@media (max-width: 768px) {
    .fomo-headline {
        font-size: 2.5rem;
    }
    
    .fomo-subcopy {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .logo-item {
        width: 130px;
        height: 90px;
        margin: 0 0.75rem;
    }
    
    .logo-reel {
        animation-duration: 20s;
    }
} 

/* Membership Flow Section */
.membership-flow {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--midnight-blue) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.membership-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.flow-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.flow-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.flow-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.flow-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    transition: height 0.6s ease;
}

.step-item:hover::before {
    height: 100%;
}

.step-item:hover {
    transform: translateX(15px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--jet-black);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive adjustments for Membership Flow section */
@media (max-width: 768px) {
    .flow-headline {
        font-size: 2.5rem;
    }
    
    .flow-subtext {
        font-size: 1.1rem;
    }
    
    .step-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Why Ultravion Section */
.why-ultravion {
    background: var(--jet-black);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-text {
    position: relative;
    z-index: 2;
}

.why-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.why-body {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.why-visual {
    position: relative;
    z-index: 2;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.visual-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.why-ultravion:hover .visual-image {
    transform: scale(1.05);
}

/* Responsive adjustments for Why Ultravion section */
@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-headline {
        font-size: 2.5rem;
    }
    
    .why-body {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .visual-image {
        height: 400px;
    }
} 

/* Navigation positioning overrides */
.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 2rem !important;
    position: relative;
    min-height: 80px;
}

.navbar {
    min-height: 80px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    min-height: 70px;
    padding: 0.3rem 0;
}

.nav-left {
    margin-left: -3rem !important;
    transform: translateX(-2rem);
    z-index: 10;
}

.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.nav-right {
    margin-right: -1rem;
    z-index: 10;
}

/* Logo sizing */
.nav-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 70px;
}

/* Mobile phone number hiding */
@media (max-width: 768px) {
    .phone-number {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .phone-number {
        display: block !important;
    }
} 