/* ========== BUY TICKETS - HERO BANNER ========== */

.buy-tickets-hero {
    background: var(--gradient, linear-gradient(165deg, #0244CD 1.33%, #050d62 43.74%, #000750 73.43%));
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.buy-tickets-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.buy-tickets-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.buy-tickets-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.buy-tickets-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-tickets-hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.buy-tickets-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.buy-tickets-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.buy-tickets-hero-meta-item svg {
    opacity: 0.7;
}

/* ========== STEPS INDICATOR ========== */

.buy-tickets-steps-section {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.buy-tickets-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.buy-tickets-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #bbb;
}

.buy-tickets-step.active {
    color: var(--primary, #003FCA);
}

.buy-tickets-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: #eee;
    color: #999;
    flex-shrink: 0;
}

.buy-tickets-step.active .buy-tickets-step-number {
    background: var(--primary, #003FCA);
    color: #fff;
}

.buy-tickets-step.completed {
    color: #28a745;
}

.buy-tickets-step.completed .buy-tickets-step-number {
    background: #28a745;
    color: #fff;
}

.buy-tickets-step-line.completed-line {
    background: #28a745;
}

.buy-tickets-step-line {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 12px;
    flex-shrink: 0;
}

/* ========== MAIN SECTION ========== */

.buy-tickets-section {
    padding: 32px 0 80px;
    background: #f5f6f8;
    min-height: calc(100vh - 400px);
}

/* ========== FORM WRAPPER ========== */

.buy-tickets-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* ========== AUTH TABS ========== */

.auth-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.auth-tab {
    flex: 1;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    background: #fafafa;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.auth-tab:hover {
    color: #555;
    background: #f5f5f5;
}

.auth-tab.active {
    color: var(--primary, #003FCA);
    background: #fff;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary, #003FCA);
    border-radius: 3px 3px 0 0;
}

/* ========== AUTH PANEL ========== */

.auth-panel {
    padding: 28px 32px 32px;
}

.form-panel-subtitle {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ========== FORM FIELDS ========== */

.buy-tickets-form-wrapper .form-group {
    margin-bottom: 16px;
}

.buy-tickets-form-wrapper label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.buy-tickets-form-wrapper .input-field {
    height: 48px;
    border-radius: 8px;
    border: 1.5px solid #e5e5e5;
    padding: 10px 15px;
    background: #fff;
    width: 100%;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: #333;
}

.buy-tickets-form-wrapper .input-field::placeholder {
    color: #aaa;
}

.buy-tickets-form-wrapper .input-field:focus {
    outline: none;
    border-color: var(--primary, #003FCA);
    box-shadow: 0 0 0 3px rgba(2, 68, 205, 0.1);
}

.buy-tickets-form-wrapper .input-field.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.buy-tickets-form-wrapper .error-message {
    color: #dc3545;
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
}

/* ========== SUBMIT BUTTONS ========== */

.buy-tickets-submit-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    border-radius: 50rem !important;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    background: var(--primary, #003FCA) !important;
}

.buy-tickets-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 68, 205, 0.35);
}

.buy-tickets-submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.buy-tickets-submit-btn svg {
    transition: transform 0.2s ease;
}

.buy-tickets-submit-btn:hover svg {
    transform: translateX(3px);
}

/* ========== ORDER SUMMARY CARD ========== */

.order-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
    border: 1px solid #f0f0f0;
}

.order-summary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Event Info Card inside Order Summary */
.order-summary-event-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 16px;
}

.order-summary-event-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary, #003FCA);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-summary-event-info {
    flex: 1;
    min-width: 0;
}

.order-summary-event-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.order-summary-event-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-summary-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 0.8rem;
}

.order-summary-meta-item svg {
    flex-shrink: 0;
    color: #aaa;
}

.order-summary-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}

.order-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.order-summary-line-price {
    font-weight: 600;
    color: #333;
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.order-summary-total-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary, #003FCA);
}

/* What's Included */
.order-summary-includes {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.order-summary-includes-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 10px;
}

.order-summary-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-summary-includes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}

.order-summary-includes-list li svg {
    flex-shrink: 0;
}

/* Secure Checkout */
.order-summary-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    color: #aaa;
    font-size: 0.78rem;
}

.order-summary-secure svg {
    color: #aaa;
}

/* ========== PASSWORD STRENGTH ========== */

.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0;
}

.strength-weak .password-strength-fill {
    width: 25%;
    background-color: #dc3545;
}

.strength-fair .password-strength-fill {
    width: 50%;
    background-color: #ffc107;
}

.strength-good .password-strength-fill {
    width: 75%;
    background-color: #28a745;
}

