/* Contact Page Styles */

/* Navigation Active State Override */
.nav-link.active {
    color: #E53935 !important;
}

/* Main Contact Layout */
.contact-main {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: #000000;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E53935;
    background: rgba(229, 57, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-select optgroup {
    background: #1a1a1a;
    color: #E53935;
    font-weight: 600;
    font-style: normal;
}

.form-select optgroup option {
    color: #ffffff;
    font-weight: 400;
    padding-left: 16px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 16px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info {
    background: rgba(229, 57, 53, 0.03);
    border: 1px solid rgba(229, 57, 53, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation Active State */
.nav-link.active {
    color: #E53935;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-main {
        padding: 100px 0 60px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .contact-info {
        padding: 24px 16px;
    }
}