/*-----import-styles-start-----*/
@import url(../global/global.css?ver=3.01);
@import url(../layout/header.css?ver=2.01);
@import url(../layout/footer.css);
/*-----import-styles-end-----*/

/*-----💡-contact-us-section-start-----*/
.contact-us-section .contact-card {
    background: var(--white-color);
    border: 1px solid var(--tertiary-color-50);
    box-shadow: 0 2px 4px -2px rgba(16, 24, 40, 0.02), 0 4px 8px -2px rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    padding: 24px 16px;
}

@media (max-width: 768px) {
    .contact-us-section .badge-fab svg {
        width: 56px;
        height: 56px;
    }
}

.contact-us-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.contact-us-section .section-header h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}

.contact-us-section .main-tel {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 20px;
    color: var(--tertiary-color-950);
    white-space: nowrap;
    transition: 0.3s all;
}

.contact-us-section .main-tel:hover {
    scale: 1.03;
}

@media (max-width: 768px) {
    .contact-us-section .section-header h5 {
        font-size: 18px;
    }

    .contact-us-section .main-tel {
        font-size: 16px;
        font-weight: 500;
    }

    .contact-us-section .main-tel svg {
        width: 20px;
        height: 20px;
    }
}

.contact-us-section .chip {
    background: var(--tertiary-color-50);
    box-shadow: 0 2px 4px -2px rgba(16, 24, 40, 0.02), 0 4px 8px -2px rgba(16, 24, 40, 0.06);
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    height: 100%;
    min-height: 70px;
    padding: 1rem;
}

.contact-us-section .chip .label {
    font-weight: 500;
    font-size: 16px;
    color: var(--tertiary-color-950);
}

.contact-us-section .chip .ext {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-us-section .chip {
        padding: 12px;
        text-align: center;
    }

    .contact-us-section .chip .label {
        font-size: 14px;
    }

    .contact-us-section .chip .ext {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-us-section .chip .label {
        font-size: 12px;
        white-space: nowrap;
    }

    .contact-us-section .chip .ext {
        font-size: 14px;
    }
}

.contact-us-section .contact-list .row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.contact-us-section .contact-list .title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.contact-us-section .contact-list .value {
    color: var(--tertiary-color-950);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    transition: 0.3s all;
}

.contact-us-section .contact-list .value:hover {
    scale: 1.03;
}

@media (max-width: 768px) {
    .contact-us-section .contact-list .title {
        font-size: 16px;
    }

    .contact-us-section .contact-list .value {
        font-size: 14px;
    }

    .contact-us-section .contact-list .value svg {
        width: 20px;
        height: 20px;
    }
}

.contact-us-section .address-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.contact-us-section .address-text {
    color: var(--tertiary-color-950);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

@media (max-width: 768px) {
    .contact-us-section .address-title {
        font-size: 18px;
    }

    .contact-us-section .address-title {
        font-size: 18px;
    }

    .contact-us-section .address-text {
        font-size: 16px;
    }
}

.contact-us-section .map-embed {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
}

.contact-us-section .map-container iframe {
    border-radius: 16px;
    aspect-ratio: 5 / 3;
}

@media (max-width: 576px) {
    .contact-us-section .map-container iframe {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
}

.contact-us-section .message-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-us-section .form-group {
    margin-bottom: 20px;
}

.contact-us-section .form-group .input-box {
    max-width: 400px;
}

.contact-us-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 16px;
    color: var(--tertiary-color-950);
}

@media (max-width: 768px) {
    .contact-us-section label {
        font-size: 14px;
    }
}

.contact-us-section .form-control {
    border: 1px solid var(--tertiary-color-100);
    background: var(--white-color);
    border-radius: 8px;
    padding: 10px 12px 10px 42px;
    font-size: 15px;
    color: #111;
    height: 45px;
    max-width: 400px;
}

.contact-us-section textarea.form-control {
    height: 90px;
    resize: none;
    max-width: 100%;
}

.contact-us-section textarea:active, .contact-us-section textarea:focus {
    border-color: var(--tertiary-color-900) !important;
}

.contact-us-section .form-control:focus {
    box-shadow: none;
}

.contact-us-section .input-icon {
    position: absolute;
    left: 14px;
    top: calc(50% - 8px);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

.contact-us-section .send-message-btn {
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    min-width: 200px;
}

@media (max-width: 768px) {
    .contact-us-section .send-message-btn {
        font-size: 12px;
        width: 100%;
    }
}

.contact-us-section .ticket-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-color-600);
}

.contact-us-section .send-ticket-btn {
    font-size: 18px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .contact-us-section .ticket-text {
        font-size: 16px;
    }

    .contact-us-section .send-ticket-btn {
        width: 100%;
    }
}

/*-----💡-contact-us-section-end-----*/