.strength-strong .password-strength-fill {
    width: 100%;
    background-color: #198754;
}

.password-strength-text {
    font-size: 0.75rem;
    margin-top: 4px;
    color: #666;
}

.strength-weak .password-strength-text {
    color: #dc3545;
}

.strength-fair .password-strength-text {
    color: #ffc107;
}

.strength-good .password-strength-text {
    color: #28a745;
}

.strength-strong .password-strength-text {
    color: #198754;
}

.password-requirements {
    margin-top: 8px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.password-requirements li {
    font-size: 0.75rem;
    color: #999;
    position: relative;
    padding-left: 16px;
}

.password-requirements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.2s ease;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid::before {
    background: #28a745;
}

.password-requirements li.invalid {
    color: #999;
}

/* ========== CHECKBOX ========== */

.buy-tickets-form-wrapper .checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    position: relative;
}

.buy-tickets-form-wrapper .terms-link {
    color: var(--primary, #003FCA);
}

/* ========== AUTH LINK ========== */

.auth-link-light {
    color: var(--primary, #003FCA);
    font-size: 0.85rem;
    text-decoration: none;
}

.auth-link-light:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 991.98px) {
    .buy-tickets-hero {
        padding: 36px 0 32px;
    }

    .buy-tickets-hero-title {
        font-size: 1.5rem;
    }

    .order-summary-card {
        position: static;
        margin-bottom: 0;
    }

    .buy-tickets-section {
        padding: 24px 0 60px;
    }
}

@media (max-width: 767.98px) {
    .buy-tickets-hero {
        padding: 28px 0 24px;
    }

    .buy-tickets-hero-title {
        font-size: 1.3rem;
    }

    .buy-tickets-hero-meta {
        flex-direction: column;
        gap: 8px;
    }

    .buy-tickets-steps-section {
        padding: 14px 0;
    }

    .buy-tickets-step {
        flex-direction: column;
        gap: 4px;
    }

    .buy-tickets-step span {
        font-size: 0.7rem;
    }

    .buy-tickets-step-line {
        width: 32px;
        align-self: flex-start;
        margin-top: 14px;
    }

    .auth-panel {
        padding: 20px;
    }

    .order-summary-card {
        padding: 20px;
        border-radius: 12px;
    }

    .order-summary-event-card {
        padding: 12px;
    }
}

.no-shadow {
    box-shadow: none !important;
}


.hero-butticketbg {
    padding: 0;
    background: url('/assets/images/ticketbannerbg.png') no-repeat left center;
    background-color: #FF4B00;
    background-size: contain;
}

.herocontainer {
    max-width: 1440px;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin: 0 auto;
}

.herotitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.herotitle img {
    width: 297px;
}

.herotitle h3 {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 900;
    font-size: 128px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #111;
    margin: 0
}

.herotitle h3 span {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 128px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #fff;
}

.heroticketline {
    height: 2px;
    background-color: #111;
    width: 100%;
}

.herodesc {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 60px 10px 20px;
}

.herolocation {
    display: flex;
    align-items: center;
    gap: 25px
}

.herolocation img {
    width: 88px;
}

.herobadge {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.herobadge h3 {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -2%;
    text-transform: uppercase;
    margin: 0;
    color: #fff
}

.herobadge p {
    margin: 0;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #111
}

@media (max-width:1300px) {
    .herotitle img {
        width: 230px;
    }

    .herotitle h3,
    .herotitle h3 span {
        font-size: 90px;
    }

}

@media (max-width:992px) {
    .herotitle img {
        width: 200px;
    }

    .herotitle h3,
    .herotitle h3 span {
        font-size: 70px;
    }

    .herodesc {
        padding: 40px 10px 20px;
    }

    .herolocation img {
        width: 70px;
    }

    .herobadge h3,
    .herobadge p {
        font-size: 25px;
    }

    .ticketimg {
        max-width: 400px
    }
}

@media (max-width:768px) {
    .herotitle {
        padding: 80px 40px 30px;
        flex-direction: column;
        align-items: start;
        gap: 30px
    }

    .herodesc {
        padding: 40px 30px 80px;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .herotitle h3,
    .herotitle h3 span {
        font-size: 100px;
    }
}

@media (max-width:500px) {

    .herotitle h3,
    .herotitle h3 span {
        font-size: 70px;
    }

    .ticketimg {
        max-width: 100%;
    }
}

@media (max-width:350px) {

    .herotitle h3,
    .herotitle h3 span {
        font-size: 50px;
    }

    .herolocation img {
        width: 60px;
    }

    .herobadge h3,
    .herobadge p {
        font-size: 20px;
    }
}