/* Events Page Styles - Modern Booking Platform UI */

/* Full Screen Events Layout */
.full-screen-events {
    min-height: 100vh;
    background: transparent;
    margin-top: 80px; /* Fix header overlap */
}

/* Events Hero Section */
.events-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40vh;
}

.events-hero .container {
    position: relative;
    z-index: 3;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.events-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 0;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}



/* Gradient Text Styling - Pink and Purple */
.gradient-text {
    background: linear-gradient(135deg, #9333ea 0%, #ff1493 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Fade-in Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .events-hero h1 {
        font-size: 2.8rem;
    }
    
    .events-hero {
        padding: 3rem 0 2rem;
        min-height: 35vh;
    }
}

/* Extra Large Desktop Screens */
@media (min-width: 1600px) {
    .events-hero h1 {
        font-size: 2.5rem;
    }
    
    .events-hero {
        padding: 2.5rem 0 1.5rem;
        min-height: 30vh;
    }
}

/* Events Section - Full Screen */
.events-section {
    padding: 2rem 0;
    background: transparent;
    min-height: calc(100vh - 80px);
}


/* Loading State */
.loading-state {
    text-align: center;
    padding: 4rem 0;
}

.loading-state .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1.5rem;
}

.loading-state p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Error State */
.error-state {
    text-align: center;
    padding: 4rem 0;
    color: var(--danger-color);
}

.error-state i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.error-state h3 {
    margin-bottom: 1rem;
    color: var(--danger-color);
}

.error-state p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.empty-state p {
    margin-bottom: 2rem;
}

/* Events Grid - Modern Booking Platform Style */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
        padding: 0 0.75rem;
    }
}

.event-card.bookmyshow-style {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
}

.event-card.bookmyshow-style:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
}

