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

/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-top: 80px;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Info Cards */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-blue));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-card i {
    font-size: 50px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 30px;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
}

.input-group input {
    padding-left: 45px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Office Details */
.office-details h3 {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 30px;
}

.office-card {
    background: var(--gray-50);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.office-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.office-info p {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.office-info i {
    color: var(--primary-orange);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    padding: 25px;
    border-radius: 12px;
    color: white;
}

.emergency-contact h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.emergency-contact p {
    margin-bottom: 15px;
    font-size: 14px;
}

.emergency-numbers p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.emergency-numbers i {
    font-size: 22px;
}

/* Map Placeholder */
.map-placeholder {
    background: var(--gray-300);
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
}

.map-note {
    font-size: 12px;
    color: var(--gray-600);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 50vh;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-form-container h3,
    .office-details h3 {
        font-size: 24px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}
