/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff8000, #ff6b6b);
}

.form-label {
    font-weight: 600;
    color: #29193d;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #ff8000;
    box-shadow: 0 0 0 0.2rem rgba(255, 128, 0, 0.25);
}

.form-control:hover, .form-select:hover {
    border-color: #ddd;
}

.form-control:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.form-control:disabled:hover {
    border-color: #e9ecef;
}

.btn-submit {
    background: linear-gradient(45deg, #ff8000, #ff6b6b);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 128, 0, 0.3);
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-info-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.contact-info-item i {
    font-size: 1.2rem;
    color: #ff8000;
    margin-right: 12px;
    width: 25px;
}

.contact-info-item .info-text {
    flex: 1;
}

.contact-info-item .info-label {
    font-weight: 600;
    color: #29193d;
    display: block;
    margin-bottom: 2px;
}

.contact-info-item .info-value {
    color: #666;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 20px;
    text-align: center;
    flex-shrink: 0;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 6px;
    color: #29193d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ff8000;
    color: white;
    transform: translateY(-3px);
}

@media (max-width:768px) {
    .contact-hero h1 { font-size: 2rem; }
    .contact-form-card, .contact-info-card { 
        padding: 30px 20px; 
        margin: 15px;
    }
    .btn-submit { 
        width: 100%; 
        padding: 12px 20px;
    }
}
