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

/* --- Contact Hero --- */
.contact-hero {
    background: linear-gradient(135deg, var(--navy), #0a1120);
    padding: 120px 5% 80px;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* --- Main Contact Section --- */
.contact-section {
    padding: 100px 5%;
    background: #f8f9fa; /* Light gray background to make the white form pop */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* --- Left Side: Contact Info --- */
.contact-info {
    flex: 1;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.info-header p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
    padding-top: 5px; /* Align with icon center */
}

.info-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Right Side: The Form --- */
.contact-form-wrapper {
    flex: 1.2; /* Slightly wider than the info side */
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 30px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8f9fa;
    font-size: 1rem;
    color: var(--navy);
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group select {
    appearance: none; /* Custom dropdown arrow usually needs background SVG, keeping simple for now */
    cursor: pointer;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        width: 100%;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 2.5rem; }
    
    .input-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}
