/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.nav-links li {
    margin: 0;
}

.nav-badge {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-badge:hover {
    color: #ffffff;
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 21, 53, 0.95) 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact-close {
    color: rgba(255, 255, 255, 0.6);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-close:hover {
    color: #ffffff;
}

.contact-modal-content h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-modal-content .form-group {
    margin-bottom: 20px;
}

.contact-modal-content label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-modal-content input,
.contact-modal-content textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-modal-content input:focus,
.contact-modal-content textarea:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.contact-modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-modal-content .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.contact-modal-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-modal-content .status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.contact-modal-content .status-message.success {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.contact-modal-content .status-message.error {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 15px 20px;
        justify-content: center;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-badge {
        font-size: 0.85rem;
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .contact-modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .contact-modal-content h2 {
        font-size: 1.5rem;
    }
}