.event-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-card.bookmyshow-style:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.8), rgba(255, 20, 147, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.event-card.bookmyshow-style:hover .event-overlay {
    opacity: 1;
}

.btn-view-overlay {
    background: rgba(255, 255, 255, 0.95);
    color: #9333ea;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-view-overlay:hover {
    background: white;
    color: #7c3aed;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-badge.free {
    background: linear-gradient(135deg, #4caf50, #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.event-badge.paid {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.event-badge.invitation {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.event-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(10px);
}

.event-header {
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-title a:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.event-category {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    color: #9333ea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.7rem;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
}

.meta-item i {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 18px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.event-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 500;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.event-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #4a5568;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.event-tag:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border-color: #9333ea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.event-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.8));
    backdrop-filter: blur(10px);
    margin: 1.25rem -1.5rem -1.5rem -1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 16px 16px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.casual-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.event-price {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.event-price.free {
    background: linear-gradient(135deg, #4caf50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-view-gradient {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-gradient:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-favorite {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
}

.btn-favorite:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-favorite.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Event Details Page Styles - BookMyShow Style */
.event-details-hero {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.event-details-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e9ecef;
    }
    
    .navbar .container {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .logo-image {
        height: 32px;
        max-width: 120px;
    }
    
    .nav-search {
        display: none; /* Hide search on mobile for cleaner look */
    }
    
    .nav-filters {
        display: none; /* Hide filters on mobile for cleaner look */
    }
    
    .hamburger {
        display: block;
        padding: 0.5rem;
        cursor: pointer;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
        margin: 4px auto;
        background-color: #333;
        transition: all 0.3s ease;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: #e3f2fd;
        color: #9333ea;
    }
}

.event-details-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-category {
    display: inline-block;
    background: #e3f2fd;
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    width: fit-content;
}

.event-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #1a1a1a;
}

.event-details-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-details-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 1rem;
}

.event-details-meta .meta-item i {
    color: #9333ea;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.event-details-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.event-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-details-body {
    padding: 2rem 0;
    background: #ffffff;
}

.event-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.event-description-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.event-description-section h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #9333ea;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.event-description-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.event-booking-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 2rem;
}

.event-booking-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 0.5rem;
    text-align: center;
}

.event-booking-card .price.free {
    color: #4caf50;
}

/* Offer Pricing Styles */
.event-booking-card .price.offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.event-booking-card .actual-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-booking-card .offer-price {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
}

.event-booking-card .offer-label {
    background: #e8f5e8;
    color: #4caf50;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-booking-card .price-label {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-booking-card .slots-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 4px solid #9333ea;
}

.event-booking-card .slots-info .slots-available {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9333ea;
    margin-bottom: 0.25rem;
}

.event-booking-card .slots-info .slots-total {
    font-size: 0.9rem;
    color: #666;
}

.btn-book {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn-book:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
    color: white;
}

.btn-favorite {
    background: #f8f9fa;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    cursor: pointer;
}

.btn-favorite:hover {
    background: #e3f2fd;
    color: #9333ea;
    border-color: #9333ea;
}

.btn-favorite.active {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.event-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.event-info-card h4 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #9333ea;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.event-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.event-info-item i {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-info-item span {
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.event-things-to-know {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.event-things-to-know h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #9333ea;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.thing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #9333ea;
    transition: all 0.3s ease;
}

.thing-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
}

.thing-item i {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.thing-item span {
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

/* Event Slots Styling */
.frequency-header {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.frequency-header i {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.slot-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.slot-item:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(255, 20, 147, 0.05));
    border-color: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.1);
}

.slot-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.slot-time i {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.slot-time span {
    color: #333;
    font-size: 1rem;
}

.slot-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.slot-pricing .actual-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
}

.slot-pricing .offer-price {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
}

.slot-pricing .regular-price {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
}

.slot-pricing .free-price {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 700;
}

.slot-pricing .offer-label {
    background: #e8f5e8;
    color: #4caf50;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-seats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.slot-seats i {
    background: linear-gradient(135deg, #9333ea, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

/* Mobile-First Responsive Design - BookMyShow Style */

/* Tablet and Desktop */
@media (min-width: 993px) {
    .event-details-content {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .event-details-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .event-sidebar {
        position: sticky;
        top: 2rem;
    }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
    .events-hero h1 {
        font-size: 2.8rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .event-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-details-title {
        font-size: 2.2rem;
    }
    
    .event-details-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-sidebar {
        position: static;
        order: 2;
    }
    
    .event-main-content {
        order: 1;
    }
}

/* Mobile Layout - Modern Booking Platform Style */
@media (max-width: 768px) {
    .full-screen-events {
        min-height: 100vh;
        margin-top: 80px;
    }
    
    .events-hero {
        padding: 2rem 0 1.5rem;
        min-height: auto;
    }
    
    .events-hero h1 {
        font-size: 3rem;
        margin-bottom: 0;
    }
    
    .events-section {
        padding: 1rem 0;
        min-height: calc(100vh - 80px);
    }
    
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 0.5rem;
    }
    
    .event-card.bookmyshow-style {
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
        margin: 1.25rem -1.25rem -1.25rem -1.25rem;
        padding: 1.25rem;
    }
    
    .event-actions {
        justify-content: center;
    }
    
    .btn-view-gradient {
        flex: 1;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Medium Mobile */
@media (max-width: 600px) {
    .events-hero {
        padding: 1.5rem 0 1rem;
        min-height: auto;
    }
    
    .events-hero h1 {
        font-size: 2.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .events-hero {
        padding: 1.5rem 0 1rem;
        min-height: auto;
    }
    
    .events-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
    /* Event Details Mobile Layout */
    .event-details-hero {
        padding: 1rem 0;
        background: #ffffff;
    }
    
    .event-details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .event-details-header {
        gap: 1rem;
    }
    
    .event-category {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        align-self: flex-start;
    }
    
    .event-details-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .event-details-meta {
        gap: 0.75rem;
    }
    
    .event-details-meta .meta-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .event-details-meta .meta-item i {
        font-size: 1rem;
        width: 16px;
    }
    
    .event-details-image {
        height: 200px;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    /* Mobile Container */
    .event-details-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .event-main-content {
        order: 2;
    }
    
    .event-sidebar {
        order: 1;
        position: static;
        margin-bottom: 1rem;
    }
    
    /* Mobile Content Sections */
    .event-description-section,
    .event-things-to-know {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .event-description-section h3,
    .event-things-to-know h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .event-description-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Mobile Booking Card */
    .event-booking-card {
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }
    
    .event-booking-card .price {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }
    
    .event-booking-card .price-label {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .event-booking-card .slots-info {
        padding: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .event-booking-card .slots-info .slots-available {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .event-booking-card .slots-info .slots-total {
        font-size: 0.8rem;
    }
    
    .btn-book {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .btn-favorite {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Offer Pricing */
    .event-booking-card .offer-price {
        font-size: 1.8rem;
    }
    
    .event-booking-card .actual-price {
        font-size: 1rem;
    }
    
    .event-booking-card .offer-label {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    /* Mobile Slot Pricing */
    .slot-pricing .offer-price,
    .slot-pricing .regular-price,
    .slot-pricing .free-price {
        font-size: 1.1rem;
    }
    
    .slot-pricing .actual-price {
        font-size: 0.9rem;
    }
    
    .slot-pricing .offer-label {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    /* Mobile Info Card */
    .event-info-card {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .event-info-card h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .event-info-item {
        padding: 0.5rem 0;
        margin-bottom: 0.75rem;
    }
    
    .event-info-item i {
        font-size: 1rem;
        width: 18px;
    }
    
    .event-info-item span {
        font-size: 0.9rem;
    }
    
    /* Mobile Things to Know */
    .things-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .thing-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .thing-item i {
        font-size: 1rem;
        width: 20px;
    }
    
    .thing-item span {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    /* Events Hero Small Mobile */
    .events-hero {
        padding: 2.5rem 0 1.5rem;
    }
    
    .events-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .events-hero p {
        font-size: 0.9rem;
    }
    
    .events-grid {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .event-card {
        border-radius: 8px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .event-actions {
        justify-content: center;
    }
    
    /* Event Details Small Mobile */
    .event-details-hero {
        padding: 0.75rem 0;
    }
    
    .event-details-content {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .event-details-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .event-details-meta .meta-item {
        font-size: 0.85rem;
    }
    
    .event-details-image {
        height: 180px;
        border-radius: 6px;
    }
    
    .event-details-container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .event-booking-card {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .event-booking-card .price {
        font-size: 1.6rem;
    }
    
    .event-booking-card .price-label {
        font-size: 0.75rem;
    }
    
    .event-booking-card .slots-info {
        padding: 0.625rem;
    }
    
    .event-booking-card .slots-info .slots-available {
        font-size: 0.9rem;
    }
    
    .event-booking-card .slots-info .slots-total {
        font-size: 0.75rem;
    }
    
    .btn-book {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-favorite {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .event-info-card {
        padding: 0.875rem;
        border-radius: 6px;
    }
    
    .event-info-card h4 {
        font-size: 1rem;
    }
    
    .event-info-item {
        padding: 0.4rem 0;
        margin-bottom: 0.5rem;
    }
    
    .event-info-item i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    .event-info-item span {
        font-size: 0.85rem;
    }
    
    .event-description-section,
    .event-things-to-know {
        padding: 0.875rem;
        border-radius: 6px;
    }
    
    .event-description-section h3,
    .event-things-to-know h3 {
        font-size: 1.1rem;
    }
    
    .event-description-section p {
        font-size: 0.85rem;
    }
    
    .thing-item {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .thing-item i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .thing-item span {
        font-size: 0.85rem;
    }
}

/* Animation for loading states */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions for all interactive elements */
.event-card,
.btn-view,
.btn-favorite,
.btn-book {
    transition: all var(--transition-fast) ease;
}

/* Focus states for accessibility */
.event-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-view:focus,
.btn-favorite:focus,
.btn-book:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reviews Section Styles */
.rating-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
    font-size: 1.2rem;
    color: #fbbf24;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.rating-count {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.no-reviews {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.no-reviews-icon {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.no-reviews h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.no-reviews p {
    font-size: 1rem;
    line-height: 1.5;
}

.review-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9333ea, #ff1493);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.verified-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-actions {
    display: flex;
    gap: 0.5rem;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.helpful-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.helpful-btn i {
    font-size: 0.8rem;
}

.review-content {
    margin-top: 1rem;
}

.review-content p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .rating-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-actions {
        align-self: flex-start;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
