/* =================================
   Contact Hero Section
================================= */
.contact-hero {
    background-color: var(--bg-color);
    padding: 80px 100px;
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background-color: #011423;
    padding: 30px 30px 50px;
}

/* --- Left Column: Info --- */
.contact-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    /* Slightly transparent blue */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: var(--link-blue);
    /* Or primary blue */
    font-size: 1.2rem;
}

.item-text h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    margin-bottom: 5px;
}

.item-text p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
}


.form-instruction {
    font-family: var(--font-primary);
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-instruction .required {
    color: #ff4d4f;
    /* Red for asterisk */
}

.cda-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #011423;
    padding: 15px 20px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-white);
    opacity: 0.9;
}

.submit-btn {
    background-color: #9CC775;
    /* Light green from design */
    color: var(--primary-black);
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    align-self: flex-start;
    /* Or width: 100% depending on preference */
    width: 100%;
    /* Full width as per image looks likely */
}

.submit-btn:hover {
    background-color: var(--link-hover);
    color: var(--white);
}

/* =================================
   Regional Presence Section
================================= */
.regional-presence {
    background-color: var(--bg-color);
    padding: 0px 100px;
    position: relative;
    overflow: hidden;

}

.regional-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.regional-text .cda-section-label {
    justify-content: flex-start;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.regional-text .cda-section-label::after {
    background-color: var(--primary-yellow);
}

.regional-text .section-title {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.regional-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    font-family: var(--font-primary);
}

/* Map Image Styling */
.map-visual-placeholder {
    position: relative;
    width: 100%;
}

.map-visual-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tooltip Styles */
.map-tooltip {
    position: absolute;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.map-tooltip::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

.tooltip-flag {
    margin-bottom: 10px;
}

.tooltip-flag img {
    width: 30px !important;
    /* Force small size for flag */
    height: auto;
}

.map-tooltip h3 {
    font-family: var(--font-secondary);
    color: var(--primary-black);
    /* Dark text on white bg */
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.map-tooltip p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* =================================
   Location Map Section
================================= */
.location-map {
    width: 100%;
    height: 450px;
    background-color: var(--bg-color);
}

.map-container {
    background-color: var(--white);
}


.map-container iframe {
    background-color: var(--white);
    display: block;
    /* Filter removed to have a standard white map */
}


/* =================================
   Responsive Adjustments
================================= */
@media (max-width: 992px) {

    .contact-hero {
        padding: 80px 30px;
    }

    .regional-presence {
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-grid,
    .regional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .regional-text .section-title {
        font-size: 1rem;
        text-align: center;
    }

    .map-tooltip {
        position: relative;
        /* Stack normally on mobile if needed, or hide */
        top: 0 !important;
        left: 0 !important;
        margin-top: 20px;
        width: 100%;
    }
}