﻿/* SECTION BACKGROUND */
.booking-section {
    background-color: #ffe0ca;
    color: #fff;
    padding: 80px 0;
}

/* CONTACT DETAILS BOX */
.contact-details {
    padding: 30px;
    background: #8F3D3C;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

    .contact-details h3 {
        color: #f5c518;
    }

/* CONTACT ITEMS */
.contact-item i {
    color: #f5c518;
    width: 25px;
}

.whatsapp-icon {
    color: #25D366 !important;
}

.instagram-icon {
    color: #E4405F !important;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.contact-item span {
    margin-left: 10px;
}

/* FORM CONTAINER */
.inner-column {
    background: #8F3D3C;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

/* TITLES */
.sub-title {
    color: #f5c518;
}

.inner-column h2 {
    color: #fff;
}

/* FORM ELEMENTS */
.form-control {
    background: #f5f5f5;
    color: #000;
    border: 0 !important;
}

/* BUTTON */
.booking-btn {
    background-color: #f5c518;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 30px;
}

/* MESSAGES */
.success-msg {
    color: lightgreen;
    margin-top: 10px;
}

.error-msg {
    color: red;
    margin-top: 10px;
}

/* MAP */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.contact-item {
    display: flex;
    align-items: center;
}

    .contact-item i {
        margin-top: 4px; /* aligns the icon vertically */
    }

    .contact-item .address-text {
        margin-left: 10px;
        display: block;
        line-height: 1.4;
    }
