.booking-section {
    padding: 100px 8%;
    background: #000;
    color: #fff;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.accent-text {
    color: #ff5722;
    font-style: italic;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}


/* Form Styling */

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #ff5722;
    background: rgba(255, 255, 255, 0.07);
}

.booking-btn {
    width: 100%;
    background: #ff5722;
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}


/* Contact Cards & Icons */

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 87, 34, 0.1);
    color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Icon Size */
}

.contact-label {
    font-size: 0.8rem;
    color: #666;
}

.contact-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.booking-note {
    border-left: 2px solid #ff5722;
    background: rgba(255, 87, 34, 0.02);
    padding: 20px;
    font-size: 0.9rem;
    color: #888;
}


/* Style the select dropdown itself */

.input-group select {
    appearance: none;
    /* Removes default browser styling */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    cursor: pointer;
}


/* Fix for the "Select Service" visibility issue */

.input-group select option {
    background-color: #1a1a1a;
    /* Dark background for the list */
    color: #ffffff;
    /* White text for contrast */
    padding: 15px;
}


/* Style for the disabled placeholder option */

.input-group select option:disabled {
    color: #666;
}


/*Book mobile style*/


/* =========================
   BOOKING SECTION MOBILE FIX
========================= */

@media (max-width: 1024px) {
    .booking-section {
        padding: 80px 6%;
    }
    .booking-grid {
        gap: 40px;
    }
    .booking-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* STACK LAYOUT */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* HEADER */
    .booking-header {
        margin-bottom: 40px;
    }
    .booking-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    /* FORM INPUTS */
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 15px 18px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    /* BUTTON */
    .booking-btn {
        padding: 16px;
        font-size: 1rem;
        border-radius: 40px;
    }
    /* CONTACT CARDS */
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .contact-value {
        font-size: 1rem;
    }
    .booking-note {
        font-size: 0.85rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 60px 5%;
    }
    .booking-header h2 {
        font-size: 1.8rem;
    }
    .booking-header p {
        font-size: 0.9rem;
    }
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 14px;
        font-size: 0.9rem;
    }
    .booking-btn {
        padding: 15px;
    }
    .contact-card {
        padding: 15px;
    }
}