/* ═══ BOOK NOW PAGE ═══ */

/* Hero */
.book-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.book-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}

.book-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 40, 25, .75) 0%, rgba(15, 98, 63, .5) 50%, rgba(0, 0, 0, .7) 100%)
}

.book-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeUp .9s ease both
}

.book-trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px
}

.bt-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    font-size: .88rem;
    font-weight: 500;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15)
}

.bt-item span {
    font-size: 1.1rem
}

/* Book Section */
.book-section {
    padding: 80px 0 100px;
    background: var(--off-white)
}

.book-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start
}

/* Sidebar */
.book-sidebar {
    position: sticky;
    top: 100px
}

.book-steps {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 24px
}

.bs-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    cursor: pointer;
    transition: var(--transition)
}

.bs-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: .9rem;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0
}

.bs-info strong {
    display: block;
    font-size: .92rem;
    color: var(--text-dark)
}

.bs-info span {
    font-size: .78rem;
    color: var(--text-light)
}

.bs-item.active .bs-num {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(15, 98, 63, .3)
}

.bs-item.active .bs-info strong {
    color: var(--green)
}

.bs-item.done .bs-num {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.bs-item.done .bs-info strong {
    color: var(--gold)
}

.bs-line {
    width: 2px;
    height: 24px;
    background: var(--border);
    margin-left: 21px;
    transition: var(--transition)
}

.bs-line.done {
    background: var(--gold)
}

/* Trust Card */
.book-trust-card {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center
}

.btc-icon {
    font-size: 2.2rem;
    margin-bottom: 12px
}

.book-trust-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 10px
}

.book-trust-card p {
    font-size: .85rem;
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 16px
}

.btc-badges {
    display: flex;
    gap: 12px;
    justify-content: center
}

.btc-badges span {
    font-size: .78rem;
    background: rgba(255, 255, 255, .15);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px)
}

/* Form Area */
.book-form-area {
    min-height: 500px
}

.bf-panel {
    display: none;
    animation: fadeUp .5s ease both
}

.bf-panel.active {
    display: block
}

.bf-header {
    margin-bottom: 36px
}

.bf-header h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 10px
}

.bf-header h2 em {
    color: var(--gold);
    font-style: italic
}

.bf-header p {
    color: var(--text-mid);
    font-size: .95rem
}

.bf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.bf-grid-full {
    grid-template-columns: 1fr
}

.bf-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bf-group.full {
    grid-column: 1/-1
}

.bf-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: .02em
}

.bf-group input,
.bf-group select,
.bf-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
    font-family: var(--font-sans)
}

.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(15, 98, 63, .08)
}

.bf-group textarea {
    resize: vertical;
    min-height: 120px
}

.bf-phone-row {
    display: flex;
    gap: 10px
}

.bf-code {
    width: 90px;
    flex-shrink: 0;
    padding: 14px 10px !important
}

/* Checkboxes */
.bf-checks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px
}

.bf-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: .88rem;
    background: #fff
}

.bf-check:hover {
    border-color: var(--gold);
    background: var(--gold-pale)
}

.bf-check input[type="checkbox"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px
}

.bf-check input:checked~* {
    color: var(--green)
}

/* Footer */
.bf-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border)
}

/* Success */
.bf-success {
    text-align: center;
    padding: 60px 20px
}

.bfs-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.bf-success h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 16px
}

.bf-success p {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7
}

/* .bfs-details {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 24px;
    max-width: 400px;
    margin: 0 auto 32px;
    text-align: left
} */

.bfs-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem
}

.bfs-row:last-child {
    border: none
}

.bfs-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* Why Book Section */
.book-why-section {
    padding: 100px 0;
    background: #fff
}

.bw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.bw-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition)
}

.bw-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold)
}

.bw-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 18px
}

.bw-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green);
    margin-bottom: 10px
}

.bw-card p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.6
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:900px) {
    .book-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .book-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .bf-grid {
        grid-template-columns: 1fr
    }

    .bw-grid {
        grid-template-columns: 1fr 1fr
    }

    .book-hero {
        height: 45vh;
        min-height: 350px
    }

    .bf-footer {
        flex-direction: column;
        gap: 12px
    }

    .bf-footer .btn {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:600px) {
    .book-sidebar {
        grid-template-columns: 1fr
    }

    .bw-grid {
        grid-template-columns: 1fr
    }

    .bt-item {
        font-size: .8rem;
        padding: 8px 14px
    }

    .bf-checks {
        grid-template-columns: 1fr
    }

    .bf-header h2 {
        font-size: 1.5rem
    }
}

/* --- Route Builder --- */
.route-builder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
}

.rb-stops {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rb-stop {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.rb-stop:last-child {
    padding-bottom: 0;
}

.rb-stop-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.rb-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rb-icon.start {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.rb-line {
    width: 2px;
    flex-grow: 1;
    background: repeating-linear-gradient(to bottom, var(--gold) 0, var(--gold) 5px, transparent 5px, transparent 10px);
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 19px;
    z-index: 1;
}

.rb-stop:last-child .rb-line {
    display: none;
}

.rb-stop-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rb-label {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-remove {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.rb-remove:hover {
    background: #ff4444;
    color: white;
}

.rb-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rb-add-btn {
    background: transparent;
    border: 2px dashed var(--gold);
    color: var(--gold);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.rb-add-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-style: solid;
}

.rb-route-preview {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--green);
    font-style: italic;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.rb-route-preview span:not(:last-child)::after {
    content: " → ";
    color: var(--gold);
    margin-left: 0.5rem;
    font-style: normal;
}

.bf-review-card {
    background: white;
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.brc-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.brc-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.brc-section h4 {
    color: var(--green);
    margin-bottom: 1rem;
}

.brc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.brc-item span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.brc-item strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .route-builder {
        padding: 1rem;
    }
}