﻿/* Contact Page Specific Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-form-card,
.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

    .contact-form-card:hover,
    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
    }

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .contact-method:last-child {
        border-bottom: none;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Form Input Styling */
.form-control, .form-select {
    background-color: rgba(0,0,0,0.2) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: white !important;
}

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero-section {
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}
