﻿/* CUSTOM */
html {
    scroll-behavior: smooth;
}

#mvContactUs .dx-texteditor-buttons-container {
    border-right: 1px solid #d4d4d4;
}

.dx-button-mode-contained.dx-state-active {
    background-color: white !important;
}

.dx-button-mode-contained.dx-state-hover {
    background-color: white !important;
}

.dx-button-mode-contained.dx-state-focused {
    background-color: white !important;
}

.gm-ui-hover-effect {
    margin-bottom: -45px !important;
}
/* END CUSTOM */

#map,
#pluit,
#kebayoran {
    scroll-margin-top: 290px;
}

/* page contact us */
.header-contact-us {
    background-color: var(--theme-primary);
    display: flex;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(https://wordpress.themeholy.com/tourm/wp-content/uploads/2024/07/breadcumb-bg.jpg);
    background-size: cover;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 300px;
    color: white;
}

.header-contact-us h1 {
    font-size: 48px;
    font-weight: 500;
}

.header-contact-us span {
    font-size: 36px;
}

.contact-us-card {
    border-radius: 10px;
    align-items: center;
    padding: 15px 20px 20px 20px;
    border: 1px solid rgba(128, 137, 150, 0.2);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
}

.contact-us-form {
    margin-top: 20px;
}

.contact-us-card p {
    color: #5d646d;
}

.contact-us-row {
    margin: 30px 0px 70px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.qr-code {
    width: 120px;
}
.contact-us-helpcenter {
    flex: 1 1 calc(33.33% - 20px);
    max-width: 360px;
    width: 100%;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(128, 137, 150, 0.2);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    padding: 10px 20px 20px 20px;
    height: 400px;
}

.contact-us-helpcenter h3 {
    font-size: 20px;
    margin-top: 0px;
    color: #0d233e;
}

.img-career-detail {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

.contact-us-helpcenter h1 {
    font-size: 22px;
    margin-top: 0px;
    color: #0d233e;
}

.contact-us-helpcenter .address-detail {
    color: #5d646d;
}

.contact-us-helpcenter a {
    font-size: 15px;
    color: #5d646d;
    line-height: 23px;
}

.contact-us-helpcenter i {
    font-size: 24px;
    margin-right: 5px;
}

.apply-section {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    color: #5d646d;
}

.apply-link {
    margin-top: 10px;
    display: inline-block;
    background: var(--theme-primary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid var(--theme-primary);
    transition: background 0.3s ease;
}

.apply-link:hover {
    background: white;
    border: 1px solid var(--theme-primary);
    color: var(--theme-primary);
}

.contact-us-background-form {
    padding: 70px 0px;
    display: flex;
    justify-content: center;
    background-image: url("https://wordpress.themeholy.com/tourm/wp-content/uploads/2024/07/video_bg_1.jpg");
    background-size: cover;
    background-position: center;
}

.tooltip-map {
    font-size: 14px;
    width: 190px;
}

.tooltip-map a {
    color: black !important;
}

/* Modal (Hidden by default) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Modal content */
.modal-content {
    margin: 10% auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    position: relative;
}

/* Close button */
.modal-content .close {
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: -34px;
    right: -40px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content .close i {
    font-size: 20px !important;
}

.modal-content .close:hover,
.modal-content .close:focus {
    background-color: rgb(0, 0, 0, 0.24);
    color: white;
    text-decoration: none;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.play-radar {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--theme-primary);
    transition: all 0.3s;
}

.play-radar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.play-radar i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    color: white;
    font-size: 35px;
}

.play-radar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid white;
    border-radius: 50%;
    animation: radar-wave 1s linear infinite;
}

@keyframes radar-wave {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.9);
        opacity: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header-contact-us {
        height: 165px;
    }

    .header-contact-us h1 {
        font-size: 33px;
    }

    .contact-content-us h1 {
        font-size: 30px;
    }

    .header-contact-us span {
        font-size: 15px;
    }

    .contact-content-us {
        padding: 0px 20px;
    }

    .contact-content-us span {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .order-contact-us {
        order: 2;
        margin-top: 70px;
    }

    .play-radar {
        width: 80px;
        height: 80px;
    }

    .contact-us-background-form {
        padding-top: 50px;
    }
}

/* end contact us */
