/* BookingResponsive.css – Mobile‑first approach */

/* Base typography */
body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

h1.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Responsive grid for the form */
.form-container .custom-card {
    padding: 1.5rem;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    margin-bottom: 1.5rem;
}

/* Mobile‑first custom select */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: .75rem;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    background: #fff;
    cursor: pointer;
    font-size: .95rem;
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    display: none;
}

.custom-select-wrapper.open .custom-select-dropdown {
    display: block;
}

.custom-option {
    padding: .5rem 1rem;
    font-size: .95rem;
    cursor: pointer;
}

.custom-option:hover {
    background: #f8f9fa;
}

/* Button styling */
.btn-submit {
    background: #3399cc;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .75rem;
    border-radius: .5rem;
    transition: background .2s ease;
}

.btn-submit:hover {
    background: #287aa3;
}

/* Fee box */
.fee-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: #e9f7ff;
    border-radius: .5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Feature list */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .9rem;
    color: #495057;
}

/* Testimonials */
.testimonial-card {
    padding: 1.5rem;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    position: relative;
    margin-bottom: 1rem;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    opacity: .15;
}

/* Media Queries */
@media (max-width: 576px) {
    h1.page-title { font-size: 1.75rem; }
    .feature-list { flex-direction: column; align-items: flex-start; }
    .fee-box { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (min-width: 768px) {
    .form-container .row { display: flex; }
    .col-md-6 { flex: 0 0 48%; max-width: 48%; }
}
