/*--------------------------------------------------------------
# Contact Us Page Styles
--------------------------------------------------------------*/

/* Contact Us Page Container */
.contact-us-page {
    padding: 60px 0;
    background: #fff;
}

/*--------------------------------------------------------------
# Google Map Section
--------------------------------------------------------------*/
.contact-us__map-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-us__map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-us__map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Contact Information Section
--------------------------------------------------------------*/
.contact-us__info {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-us__info:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-us__info-header {
    padding: 25px 25px 20px;
    background: #50bfda;
    color: white;
    text-align: center;
}

.contact-us__title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: "Mitr", sans-serif;
    line-height: 1.3;
}

.contact-us__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.contact-us__info-items {
    padding: 25px;
}

.contact-us__info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.contact-us__info-item:hover {
    transform: translateX(5px);
}

.contact-us__info-icon {
    width: 45px;
    height: 45px;
    background: #50bfda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-us__info-item:hover .contact-us__info-icon {
    background: #3da8c4;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(80, 191, 218, 0.3);
}

.contact-us__info-content {
    flex-grow: 1;
}

.contact-us__info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 5px 0;
    font-family: "Mitr", sans-serif;
}

.contact-us__info-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-us__info-content a {
    color: #50bfda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-us__info-content a:hover {
    color: #e21111;
}

/*--------------------------------------------------------------
# Contact Form Section
--------------------------------------------------------------*/
.contact-us__form-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-us__form-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-us__form-header {
    padding: 25px 25px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.contact-us__form-title {
    font-size: 22px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 8px 0;
    font-family: "Mitr", sans-serif;
}

.contact-us__form-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.contact-us__form {
    padding: 30px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:has(.contact-us__submit-btn) {
    display: flex;
    justify-content: flex-end;
}

.form-label {
    font-family: "Mitr", sans-serif;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: "Mitr", sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #50bfda;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(80, 191, 218, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-us__submit-btn {
    background: #50bfda;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Mitr", sans-serif;
}

.contact-us__submit-btn:hover {
    background: #3da8c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 191, 218, 0.3);
}

.contact-us__submit-btn:active {
    transform: translateY(0);
}

.contact-us__submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-us__submit-btn:hover i {
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .contact-us__map {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .contact-us-page {
        padding: 40px 0;
    }
    
    .contact-us__map {
        min-height: 300px;
    }
    
    .contact-us__map-container {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .contact-us__info {
        margin-bottom: 30px;
    }
    
    .contact-us__form {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .contact-us__map {
        min-height: 250px;
    }
    
    .contact-us__map-container {
        margin-bottom: 25px;
    }
    
    .contact-us__info-header {
        padding: 20px 20px 15px;
    }
    
    .contact-us__title {
        font-size: 20px;
    }
    
    .contact-us__subtitle {
        font-size: 14px;
    }
    
    .contact-us__info-items {
        padding: 20px;
    }
    
    .contact-us__info-item {
        padding: 12px 0;
    }
    
    .contact-us__info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-us__form-header {
        padding: 20px 20px 15px;
    }
    
    .contact-us__form-title {
        font-size: 20px;
    }
    
    .contact-us__form-subtitle {
        font-size: 14px;
    }
    
    .contact-us__form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .contact-us__submit-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .contact-us__map {
        min-height: 200px;
    }
    
    .contact-us__map-container {
        margin-bottom: 20px;
    }
    
    .contact-us__info-header {
        padding: 15px 15px 12px;
    }
    
    .contact-us__title {
        font-size: 18px;
    }
    
    .contact-us__subtitle {
        font-size: 13px;
    }
    
    .contact-us__info-items {
        padding: 15px;
    }
    
    .contact-us__info-item {
        padding: 10px 0;
        gap: 12px;
    }
    
    .contact-us__info-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-us__info-content h4 {
        font-size: 15px;
    }
    
    .contact-us__info-content p {
        font-size: 13px;
    }
    
    .contact-us__form-header {
        padding: 15px 15px 12px;
    }
    
    .contact-us__form-title {
        font-size: 18px;
    }
    
    .contact-us__form-subtitle {
        font-size: 13px;
    }
    
    .contact-us__form {
        padding: 15px;
    }
    
    .form-label {
        font-size: 15px;
    }
    
    .form-control {
        padding: 8px 10px;
        font-size: 16px;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
}

/*--------------------------------------------------------------
# Loading State for Form
--------------------------------------------------------------*/
.contact-us__submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-us__submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}