/* Custom Contact Page CSS */

.contact-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}




/* Left Column: Form */
.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-badge {
    display: inline-block;
    background-color: #eef3ff;
    color: #3c72fc;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.custom-contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group.half {
    width: calc(50% - 10px);
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s;
    outline: none;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: #3c72fc;
    box-shadow: 0 0 0 3px rgba(60, 114, 252, 0.1);
}

.custom-contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
}

.submit-btn:hover {
    background-color: #0b5ed7;
}

/* Right Column: Info Grid */
.contact-right {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #3c72fc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-label {
    font-size: 18px;
    font-weight: 700;
    color: #001529;
    margin-bottom: 10px;
}

.info-value {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.info-value a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-value a:hover {
    color: #3c72fc;
}

/* Original Map Styles */
.location-map {
    height: 651px;
    margin-bottom: -6.5%;
    /* Original overlap */
    filter: grayscale(1);

    /* Full Width Breakout Technique */
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page-wrapper {
        flex-direction: column;
    }

    .form-group.half {
        width: 100%;
    }

    .contact-right {
        grid-template-columns: 1fr;
    }

    .location-map {
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
        width: 100%;
        height: 400px;
        /* Smaller height on mobile */
    }
}