/* =========================================
   BOOKING PAGE
========================================= */

.booking-page {
    background: var(--bg);
}

/* HERO */
.booking-hero {
    padding: 70px 0 40px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.booking-hero p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* steps */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-steps div {
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* MAIN GRID */
.booking-section {
    padding: 40px 0 80px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* INFO PANEL */
.booking-info {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.booking-info h2 {
    margin-bottom: 15px;
}

.booking-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.booking-info li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.booking-note {
    background: var(--accent-soft);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* CALENDLY */
.booking-widget {
    background: none;
    padding: 10px;
    /* border-radius: var(--radius-lg); */
    box-shadow: var(--shadow-md);
    /* border: 1px solid var(--border); */
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-hero h1 {
        font-size: 2.3rem;
    }
}