/* Index Page Styles */
:root {
    --primary-color: #c4a853;
    --bg-color: #0a0c11;
    --text-color: #ffffff;
    --accent-color: #c4a853;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(196, 168, 83, 0.1);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Particle Background and Overlay */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    width: 100%;
    height: 100%;
}

.landing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 17, 0.85), rgba(26, 31, 44, 0.95));
    z-index: 2;
}

/* Main Container */
.landing-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Header Styles */
.landing-header {
    text-align: center;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    background: rgba(196, 168, 83, 0.1);
    border: 1px solid rgba(196, 168, 83, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.exclusive-badge i {
    color: var(--accent-color);
    font-size: 1rem;
}

.exclusive-badge span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Logo Styles */
.brand-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoEntrance 1s ease-out forwards;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(355deg);
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff 30%, var(--accent-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
}

.brand-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

/* Value Drivers */
.value-drivers {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

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

.driver-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(196, 168, 83, 0.05);
}

.driver-icon {
    width: 56px;
    height: 56px;
    background: rgba(196, 168, 83, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.driver-card:hover .driver-icon {
    background: var(--accent-color);
    transform: rotate(360deg);
}

.driver-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.driver-card:hover .driver-icon i {
    color: var(--bg-color);
}

.driver-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.driver-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Access Section */
.access-section {
    text-align: center;
}

.access-form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.access-form.shake {
    animation: shake 0.5s ease-in-out;
}

/* Form Group */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.access-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.access-form input:focus {
    outline: none;
    border-color: #c4a853;
    background: rgba(255, 255, 255, 0.15);
}

.access-form input.error {
    border-color: #ff4444;
    animation: shake 0.5s ease-in-out;
}

.access-form input.success {
    border-color: #00C851;
}

/* Error Message */
.error-message {
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 100%;
    color: #ff4444;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-5px);
    animation: fadeInUp 0.3s ease forwards;
}

.error-message i {
    font-size: 1rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #c4a853 0%, #e5c675 100%);
    border: none;
    border-radius: 8px;
    color: #1a1f2c;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 168, 83, 0.3);
}

.submit-btn.error {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    animation: shake 0.5s ease-in-out;
}

.submit-btn.success {
    background: linear-gradient(135deg, #00C851 0%, #00E676 100%);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Contact Info Section */
.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.referral-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    background: rgba(196, 168, 83, 0.08);
    border: 1px solid rgba(196, 168, 83, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.referral-note:hover {
    background: rgba(196, 168, 83, 0.12);
    transform: translateY(-2px);
}

.referral-note i {
    color: var(--accent-color);
    font-size: 1rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

.referral-note span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(196, 168, 83, 0.1);
    border-color: rgba(196, 168, 83, 0.2);
    transform: translateY(-2px);
}

.contact-link i {
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: rotate(-15deg);
}

.contact-link span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .drivers-grid {
        gap: 1.5rem;
    }
    
    .driver-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 1.5rem;
        min-height: auto;
        height: auto;
        align-items: flex-start;
    }
    
    .content-wrapper {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 1rem;
    }
    
    .content-wrapper {
        gap: 1.5rem;
    }
    
    .drivers-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
    
    .exclusive-badge {
        padding: 0.6rem 1rem;
    }
    
    .driver-card {
        padding: 1rem;
    }
    
    .access-form {
        padding: 0 1rem;
    }
}

/* Welcome Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 17, 0.98), rgba(26, 31, 44, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.welcome-modal.active {
    opacity: 1;
    visibility: visible;
}

.welcome-content {
    max-width: 600px;
    width: 90%;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.welcome-modal.active .welcome-content {
    transform: translateY(0);
    opacity: 1;
}

.welcome-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(196, 168, 83, 0.2), rgba(196, 168, 83, 0.1));
    border: 1px solid rgba(196, 168, 83, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.welcome-badge i {
    color: #c4a853;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.welcome-badge span {
    color: #c4a853;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.welcome-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2.5rem;
    filter: brightness(0) invert(1);
    animation: welcomeLogoFloat 3s ease-in-out infinite;
}

.welcome-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.welcome-body h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-family: var(--font-secondary);
    background: linear-gradient(45deg, #ffffff 30%, var(--accent-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 480px;
}

.welcome-message {
    width: 100%;
    max-width: 480px;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 168, 83, 0.15);
    margin-top: 1rem;
}

.welcome-message p {
    color: #c4a853;
    font-size: 1rem;
    margin: 0;
    animation: messagePulse 2s ease infinite;
}

@keyframes welcomeLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes messagePulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Responsive Adjustments for Welcome Modal */
@media (max-width: 768px) {
    .welcome-content {
        padding: 3rem 2rem;
    }

    .welcome-body h2 {
        font-size: 2rem;
    }

    .welcome-body p {
        font-size: 1.1rem;
    }

    .welcome-logo {
        width: 120px;
        margin-bottom: 2rem;
    }

    .welcome-badge {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .welcome-content {
        padding: 2.5rem 1.5rem;
    }

    .welcome-body h2 {
        font-size: 1.75rem;
    }

    .welcome-body p {
        font-size: 1rem;
    }

    .welcome-logo {
        width: 100px;
        margin-bottom: 1.5rem;
    }
}

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f2c 0%, #2a2f3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
}

.welcome-screen.active {
    opacity: 1;
    visibility: visible;
}

.welcome-content {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: welcomeFadeIn 0.8s ease forwards 0.3s;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(196, 168, 83, 0.1);
    border: 1px solid rgba(196, 168, 83, 0.3);
    border-radius: 20px;
    color: #c4a853;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.welcome-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2.5rem;
    filter: brightness(0) invert(1);
    animation: welcomeLogoFloat 3s ease-in-out infinite;
}

.welcome-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff 30%, var(--accent-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
}

.welcome-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.loading-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--accent-color);
}

.loading-dots {
    display: flex;
    gap: 0.2rem;
}

.loading-dots span {
    display: inline-block;
    animation: loadingDots 1.4s infinite;
    margin: 0 2px;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes welcomeFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loadingDots {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
} 