.booking-section {
    /* flex: 1; */
    background-color: #f8f8f8;
    padding: 19px 40px 0px;
    border-top: 5px solid var(--color-main2);
}

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

.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;
}

.contact-section h2 {
    margin-bottom: 15px;
}

.contact-section ul li p {
    padding-bottom: 5px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px 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;
    background: var(--color-main2);
}

.check-btn:hover {
    background-color: var(--color-main);
}

.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: 30px 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;
    padding-top: 20px;
}

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

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

    .contact-section.info {
        padding: 20px 0;
    }

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

    .box-container-contact-pages {
        padding: 0px 0 25px;
    }

    .booking-section h1 {
        padding-top: 0;
    }
}