/* ----------------- contact us page  ------------------- */

.contact-section {
    padding: 80px 0;
}

.contact-subtitle {
    font-family: "Covered By Your Grace", cursive;
    font-size: 52px;
    color: var(--main-color);
}

.contact-title {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.icon-box {
    min-width: 65px;
    height: 65px;
    background: #f7b500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #000000;
    font-size: 22px;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f3f42;
}

.contact-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.contact-card p+p {
    margin-top: 5px;
}

@media (max-width:768px) {

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 26px;
    }

    .contact-card {
        margin-bottom: 20px;
    }

}

.booking-section {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.booking-content {
    position: relative;
    z-index: 2;
}

.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}

.booking-form h3 {
    font-weight: 600;
    margin-bottom: 25px;
}

.form-control,
.form-select {
    height: 50px;
    border-radius: 8px;
}

textarea.form-control {
    height: 120px;
}

.input-group-text {
    background: transparent;
    border-left: 0;
}

.input-group-text i {
    color: #000000
}

.send-btn {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    margin-top: 10px;
}

.send-btn:hover {
    background: #f7b500
}

/* PLAY BUTTON */

.video-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.play-btn {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    position: relative;
    cursor: pointer;
}

/* Animation */

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}

/* Mobile */

@media(max-width:991px) {

    .booking-section {
        padding: 10px 0 80px;
    }

    .booking-form {
        margin: auto;
    }

    .video-box {
        margin: 40px;
    }

    .booking-content .row {
        flex-direction: column-reverse;
    }

}