/* Contact Us Page Styling */

/* =========================================
   Hero Section (Based on FAQ)
   ========================================= */
.contact-hero-section {
    background-color: #0A2543; /* Deep Blue */
    padding: 80px 0;
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #E0E7FF;
    margin-bottom: 30px;
    max-width: 500px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.hero-highlights {
    margin-bottom: 30px;
}

.highlight-title {
    font-size: 14px;
    color: #A7E8FF; /* Light Blue Highlight */
    margin-bottom: 12px;
    font-weight: 600;
}

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

.highlight-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 8px;
    color: #E0E7FF;
    font-size: 14px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================================
   New Contact Section (Form + Sidebar)
   ========================================= */
.new-contact-section {
    background-color: #F0F5FA; /* Light bluish background */
    padding: 80px 0;
}

.contact-layout-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 1400px;
    margin: 0 auto;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 500px;
    margin-bottom: -6px; /* Remove any potential gap at bottom */
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Left: Form Area */
.contact-form-area {
    flex: 2; /* Takes up more space */
    padding: 50px;
}

.contact-form-area h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 30px;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background-color: #ffffff;
    transition: all 0.2s;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #0284C7;
    background-color: #F8FAFC;
}

.modern-contact-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-modern {
    background-color: #003366; /* Dark Navy */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-submit-modern:hover {
    background-color: #0284C7;
}

.form-message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}
.form-message.success { color: green; }
.form-message.error { color: red; }

/* Right: Sidebar */
.contact-info-sidebar {
    flex: 1; /* Takes up less space */
    background-color: #05152E; /* Very dark blue */
    color: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .icon {
    color: #38BDF8;
    font-size: 18px;
    margin-top: 3px;
}

.info-item .details {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-item .value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout-wrapper {
        flex-direction: column;
    }

    .contact-info-sidebar {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
