/* Tickets Page Styles */

.tickets-page {
    padding-top: 70px;
}

.tickets-page .header {
    background: linear-gradient(135deg, #1a3a4a 0%, #1e4a5a 50%, #1a3a4a 100%);
}

/* Page Hero */
.page-hero {
    background: var(--color-light);
    padding: 30px 20px 20px;
    color: #1a3a4a;
}

.page-hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #1a9fda;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.page-hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #1a3a4a;
    font-style: normal;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #1a9fda;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: #1a3a4a;
    font-weight: 500;
}

/* Intro */
.tickets-intro {
    padding: 20px 20px 25px;
    background: var(--color-light);
}

.tickets-intro p {
    max-width: 800px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Filter Section */
.filter-section {
    padding: 0 20px 20px;
    background: var(--color-light);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #1a3a4a;
    cursor: pointer;
    font-family: var(--font-main);
}

.filter-results {
    font-size: 13px;
    color: #666;
    margin-left: auto;
}

.filter-pagination {
    display: flex;
    gap: 8px;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: var(--color-light);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #1a3a4a;
    border-color: #1a3a4a;
    color: var(--color-light);
}

/* Tickets Grid */
.tickets-grid-section {
    padding: 0 20px 60px;
    background: var(--color-light);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ticket-item {
    background: var(--color-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ticket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.ticket-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.ticket-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ticket-item:hover .ticket-item-image img {
    transform: scale(1.05);
}

.ticket-item-validity {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ticket-item-validity strong {
    color: #1a5f7a;
    font-weight: 700;
}

.ticket-item-body {
    padding: 20px;
}

.ticket-item-type {
    font-size: 10px;
    font-weight: 700;
    color: #1a9fda;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ticket-item-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a4a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ticket-item-price {
    font-size: 14px;
    color: #333;
    margin-bottom: 18px;
}

.ticket-item-actions {
    display: flex;
    gap: 10px;
}

.ticket-item-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a9fda;
    color: var(--color-light);
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ticket-item-btn:hover {
    background: #1580b0;
}

.ticket-item-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e84c3d;
    color: var(--color-light);
    padding: 12px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ticket-item-cart:hover {
    background: #c0392b;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px 80px;
    background: #f8f8f8;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a4a;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    background: var(--color-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1a3a4a;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.faq-all-link {
    display: inline-block;
    margin-top: 25px;
    color: #1a9fda;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.faq-all-link:hover {
    color: #1580b0;
}

/* Responsive */
@media (max-width: 1200px) {
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tickets-page {
        padding-top: 0;
    }
    
    .tickets-page {
        padding-top: 100px;
        padding-bottom: 70px;
    }
    
    .tickets-page .header {
        background: transparent;
    }
    
    .tickets-page .page-hero {
        padding: 20px 15px 15px;
    }
    
    .tickets-page .page-hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-wrap: wrap;
    }
    
    .filter-results {
        margin-left: 0;
        width: 100%;
        order: 3;
        text-align: center;
    }
    
    .filter-pagination {
        order: 2;
        margin-left: auto;
    }
    
    .page-hero {
        padding: 40px 20px 35px;
    }
}
