/* Our Locations CSS */
.our-locations {
    position: relative;
    z-index: 1;
    background-color: rgba(27, 188, 155, 0.06);
}
.our-locations::after {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: -100px;
    left: 0;
    background-color: rgba(27, 188, 155, 0.06);
    -webkit-mask: url("../../images/shape/Locations-1.svg");
    mask: url("../../images/shape/Locations-1.svg");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: auto;
}
@media (min-width: 1920px) {
    .our-locations::after {
        -webkit-mask-repeat: repeat;
        mask-repeat: repeat;
        -webkit-mask-position: top left;
        mask-position: top left;
    }
}
@media (max-width: 1800px) {
    .our-locations::after {
        height: 113px;
    }
}
@media (max-width: 1500px) {
    .our-locations::after {
        height: 123px;
    }
}
@media (max-width: 1300px) {
    .our-locations::after {
        display: none;
    }
}
.our-locations-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 16px;
    background-color: #fff;
}
.our-locations-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.our-locations-image img {
    background-size: cover;
    width: 100%;
    vertical-align: middle;
}
.our-locations-image::after {
    content: "";
    width: 100%;
    height: 74px;
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    -webkit-mask: url("../../images/shape/Locations-2.svg");
    mask: url("../../images/shape/Locations-2.svg");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: auto;
}
@media (max-width: 1399px) {
    .our-locations-image::after {
        height: 65px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .our-locations-image::after {
        height: 58px;
        width: 110%;
    }
}
@media (max-width: 991px) {
    .our-locations-image::after {
        height: 60px;
    }
}
@media (max-width: 767px) {
    .our-locations-image::after {
        height: 90px;
    }
}
@media (max-width: 575px) {
    .our-locations-image::after {
        height: 80px;
        width: 105%;
    }
}
@media (max-width: 490px) {
    .our-locations-image::after {
        display: none;
    }
}
.our-locations-content {
    padding: 17px 23px 24px;
}
.our-locations-content h5 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}
.our-locations-content p {
    font-size: 16px;
    margin-bottom: 10px;
}
.location-fax {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 8px;
}
.location-fax li {
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease-in-out;
    color: var(--text-color);
}
.location-fax li i {
    color: var(--theme-color);
}
.location-fax li:not(:first-of-type)::before {
    content: "";
    width: 2px;
    height: 14px;
    background-color: var(--text-color);
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    margin: auto;
}
.tours-two__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgb(41, 41, 41, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}
.tours-two__image__link::before,
.tours-two__image__link::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tours-two__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.our-locations-card:hover .our-locations-image > a {
    opacity: 1;
    transform: translateY(0);
}

/* Global Locations */

.Global-locations-card {
    position: relative;
    z-index: 1;
}
.Global-locations-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0px 100px;
}
.Global-locations-image img {
    background-size: cover;
    width: 100%;
    transition: all 0.4s ease-in-out;
    transform: scale(1);
}
.Global-locations-card:hover .Global-locations-image img {
    transform: scale(1.1);
}
.global-locations-content {
    position: absolute;
    left: 32px;
    bottom: 32px;
    right: 32px;
    padding: 27px 30px 26px;
    z-index: 1;
    border-radius: 0px 75px;
    background-color: #fff;

    @media (max-width: 1199px) {
        left: 20px;
        bottom: 20px;
        right: 20px;
        padding: 27px 20px 26px 25px;
    }
}
.global-locations-content h5 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
}
.global-location-link {
    display: flex;
    align-items: center;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    color: #a3a3a3;
    margin-bottom: 4px;
}
.global-location-link i {
    margin-right: 6px;
    font-size: 20px;
    color: var(--theme-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 992px) {
    .contact .contact-wrapper {
        grid-template-columns: 38% 62%;
        gap: 30px;
    }
}
.contact .contact-info-panel {
    background: linear-gradient(
        145deg,
        var(--theme-color),
        color-mix(in srgb, var(--theme-color), #1a4372 40%)
    );
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contact .contact-info-panel .contact-info-header {
    margin-bottom: 30px;
}
.contact .contact-info-panel .contact-info-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact .contact-info-panel .contact-info-header p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
    color: #fff;
}
.contact .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: auto;
}
@media (min-width: 576px) and (max-width: 991px) {
    .contact .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact .info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.contact .info-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
.contact .info-card .icon-container {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .info-card .icon-container i {
    font-size: 20px;
    color: #fff;
}
.contact .info-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}
.contact .info-card .card-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
    color: #fff;
}
.contact .social-links-panel {
    margin-top: 35px;
}
.contact .social-links-panel h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.contact .social-links-panel .social-icons {
    display: flex;
    gap: 12px;
}
.contact .social-links-panel .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.contact .social-links-panel .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}
.contact .contact-form-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact .map-container {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact .form-container {
    background-color: #f7fcff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.contact .form-container h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--title-color);
    background: linear-gradient(
        120deg,
        var(--title-color),
        color-mix(in srgb, var(--title-color), var(--theme-color) 30%)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.contact .form-container p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 25px;
}
.contact .form-container .form-floating {
    margin-bottom: 20px;
}
.contact .form-container .form-floating .form-control {
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--theme-color), transparent 80%);
    padding: 24px 20px 8px 20px;
    height: calc(3.5rem + 3px);
    background-color: #fff;
    color: var(--title-color);
    transition: all 0.3s ease;
}
.contact .form-container .form-floating .form-control:focus {
    box-shadow: 0 0 0 4px
        color-mix(in srgb, var(--theme-color), transparent 85%);
    border-color: color-mix(in srgb, var(--theme-color), transparent 40%);
    background-color: #fff;
}

.contact .form-container .form-floating .form-control::placeholder {
    color: transparent;
}
.contact .form-container .form-floating label {
    color: color-mix(in srgb, var(--title-color), transparent 40%);
    padding: 1rem 1.25rem 2.5rem 1.25rem;
}
.contact .form-container .form-floating label::after {
    background-color: transparent;
}
.contact .form-container .btn-submit {
    background: linear-gradient(
        145deg,
        var(--theme-color),
        color-mix(in srgb, var(--theme-color), #1a4372 30%)
    );
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form-container .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px
        color-mix(in srgb, var(--theme-color), transparent 75%);
}
.contact .form-container .btn-submit i {
    transition: transform 0.3s ease;
}
.contact .form-container .btn-submit:hover i {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .contact .contact-info-panel {
        padding: 30px 25px;
    }

    .contact .form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact .social-links-panel .social-icons {
        flex-wrap: wrap;
    }
}
.checked-from {
    display: flex;
    align-items: center;
    gap: 10px;
}
.checked-from-level {
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}
.checked-from-title {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 13px;
    font-weight: 600;
    text-transform: capitalize;
}
/* Email in All locations */
.locations-email {
    background-color: color-mix(in srgb, var(--text-color), transparent 90%);
}
.locations-email-content h4 {
    margin-bottom: 1rem;
}
.locations-list {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}
.locations-list .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: color-mix(in srgb, var(--theme-color), transparent 90%);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.locations-list .icon-box img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.locations-list h6 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}
.locations-email-content .note {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-top: 10px;
    text-transform: capitalize;
}
.location-shadow {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
