body{
    overflow-x: unset;
}

/* Contact Header */
.contact-header {
    text-align: center;
    padding: 50px 20px 30px;
    background: #fff;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A2D4C;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

/* Contact & Locations Section */
.contact-locations-section {
    padding: 0 15px 60px;
    max-width: 1500px;
    margin: 0 auto;
}

.contact-locations-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side: Contact Info */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.contact-methods {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.contact-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon-small svg{
    width: 20px;
    height: 20px;
}

.email-icon,
.whatsapp-icon {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.2) 0%, rgba(173, 216, 230, 0.4) 100%);
    color: #2e5ca5;
}

.contact-method-content h4 {
    font-size: 17px;
    font-weight: 500;
    color: #1A2D4C;
    margin: 0 0 5px 0;
}

.contact-method-content a {
    font-size: 16px;
    color: #2e5ca5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-content a:hover {
    color: #1A2D4C;
    text-decoration: underline;
}

/* Office Addresses */
.office-addresses {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.office-address-item {
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.office-name {
    font-size: 18px;
    font-weight: 500;
    color: #1A2D4C;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-name::before {
    content: '';
    width: 4px;
    height: 18px;
    background: rgba(173, 216, 230, 1);
    border-radius: 2px;
}

.office-address-text {
    font-size: 14px;
    color: #212529;
    line-height: 1.8;
    margin: 0;
}

/* Right Side: Maps */
.maps-side {
    width: 100%;
}

.maps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.map-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-title {
    font-size: 20px;
    font-weight: 500;
    color: #1A2D4C;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(173, 216, 230, 0.3);
}

.location-map-large {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.location-map-large iframe {
    display: block;
    width: 100%;
    border: none;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .contact-locations-container {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }

    .maps-container {
        gap: 20px;
    }

    .location-map-large iframe {
        height: 350px;
    }
}

@media screen and (max-width: 1024px) {
    .contact-locations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .maps-container {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 768px) {
    .contact-header {
        padding: 40px 15px 25px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-locations-section {
        padding: 0 15px 40px;
    }

    .contact-locations-container {
        gap: 25px;
    }

    .contact-info-side {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-methods,
    .office-addresses {
        padding: 20px;
    }

    .contact-method-item {
        padding: 12px 0;
    }

    .contact-icon-small {
        width: 40px;
        height: 40px;
    }

    .contact-method-content h4 {
        font-size: 15px;
    }

    .contact-method-content a {
        font-size: 13px;
    }

    .office-name {
        font-size: 16px;
    }

    .office-address-text {
        font-size: 13px;
    }

    .map-item {
        padding: 15px;
    }

    .map-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .location-map-large{
        height: 260px;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-locations-section {
        padding: 0 10px 30px;
    }

    .contact-methods,
    .office-addresses {
        padding: 15px;
    }

    .contact-method-item {
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .contact-icon-small {
        width: 35px;
        height: 35px;
    }

    .contact-method-content h4 {
        font-size: 16px;
    }

    .contact-method-content a {
        font-size: 15px;
    }

    .office-name {
        font-size: 17px;
    }

    .office-address-text {
        font-size: 15px;
    }

    .map-item {
        padding: 12px;
    }

    .map-title {
        font-size: 17px;
    }

}