/* ============================================================
 * ICONTECH STUDIO CALL BOOKING SYSTEM STYLES (PURPLE THEME)
 * ============================================================ */

.booking-page {
    margin: 0;
    padding: 0;
    background: #05010a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1025px) {
    .booking-page {
        height: 100vh;
        overflow: hidden;
    }

    .booking-page .booking-page-layout {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }
}

.booking-split-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--hero-padding-top, clamp(6.5rem, 10vw, 9.5rem));
    padding-bottom: clamp(30px, 4vw, 60px);
    position: relative;
    z-index: 1;
}

.booking-split-container {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(30px, 4vw, 55px);
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 991px) {
    .booking-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* LEFT COLUMN STYLES - UNBOXED FLOATING CONTENT */
.booking-info-side {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.back-to-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.back-to-site-btn:hover {
    color: #a594fd;
    transform: translateX(-3px);
}

.heading-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(165, 148, 253, 0.1);
    border: 1px solid rgba(165, 148, 253, 0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 10.5px;
    font-weight: 700;
    color: #a594fd;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a594fd;
    box-shadow: 0 0 8px #a594fd;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(165, 148, 253, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(165, 148, 253, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(165, 148, 253, 0);
    }
}

.booking-call-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    line-height: 1.15;
}

.call-meta-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.call-meta-pills .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.call-meta-pills .meta-pill i {
    color: #a594fd;
    font-size: 12px;
}

.call-description-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px 0;
    max-width: 460px;
}

.prepared-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 16px;
}

.prepared-heading {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.prepared-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prepared-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.prepared-checklist .check-icon {
    color: #a594fd;
    font-size: 13px;
}

/* RIGHT COLUMN BOOKING CARD CONTAINER */
.booking-widget-side {
    width: 100%;
}

.booking-container-card {
    background: rgba(15, 8, 28, 0.75);
    border: 1px solid rgba(165, 148, 253, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.change-time-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.change-time-link:hover {
    color: #a594fd;
}

/* STEP 1: 2-COLUMN GRID INSIDE CARD */
.booking-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 640px) {
    .booking-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.calendar-label,
.slots-header-date {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calendar-month-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.calendar-nav-btn:hover:not(:disabled) {
    background: #a594fd;
    color: #05010a;
    border-color: #a594fd;
}

.calendar-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.calendar-dates-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-cell:hover:not(.disabled):not(.empty) {
    background: rgba(165, 148, 253, 0.2);
    color: #a594fd;
}

.date-cell.selected {
    background: #a594fd !important;
    color: #05010a !important;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(165, 148, 253, 0.5) !important;
}

.date-cell.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: transparent;
}

.date-cell.empty {
    background: transparent;
    cursor: default;
}

.timezone-footer-note {
    margin-top: 14px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.tz-select {
    background: transparent;
    border: none;
    color: #a594fd;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}

/* SLOTS SCROLL AREA */
.slots-scroll-area {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

.slots-scroll-area::-webkit-scrollbar {
    width: 4px;
}
.slots-scroll-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.slots-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(165, 148, 253, 0.3);
    border-radius: 4px;
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slot-item-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slot-item-pill:hover {
    border-color: rgba(165, 148, 253, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.slot-item-pill.selected {
    border-color: #a594fd;
    background: rgba(165, 148, 253, 0.12);
}

.btn-next-step {
    background: #a594fd;
    color: #05010a;
    font-weight: 800;
    font-size: 12px;
    font-family: inherit;
    border-radius: 6px;
    padding: 6px 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(165, 148, 253, 0.35);
}

.btn-next-step:hover {
    background: #c5b8ff;
    color: #05010a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(165, 148, 253, 0.55);
}

/* Studio Theme Selection & Dropdown Option Colors */
::selection {
    background: #a594fd;
    color: #05010a;
}
::-moz-selection {
    background: #a594fd;
    color: #05010a;
}

.tz-select option,
.dark-input option {
    background: #0f081c;
    color: #ffffff;
}

.tz-select option:checked,
.dark-input option:checked {
    background: #a594fd !important;
    color: #05010a !important;
}

/* STEP 2: CLIENT DETAILS FORM STYLES */
.confirmed-slot-banner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
}

.confirmed-slot-label {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.confirmed-slot-value {
    font-size: 13.5px;
    font-weight: 700;
    color: #a594fd;
}

.form-row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    .form-row-3col {
        grid-template-columns: 1fr;
    }
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.dark-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-family: inherit;
    padding: 11px 8px 11px 10px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
    text-overflow: ellipsis;
}

.dark-input option {
    background: #0d0d0d;
    color: #ffffff;
}

.dark-input:hover {
    border-color: rgba(165, 148, 253, 0.4);
}

.dark-input:focus {
    border-color: #a594fd;
    background: rgba(165, 148, 253, 0.05);
}

.form-row-full {
    margin-bottom: 16px;
}

.btn-confirm-action {
    width: 100%;
    background: linear-gradient(135deg, #a594fd 0%, #705af8 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    font-family: inherit;
    letter-spacing: 0.08em;
    padding: 13px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(165, 148, 253, 0.35);
}

.btn-confirm-action:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 8px 25px rgba(165, 148, 253, 0.55);
}

/* STEP 3: SUCCESS STYLES */
.booking-success-box {
    text-align: center;
    padding: 20px 10px;
}

.success-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px auto;
}

.success-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.success-ref {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.success-details-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: left;
    margin-bottom: 20px;
}

.detail-row {
    margin-bottom: 10px;
}
.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 2px;
}

.detail-val {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

.green-text {
    color: #00ff88;
}

.purple-text {
    color: #a594fd;
}

.hidden {
    display: none !important;
}
