.podcast-booking-container {
    max-width: 750px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.podcast-booking-header {
    text-align: center;
    margin-bottom: 25px;
}

.podcast-booking-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.podcast-booking-header p {
    font-size: 14px;
    color: #64748b;
}

/* Steps Progress Bar */
.podcast-steps-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.step-item {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    user-select: none;
}

.step-item:hover {
    color: #475569;
}

.step-item.active {
    color: #2563eb;
    border-bottom: 3px solid #2563eb;
}

/* Category Filter Tabs Bar */
.booking-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.cat-tab {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-tab:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.cat-tab.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Package Category Badge */
.pkg-category-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.package-card.selected {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

/* Step Navigation Action Bar */
.step-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    gap: 10px;
}

.btn-next {
    background: #2563eb;
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-next.active-step-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4) !important;
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4); }
}

.btn-next:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-next.active-step-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
}

.btn-next:disabled:not(.active-step-btn) {
    background: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Step Content Sections */
.podcast-step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.podcast-step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Horizontal Package Layout */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.package-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    text-align: left;
}

.package-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.package-card.selected {
    border-color: #2563eb;
    background: #f0f7ff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

/* Avatar / Thumbnail Block on Left */
.pkg-avatar-block {
    width: 140px;
    min-width: 140px;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.pkg-initial {
    font-size: 52px;
    font-weight: 900;
    color: #9333ea;
    opacity: 0.85;
    user-select: none;
    font-family: inherit;
}

.pkg-avatar-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Block in Middle */
.pkg-content-block {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.pkg-category-badge {
    align-self: flex-start;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pkg-content-block h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
}

.pkg-meta-line {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

/* Collapsible Description Wrapper */
.pkg-desc-wrapper {
    position: relative;
    transition: max-height 0.35s ease-in-out;
}

.pkg-desc-wrapper.collapsed {
    max-height: 52px !important;
    overflow: hidden !important;
}

.pkg-desc-wrapper.collapsed .pkg-desc-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #f8fafc 90%);
    pointer-events: none;
    display: block !important;
}

.package-card.selected .pkg-desc-wrapper.collapsed .pkg-desc-fade {
    background: linear-gradient(to bottom, rgba(240, 247, 255, 0), #f0f7ff 90%);
}

.pkg-desc-wrapper.expanded {
    max-height: 3000px !important;
    overflow: visible !important;
}

.pkg-desc-wrapper.expanded .pkg-desc-fade {
    display: none !important;
}

.pkg-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.pkg-desc p {
    margin: 0 0 6px 0;
}

.pkg-desc ul {
    margin: 6px 0;
    padding-left: 18px;
}

.pkg-desc li {
    margin-bottom: 4px;
}

/* Read More Button */
.btn-read-more {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.btn-read-more:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Action Block on Right */
.pkg-action-block {
    min-width: 140px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px dashed #e2e8f0;
    background: rgba(255, 255, 255, 0.5);
}

.pkg-price {
    font-size: 22px;
    font-weight: 800;
    color: #2563eb;
    margin: 0 0 10px 0;
    white-space: nowrap;
}

.select-pkg-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff !important;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.select-pkg-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Date Picker & Slot Grid */
.date-picker-wrapper {
    margin: 20px 0;
}

.date-picker-wrapper input[type="date"] {
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    margin-left: 10px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.slot-btn {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-btn:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
}

.slot-btn.selected {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.btn-proceed-payment {
    width: 100%;
    background: #10b981;
    color: #ffffff !important;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.btn-proceed-payment:hover {
    background: #059669;
}

.btn-back {
    background: none;
    border: none;
    color: #64748b;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 0;
}

.btn-back:hover {
    color: #0f172a;
}

/* Confirmation Box */
.success-box {
    text-align: center;
    padding: 30px 15px;
}

.success-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.booking-summary-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.loader {
    text-align: center;
    padding: 25px;
    font-weight: 600;
    color: #2563eb;
}

/* Payment Method Cards */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.payment-option-card:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

/* Direct UPI Box */
.upi-payment-card {
    text-align: center;
    padding: 24px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.upi-timer-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fffbe3;
    border: 1px solid #fde047;
    color: #854d0e;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.15);
    transition: all 0.3s ease;
}

.upi-timer-banner.urgent {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
    animation: pulseUrgent 1.2s infinite;
}

@keyframes pulseUrgent {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.timer-clock {
    font-family: monospace, monospace;
    font-size: 16px;
    font-weight: 800;
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.1);
    color: #1e293b;
}

.upi-timer-banner.urgent .timer-clock {
    color: #dc2626;
    border-color: #fca5a5;
}

.upi-expired-card {
    text-align: center;
    padding: 35px 20px;
    background: #fff1f2;
    border: 2px dashed #f43f5e;
    border-radius: 16px;
}

.expired-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.upi-expired-card h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #9f1239;
    font-weight: 800;
}

.upi-expired-card p {
    color: #be123c;
    font-size: 14px;
    margin-bottom: 22px;
}

.btn-restart-booking {
    background: #be123c;
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(190, 18, 60, 0.3);
}

.btn-restart-booking:hover {
    background: #9f1239;
    transform: translateY(-1px);
}

.upi-payment-card h3 {
    margin-top: 0;
    color: #0f172a;
}

.qr-code-wrapper {
    margin: 20px 0;
}

.upi-qr-image {
    width: 200px;
    height: 200px;
    border: 4px solid #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.upi-amount {
    font-size: 18px;
    color: #2563eb;
    margin: 10px 0 5px 0;
}

.upi-vpa code {
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 15px;
}

.btn-upi-app {
    display: inline-block;
    background: #2563eb;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.utr-input-wrapper {
    margin-top: 25px;
    text-align: left;
}

.utr-input-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.utr-input-wrapper input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.btn-confirm-utr {
    width: 100%;
    background: #10b981;
    color: #ffffff !important;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.btn-add-gcal {
    display: inline-block;
    background: #4285f4;
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
}

.btn-add-gcal:hover {
    background: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Floating Sticky Side Button */
.podcast-floating-trigger {
    position: fixed;
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999990;
    background: linear-gradient(135deg, #2563eb, #0284c7);
    color: #ffffff !important;
    border: none;
    border-radius: 0 24px 24px 0;
    padding: 14px 12px 14px 16px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 4px 6px 25px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.3s ease;
}

.podcast-floating-trigger:hover {
    background: linear-gradient(135deg, #1d4ed8, #0369a1);
    transform: translateY(-50%) translateX(4px);
    box-shadow: 6px 8px 30px rgba(37, 99, 235, 0.5);
}

.podcast-floating-trigger .btn-icon {
    font-size: 18px;
    writing-mode: horizontal-tb;
}

/* Modal Lightbox Popup */
.podcast-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.podcast-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.podcast-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.podcast-modal-overlay.open .podcast-modal-dialog {
    transform: scale(1);
}

.podcast-modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.podcast-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
}

.podcast-modal-body {
    padding: 10px;
}

.podcast-modal-body .podcast-booking-container {
    margin: 0;
    box-shadow: none;
    border: none;
}

/* Mobile Optimization & Responsive Styling */
@media (max-width: 640px) {
    .podcast-floating-trigger {
        padding: 10px 8px 10px 10px;
        font-size: 11px;
        top: 60%;
        border-radius: 0 16px 16px 0;
    }

    .podcast-modal-overlay {
        padding: 10px;
    }

    .podcast-modal-dialog {
        max-height: 94vh;
        border-radius: 16px;
        width: 100%;
    }

    .podcast-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .podcast-booking-container {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .podcast-booking-header h2 {
        font-size: 20px;
    }

    .podcast-booking-header p {
        font-size: 12px;
    }

    /* Steps Progress Bar Mobile */
    .podcast-steps-bar {
        gap: 4px;
        margin-bottom: 20px;
        padding-bottom: 8px;
    }

    .step-item {
        font-size: 10px;
        padding-bottom: 2px;
        white-space: nowrap;
    }

    /* Package List Mobile */
    .package-list {
        gap: 12px;
    }

    .package-card {
        flex-direction: column;
        padding: 0;
    }

    .pkg-avatar-block {
        width: 100%;
        height: 60px;
        min-width: unset;
    }

    .pkg-initial {
        font-size: 36px;
    }

    .pkg-content-block {
        padding: 14px 14px 10px 14px;
    }

    .pkg-content-block h4 {
        font-size: 16px;
    }

    .pkg-action-block {
        width: 100%;
        min-width: unset;
        border-left: none;
        border-top: 1px dashed #e2e8f0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        box-sizing: border-box;
        background: #ffffff;
    }

    .pkg-price {
        font-size: 18px;
        margin: 0;
    }

    .select-pkg-btn {
        width: auto;
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Date & Time Slot Mobile */
    .date-picker-wrapper {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .date-picker-wrapper input[type="date"] {
        margin-left: 0;
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
        gap: 8px;
    }

    .slot-btn {
        padding: 10px 6px;
        font-size: 12px;
    }

    /* Form Fields Mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }

    .btn-proceed-payment,
    .btn-confirm-utr,
    .btn-add-gcal {
        font-size: 15px;
        padding: 12px;
    }

    .payment-option-card {
        padding: 10px 12px;
        font-size: 13px;
    }

    .upi-qr-image {
        width: 160px;
        height: 160px;
    }
}


