/* ==========================================================================
   Ticket Section
   ========================================================================== */

/* Ticket Info Section */
#ticket-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-radius: 10px;
    text-align: center;
    margin: -10px auto 30px;
    position: relative;
    overflow: hidden;
}

.day-ticket-title {
    color: var(--nature-blue);
    font-weight: 700;
}

.ticket-intro-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}


.ticket-benefits {
    color: var(--secondary-color);
}

/* Main Ticket Section */
.ticket-section {
    background-color: transparent;
    padding: 0;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
}

.ticket-section h3 {
    color: var(--nature-blue);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.ticket-section .date-info {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Ticket Grid Layout
   ========================================================================== */

.promo-ticket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .promo-ticket-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   Ticket Cards
   ========================================================================== */

.promo-ticket-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    min-height: 500px;
}

.promo-ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4a90e2;
}

/* Night Theme Variant */
.promo-ticket-card.night-theme {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    border-color: #4a637c;
}

.promo-ticket-card.night-theme:hover {
    border-color: #f39c12;
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
}

.promo-ticket-card.night-theme h4,
.promo-ticket-card.night-theme p,
.promo-ticket-card.night-theme li {
    color: #ecf0f1;
}

/* ==========================================================================
   Ticket Content
   ========================================================================== */

.promo-ticket-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Ticket Title */
.promo-ticket-content h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.promo-ticket-card.night-theme .promo-ticket-content h4 {
    color: #f39c12;
}

/* Ticket Description */
.promo-ticket-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 15px 0;
    flex: 1;
}

/* Ticket Price */
.promo-ticket-content .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c5aa0;
    margin: 20px 0;
    text-align: center;
}

.promo-ticket-card.night-theme .price {
    color: #f39c12;
}

.promo-ticket-content .price small {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6c757d;
}

.promo-ticket-card.night-theme .price small {
    color: #bdc3c7;
}

/* Price Note - Enhanced Design */
.promo-ticket-content .price-note {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 15px auto;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    animation: pulse-popup 2s infinite;
    text-align: center;
    max-width: fit-content;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-ticket-card.night-theme .price-note {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

/* Price Note Animation */
@keyframes pulse-popup {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
}

.promo-ticket-card.night-theme .price-note {
    animation: pulse-popup-night 2s infinite;
}

@keyframes pulse-popup-night {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    }
}

/* ==========================================================================
   Ticket Benefits
   ========================================================================== */

.ticket-benefits {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    border-top: 2px solid #e9ecef;
    display: grid;
    gap: 15px;
    flex: 1;
}

.promo-ticket-card.night-theme .ticket-benefits {
    border-top: 2px solid #4a637c;
}

.ticket-benefits li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
}

.ticket-benefits .benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: #27ae60;
    flex-shrink: 0;
}

.promo-ticket-card.night-theme .benefit-icon {
    fill: #f1c40f;
}

/* CTA Button Enhancement */
.promo-ticket-content .cta-button {
    margin-top: auto;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.promo-ticket-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Notice Section
   ========================================================================== */

.notice h5 {
    color: var(--secondary-color);
}

.notice-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.day-of-ticket-info {
    padding: 30px;
    margin-top: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.day-of-ticket-info h4 {
    color: var(--nature-blue);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.day-of-ticket-info > p {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Day of Ticket Grid */
.day-of-ticket-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: center;
}

.day-of-ticket-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.day-of-ticket-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #4a90e2;
}

.day-of-ticket-item .ticket-type {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.day-of-ticket-item .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c5aa0;
    margin: 15px 0;
}

.day-of-ticket-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.day-of-ticket-item .price small {
    font-size: 0.6em;
    font-weight: 500;
    color: #6c757d;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 768px) {
    /* Ticket Info Section */
    #ticket-info {
        padding: 30px 15px;
    }

    .ticket-section h3 {
        font-size: 1.3rem;
    }

    .ticket-section .date-info {
        font-size: 1rem;
        padding: 15px;
        margin-bottom: 30px;
    }

    /* Ticket Grid */
    .promo-ticket-grid {
        gap: 25px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    /* Ticket Cards */
    .promo-ticket-card {
        min-height: auto;
    }

    .promo-ticket-content {
        padding: 25px 20px;
        gap: 12px;
    }

    .promo-ticket-content h4 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .promo-ticket-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 10px 0;
        text-align: center;
    }

    .promo-ticket-content .price {
        font-size: 2.2rem;
        margin: 15px 0;
    }

    .promo-ticket-content .price small {
        font-size: 1rem;
    }

    /* Price Note - Mobile */
    .promo-ticket-content .price-note {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin: 10px auto;
    }

    /* Ticket Benefits */
    .ticket-benefits {
        padding: 15px 0 0;
        gap: 12px;
    }

    .ticket-benefits li {
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .ticket-benefits .benefit-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    /* CTA Button - Mobile */
    .promo-ticket-content .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }

    /* Day of Ticket Grid - Mobile */
    .day-of-ticket-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .day-of-ticket-item {
        padding: 20px;
    }

    .day-of-ticket-item .ticket-type {
        font-size: 1.1rem;
    }

    .day-of-ticket-item .price {
        font-size: 1.8rem;
    }

    /* Notice Section - Mobile */
    .day-of-ticket-info {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .day-of-ticket-info h4 {
        font-size: 1.4rem;
    }

    .day-of-ticket-info > p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .promo-ticket-content {
        padding: 20px 15px;
    }

    .promo-ticket-content h4 {
        font-size: 1.3rem;
    }

    .promo-ticket-content .price {
        font-size: 2rem;
    }

    .ticket-benefits li {
        font-size: 0.85rem;
    }

    .day-of-ticket-item {
        padding: 15px;
    }
}

/* Reserved Seat Styles for Top Page */
.reserved-seat-section {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
}

.reserved-seat-section h4 {
    color: var(--nature-blue);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.reserved-seat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #2b6cb0;
    border-radius: 12px;
    padding: 25px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.15);
    transition: all 0.3s ease;
    animation: hop 2s ease-in-out infinite;
}

.reserved-seat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.2);
    animation: none;
}

@keyframes hop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.reserved-seat-card h5 {
    color: var(--nature-blue);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.seat-price {
    margin: 15px 0;
}

.price-amount {
    font-size: 2.2em;
    font-weight: bold;
    color: #2b6cb0;
}

.price-currency {
    font-size: 1.1em;
    color: #666;
    margin-left: 8px;
}

.seat-description {
    font-size: 0.9em;
    color: var(--secondary-color);
    margin: 12px 0;
    font-weight: 500;
}

.seat-note {
    color: #666;
    margin: 12px 0;
    line-height: 1.5;
    font-size: 0.9em;
}

.reserved-seat-card .cta-button {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(43, 108, 176, 0.3);
    margin: 15px 0;
}

.reserved-seat-card .cta-button:hover {
    background: linear-gradient(135deg, #1e4a72, #2b6cb0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.4);
}

.seat-notes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.seat-notes p {
    color: #666;
    font-size: 0.85em;
    margin: 6px 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .reserved-seat-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .price-amount {
        font-size: 1.8em;
    }
    
    .reserved-seat-card .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .reserved-seat-section h4 {
        font-size: 1.3em;
    }
}
  