/* ============================================
   Contact Page Specific Styles
   ============================================ */

/* Page Header - Similar to About page */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(0, 102, 204, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920') center/cover;
    padding: 50px 0 50px;
    color: #fff;
    position: relative;
    margin-top: 76px;
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.form-title {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

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

.form-check-input {
    border: 2px solid #e0e0e0;
    width: 1.25rem;
    height: 1.25rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Map Section */
.map-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-title {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.map-container {
    flex: 1;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-info {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.map-info h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.parking-info p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.parking-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Additional Contact Options */
.additional-contact {
    background: #fff;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.contact-option i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-option h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-form-wrapper,
    .map-wrapper {
        margin-bottom: 2rem;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-title,
    .map-title {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-option i {
        font-size: 2.5rem;
    }
    
    .map-container {
        min-height: 300px;
    }
}