


    .booking-section {
        /* flex: 1; */
        background-color: #f0ede8;
        padding: 19px 40px 0px;
        border-top: 5px solid #b07f23;
    }

    .contact-section {
        /* flex: 1; */
        padding: 4px 40px 0px;
    }

    .section-header {
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 20px;
        font-weight: normal;
    }

    .main-title {
        font-size: 48px;
        font-weight: normal;
        color: #333;
        margin-bottom: 40px;
        line-height: 1.2;
    }

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

    .form-label {
        display: block;
        font-size: 16px;
        color: #666;
        margin-bottom: 8px;
        font-weight: normal;
    }

    .form-input,
    .form-select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #ddd;
        background-color: #fff;
        font-size: 16px;
        color: #333;
        border-radius: 0;
        font-family: unset;
        appearance: none;
    }

    .form-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 40px;
    }

    .check-btn {
        width: 100%;
        background-color: #b8956b;
        color: white;
        padding: 18px;
        border: none;
        font-size: 14px;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 20px;
        transition: background-color 0.3s ease;
        font-weight: 600;
        font-size: 17px;
    }

    .check-btn:hover {
        background-color: #a18458;
    }

    .contact-title {
        font-size: 42px;
        font-weight: normal;
        color: #333;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .contact-description {
        font-size: 16px;
        color: #888;
        line-height: 1.7;
        margin-bottom: 60px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background-color: #b8956b;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

    .contact-info h3 {
        font-size: 20px;
        font-weight: normal;
        color: #333;
        margin-bottom: 0px;
    }

    .contact-info p {
        font-size: 16px;
        color: #888;
    }

    .chat-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .box-container-contact-pages {
        display: grid;
        padding: 5rem 0px;
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        display: block;
        margin-bottom: 0px;
    }
    .contact-section .map {
    padding-top: 24px;
}
.contact-section .map iframe {
    height: 411px;
    width: 100%;
}
.contact-section ul li {
    list-style: disc;
    margin-left: 25px;
}
.booking-section h1 {
    padding-bottom: 20px;
}

    @media (max-width: 768px) {
        .box-container-contact-pages {
            grid-template-columns: 1fr;
        }

        .booking-section,
        .contact-section {
            padding: 40px 10px;
        }

        .main-title,
        .contact-title {
            font-size: 36px;
        }
    }



