* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ================== CONTACT SECTION WRAPPER ================== */
.contact-section {
    line-height: 1.4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 100px;
}

/* ================== CONTACT CONTAINER ================== */
.contact-container {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    margin: 0;
}

/* ================== LEFT SIDE: CONTACT INFO ================== */
.contact-info-section {
    flex: 1;
    background: linear-gradient(135deg, #2a60c8 0%, #00bcd4 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: inherit;
    filter: blur(30px);
    opacity: 0.3;
    border-radius: 20px;
    z-index: -1;
}

.contact-info-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    text-align: left;
    width: 100%;
    max-width: 350px;
}

.info-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 12px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.info-details p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 1;
}

.info-details .label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* ================== RIGHT SIDE: CONTACT FORM ================== */
.contact-form-section {
    flex: 2;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    margin: auto 0;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.contact-form-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2a60c8;
    box-shadow: 0 0 0 3px rgba(42, 96, 200, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #2a60c8;
    border-radius: 4px;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #555;
}

.checkbox-group a {
    color: #2a60c8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(90deg, #1A7ABD, #00B8F0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.submit-button:hover {
    background-color: #1e4a9e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.privacy-text {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-text svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    color: #888;
}

/* ================== RESPONSIVE ADJUSTMENTS ================== */
@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
    }

    .contact-info-section {
        border-radius: 15px 0 0 15px;
        padding: 50px;
    }

    .contact-info-section::before {
        border-radius: 20px 0 0 20px;
    }

    .contact-form-section {
        border-radius: 0 15px 15px 0;
        padding: 50px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        border-radius: 15px 15px 0 0;
    }

    .contact-info-section::before {
        border-radius: 20px 20px 0 0;
    }

    .contact-form-section {
        border-radius: 0 0 15px 15px;
    }
}

/* ================== MAP SECTION ================== */
.location-section-container {
    width: 100%;
    
    overflow: hidden;
    margin: 0px auto ;
}

@media (min-width: 768px) {
    .location-section-container {
        padding: 2rem;
    }
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.25;
    color: #1a202c  ;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 3rem;
    }
}

.map-container {
    width: 100%;
    height: 20rem;
    /* border-radius: 1.5rem; */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .map-container {
        height: 24rem;
    }
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 1rem; */
}

@media (max-width: 768px) {
    .map-container {
        height: 60vh;
    }
}