/* Tickets Page Specific Styles */

.tickets-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.tickets-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.early-bird-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-blue);
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    margin: -40px auto 60px;
    max-width: 800px;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.3);
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 165, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 36px rgba(255, 165, 0, 0.4);
    }
}

.early-bird-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.early-bird-banner p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.ticket-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.ticket-card.recommended {
    border: 3px solid var(--accent-blue);
}

.ticket-card.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-blue);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ticket-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.ticket-card.student .ticket-header {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
}

.ticket-card.corporate .ticket-header {
    background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}

.ticket-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-description {
    font-size: 0.95rem;
    opacity: 0.95;
}

.ticket-pricing {
    padding: 30px;
    text-align: center;
    background: var(--white-smoke);
}

.price-container {
    margin-bottom: 15px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--mid-gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.ticket-card.student .current-price {
    color: #388e3c;
}

.early-bird-badge {
    display: inline-block;
    background: #FFD700;
    color: var(--dark-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
}

.ticket-features {
    padding: 30px;
    flex: 1;
}

.ticket-features ul {
    list-style: none;
    padding: 0;
}

.ticket-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--cloud-gray);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.ticket-card.student .ticket-features li::before {
    color: #388e3c;
}

.ticket-card.corporate .ticket-features li::before {
    color: #7b1fa2;
}

.ticket-footer {
    padding: 30px;
    padding-top: 0;
}

.ticket-cta {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--accent-blue);
    color: var(--white);
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ticket-cta:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.ticket-card.student .ticket-cta {
    background: #388e3c;
}

.ticket-card.student .ticket-cta:hover {
    background: #2e7d32;
}

.ticket-card.corporate .ticket-cta {
    background: #7b1fa2;
}

.ticket-card.corporate .ticket-cta:hover {
    background: #6a1b9a;
}

.ticket-info-section {
    background: var(--white-smoke);
    padding: 60px 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card-small {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card-small h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.info-card-small p {
    color: var(--mid-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tickets-header h1 {
        font-size: 2rem;
    }

    .early-bird-banner h3 {
        font-size: 1.4rem;
    }

    .early-bird-banner {
        margin: -40px 20px 40px;
        padding: 15px 20px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .ticket-card.recommended::before {
        font-size: 0.65rem;
        padding: 4px 35px;
    }
}
