/* ===== DİJİTAL BİLET - MODERN CSS ===== */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(237, 105, 28);
    --primary-light: rgb(251, 146, 60);
    --primary-dark: rgb(194, 65, 12);
    --secondary-color: rgb(251, 198, 30);
    --secondary-light: rgb(253, 224, 71);
    --secondary-dark: rgb(245, 158, 11);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--gray-50) !important; }

.db-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.db-section {
    padding: 4rem 0;
}

.db-section.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Location Button Styles */
.btn-location-mobile,
.btn-location-desktop {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-location-mobile:hover,
.btn-location-desktop:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-location-mobile {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.location-text {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .location-text {
        max-width: 60px;
        font-size: 0.8rem;
    }
}

/* Empty Events State */
.empty-events-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
}

.empty-events-icon {
    font-size: 4rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.empty-events-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 1rem;
}

.empty-events-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-events-message {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(237, 105, 28, 0.3);
}

.empty-events-message i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .empty-events-state {
        padding: 3rem 1.5rem;
    }
    
    .empty-events-icon {
        font-size: 3rem;
    }
    
    .empty-events-title {
        font-size: 1.5rem;
    }
    
    .empty-events-description {
        font-size: 1rem;
    }
    
    .empty-events-message {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Events Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.events-layout {
    padding: 2rem 0;
}

.events-layout-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.events-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.clear-filters-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.clear-filters-btn:hover {
    background: #fef3c7;
}

.sidebar-search {
    margin-bottom: 1.5rem;
}

.events-main {
    min-height: 500px;
}

.search-filter {
    width: 100%;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(237, 105, 28, 0.2);
}

.search-input-group i {
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    background: transparent;
    outline: none;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-dark);
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.events-section {
    padding: 3rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.category-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.detail-item i {
    width: 16px;
    color: var(--primary-color);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.event-price {
    display: flex;
    flex-direction: column;
}

.price-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.event-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-container .pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-container .page-link {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
}

.pagination-container .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-container .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.empty-events-actions {
    margin-top: 2rem;
}

.empty-events-actions .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .events-layout-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .events-sidebar {
        position: static;
        order: 2;
    }
    
    .events-main {
        order: 1;
    }
    
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Carousel için z-index ayarı */
.hero-slider {
    z-index: 1;
    position: relative;
}

.header.scrolled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    box-shadow: 0 8px 32px rgba(237, 105, 28, 0.2);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-link {
    display: block;
}

.search-box .input-group {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 50px;
    width: 100%;
}

.search-box .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(237, 105, 28, 0.2);
}

.location-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 20px;
    background: #f8f9fa;
    border-right: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.location-input:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.search-input {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.search-input i {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 16px;
}

.search-box .form-control {
    border: none;
    padding: 14px 0;
    font-size: 15px;
    background: transparent;
    box-shadow: none;
    font-weight: 400;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-left: 1px solid #e5e7eb;
}

.search-actions i {
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-actions i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.dropdown-header {
    font-weight: 600;
    color: #495057;
    padding: 10px 20px;
}

.btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-primary:hover {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}

.btn-primary {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Search Box */
.search-box .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    transition: var(--transition);
    background-color: var(--gray-50);
}

.search-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 105, 28, 0.1);
    background-color: white;
}

.search-box .btn {
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.search-box .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Navigation */
.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

/* Header Buttons */
.header .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(237, 105, 28, 0.3);
}

.header .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 105, 28, 0.4);
}

.header .btn-outline-secondary {
    border-color: var(--gray-300);
    color: var(--gray-600);
    background: transparent;
}

.header .btn-outline-secondary:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--gray-700);
}

/* Logo Text Colors */
.logo-link {
    text-decoration: none;
    color: var(--gray-800);
}

.logo-link:hover {
    color: var(--primary-color);
}

/* Override Bootstrap button colors */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

.btn-outline-secondary {
    border-color: var(--gray-300) !important;
    color: var(--gray-600) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--gray-100) !important;
    border-color: var(--gray-400) !important;
    color: var(--gray-700) !important;
}

/* ===== IMAGE ONLY SLIDER ===== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .slide img {
        object-position: center top;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 3rem;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 2rem;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .slide-content {
        padding: 1.5rem;
        max-width: 400px;
    }
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

.slide-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .slide-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .slider-controls {
        padding: 0 1rem;
    }
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

@media (max-width: 768px) {
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

@media (max-width: 768px) {
    .slider-indicators {
        bottom: 1rem;
        gap: 0.3rem;
    }
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .indicator {
        width: 10px;
        height: 10px;
    }
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(237, 105, 28, 0.6);
}

/* Splide Custom Styling */
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.hero-arrow:hover {
    background: rgba(237, 105, 28, 0.8);
    border-color: #fbbf24;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(237, 105, 28, 0.4);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

.hero-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.hero-page {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-page:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-page.is-active {
    background: #ed6928;
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(237, 105, 28, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .content-left {
        max-width: 100%;
        padding: 2rem;
    }
    
    .event-title {
        font-size: 2.5rem;
    }
    
    .event-description {
        font-size: 1rem;
    }
    
    .event-info {
        gap: 0.8rem;
    }
    
    .info-item {
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .content-left {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Hero Right Side - Card */
/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #ed6928;
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(237, 105, 28, 0.6);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(237, 105, 28, 0.8);
    border-color: #fbbf24;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(237, 105, 28, 0.4);
}

.hero-arrow.prev {
    left: 2rem;
}

.hero-arrow.next {
    right: 2rem;
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ed6928, #fbbf24);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(237, 105, 28, 0.5);
}

/* Hero Right Side */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hero-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #e5e7eb;
    font-weight: 500;
}

.hero-right {
    flex-shrink: 0;
}

.hero-image-card {
    width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 320px;
}

.card-header {
    background: linear-gradient(135deg, #ed6928, #d97706);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.card-body {
    padding: 1.5rem;
}

.card-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ed6928;
    margin-bottom: 0.3rem;
}

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

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ed6928;
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
    left: 2rem;
}

.hero-arrow.next {
    right: 2rem;
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ed6928, #d97706);
    width: 0%;
    transition: width 0.3s ease;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    gap: 3rem;
}

.content-left {
    flex: 1;
    max-width: 500px;
    color: #e2e8f0;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(237, 105, 28, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(237, 105, 28, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fbbf24;
}

.badge-icon {
    font-size: 1.1rem;
}

.event-title {
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #f1f5f9;
}

.title-year {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.event-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #cbd5e1;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.info-item i {
    width: 18px;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.db-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.3);
}

.db-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 105, 28, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.db-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    background: rgba(237, 105, 28, 0.15);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    border: 1px solid rgba(237, 105, 28, 0.3);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.db-btn-secondary:hover {
    background: rgba(237, 105, 28, 0.25);
    transform: translateY(-2px);
    color: #f1f5f9;
}

.content-right {
    flex: 1;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.featured-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.featured-card:hover {
    transform: translateY(-3px);
}

.card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.2rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ed6928;
}

.price-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.stat {
    text-align: center;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.stat:hover {
    background: #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #ed6928;
    border-color: white;
    box-shadow: 0 0 20px rgba(237, 105, 28, 0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 1.5rem;
}

.slider-arrow.next {
    right: 1.5rem;
}

.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ed6928, #fbbf24);
    width: 33.33%;
    transition: width 0.3s ease;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #1f2937;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(237, 105, 28, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-card:nth-child(1) {
    border-color: rgba(237, 105, 28, 0.2);
}

.category-card:nth-child(2) {
    border-color: rgba(251, 198, 30, 0.2);
}

.category-card:nth-child(3) {
    border-color: rgba(217, 119, 6, 0.2);
}

.category-card:nth-child(4) {
    border-color: rgba(180, 83, 9, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.05) 0%, rgba(251, 198, 30, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(237, 105, 28, 0.15);
    border-color: rgba(237, 105, 28, 0.3);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ed6928;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #d97706;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    position: relative;
    z-index: 2;
}

.category-count {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* ===== SECTION STYLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.db-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0;
}

.db-col-lg-3 {
    width: 100%;
}

.db-col-lg-4 {
    width: 100%;
}

.db-col-md-6 {
    width: 100%;
}

.db-g-4 {
    gap: 1.5rem;
}

/* ===== MODERN EVENT CARDS ===== */
.modern-event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(237, 105, 28, 0.08);
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px) rotateX(0deg);
}

.modern-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ed6928, #fbbf24, #ed6928);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.modern-event-card:hover::before {
    transform: scaleX(1);
}

.modern-event-card:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(237, 105, 28, 0.2);
    border-color: rgba(237, 105, 28, 0.3);
}

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

.modern-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-event-card:hover .modern-event-image img {
    transform: scale(1.15);
}

.modern-event-date {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.95), rgba(217, 119, 6, 0.95));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(237, 105, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modern-event-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.12), rgba(251, 198, 30, 0.12));
    color: #ed6928;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    align-self: flex-start;
    border: 1px solid rgba(237, 105, 28, 0.25);
    backdrop-filter: blur(10px);
}

.modern-event-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modern-event-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.modern-event-rating span {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 600;
}

.modern-event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.modern-event-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.modern-event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.05), rgba(251, 198, 30, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(237, 105, 28, 0.1);
    backdrop-filter: blur(10px);
}

.modern-event-details > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
    padding: 0.5rem 0;
}

.modern-event-details i {
    width: 20px;
    color: #ed6928;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(237, 105, 28, 0.3);
}

.modern-event-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: auto;
}

.modern-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(237, 105, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.modern-btn-primary:hover::before {
    left: 100%;
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 105, 28, 0.5);
}

.modern-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(237, 105, 28, 0.08);
    color: #ed6928;
    border: 1px solid rgba(237, 105, 28, 0.25);
    border-radius: 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.modern-btn-outline:hover {
    background: rgba(237, 105, 28, 0.15);
    border-color: rgba(237, 105, 28, 0.4);
    transform: translateY(-3px);
    color: #d97706;
    box-shadow: 0 8px 25px rgba(237, 105, 28, 0.2);
}

/* ===== GRID LAYOUT FOR 3 CARDS ===== */
.db-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0;
}

.db-col-lg-4 {
    width: 100%;
}

.db-col-md-6 {
    width: 100%;
}

.db-g-4 {
    gap: 2rem;
}

.db-d-flex {
    display: flex;
}

.db-gap-2 {
    gap: 0.5rem;
}

.db-flex-fill {
    flex: 1;
}

.db-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.db-btn-outline {
    background: rgba(237, 105, 28, 0.1);
    color: #ed6928;
    border: 1px solid rgba(237, 105, 28, 0.2);
}

.db-btn-outline:hover {
    background: rgba(237, 105, 28, 0.2);
    border-color: rgba(237, 105, 28, 0.3);
    transform: translateY(-2px);
}

.db-btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.db-btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

.db-mb-2 { margin-bottom: 0.5rem; }
.db-mb-3 { margin-bottom: 0.75rem; }
.db-mb-5 { margin-bottom: 1.25rem; }
.db-mt-5 { margin-top: 1.25rem; }
.db-ms-1 { margin-left: 0.25rem; }
.db-ms-2 { margin-left: 0.5rem; }

.db-text-warning { color: #fbbf24; }
.db-text-center { text-align: center; }

/* ===== ARTIST CARDS ===== */
.artist-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 105, 28, 0.1);
    height: 100%;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(237, 105, 28, 0.15);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-avatar {
    transform: scale(1.1);
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== MODERN NEWSLETTER SECTION ===== */
.modern-newsletter-section {
    background: linear-gradient(135deg, #ed6928 0%, #fbbf24 50%, #ed6928 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.modern-newsletter-content {
    position: relative;
    z-index: 2;
}

.modern-newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-newsletter-icon i {
    font-size: 2rem;
    color: white;
}

.modern-newsletter-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modern-newsletter-content p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.modern-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-newsletter-form .form-control {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.95);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modern-newsletter-form .form-control::placeholder {
    color: #6b7280;
}

.modern-newsletter-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 105, 28, 0.3);
    background-color: white;
}

.modern-newsletter-form .modern-btn {
    padding: 1.2rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modern-newsletter-form .modern-btn:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.modern-newsletter-form .modern-btn i {
    margin-left: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.payment-methods {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.footer-section h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    transition: var(--transition);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== FIXED CONTACT BUTTONS ===== */
.fixed-contact {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.contact-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-option:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gray-800);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .db-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .category-card {
        min-height: 160px;
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .content-left {
        max-width: 100%;
    }
    
    .content-right {
        max-width: 100%;
    }
    
    .title-main {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .db-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .db-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        min-height: 140px;
        padding: 1.2rem 1rem;
    }
    
    .category-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-count {
        font-size: 0.85rem;
    }
    
    .modern-hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 1rem;
        gap: 1.2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .db-btn-primary,
    .db-btn-secondary {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
    
    .slider-nav {
        bottom: 1.5rem;
    }
    
    .modern-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .db-d-flex {
        flex-direction: column;
    }
    
    .db-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modern-event-card {
        transform: none;
    }
    
    .modern-event-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .db-section {
        padding: 2rem 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .category-card {
        min-height: 120px;
        padding: 1rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .event-info {
        gap: 0.6rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
    
    .featured-card {
        max-width: 280px;
    }
    
    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .modern-hero-slider {
        height: 55vh;
        min-height: 300px;
    }
    
    .modern-event-content {
        padding: 1.5rem;
    }
    
    .modern-event-title {
        font-size: 1.2rem;
    }
    
    .modern-event-description {
        font-size: 0.9rem;
    }
    
    .modern-event-details {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .modern-event-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modern-btn-primary,
    .modern-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CATEGORY NAVIGATION BAR ===== */
.category-nav-section {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.category-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.category-nav-container::-webkit-scrollbar {
    display: none;
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

.category-nav-item:hover {
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.05), rgba(251, 198, 30, 0.05));
    border-color: rgba(237, 105, 28, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.1);
}

.category-nav-item.active {
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.1), rgba(251, 198, 30, 0.1));
    border-color: rgba(237, 105, 28, 0.2);
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.15);
}

.category-nav-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.1), rgba(251, 198, 30, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(237, 105, 28, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.category-nav-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ed6928, #fbbf24);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-nav-item:hover .category-nav-icon {
    transform: scale(1.1);
    border-color: rgba(237, 105, 28, 0.3);
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.2);
}

.category-nav-item:hover .category-nav-icon::before {
    opacity: 1;
}

.category-nav-item.active .category-nav-icon {
    background: linear-gradient(135deg, #ed6928, #fbbf24);
    border-color: #ed6928;
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.3);
}

.category-nav-icon i {
    font-size: 1.5rem;
    color: #ed6928;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(237, 105, 28, 0.2));
}

.category-nav-item:hover .category-nav-icon i {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
}

.category-nav-item.active .category-nav-icon i {
    color: white;
}

.category-nav-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    transition: color 0.3s ease;
    line-height: 1.2;
    text-align: center;
}

.category-nav-item:hover .category-nav-text {
    color: #ed6928;
}

.category-nav-item.active .category-nav-text {
    color: #ed6928;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .category-nav-container {
        gap: 1.5rem;
    }
    
    .category-nav-item {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .category-nav-icon {
        width: 45px;
        height: 45px;
    }
    
    .category-nav-icon i {
        font-size: 1.3rem;
    }
    
    .category-nav-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .category-nav-section {
        padding: 1rem 0;
    }
    
    .category-nav-container {
        gap: 1rem;
        justify-content: flex-start;
        padding: 0.5rem 0;
    }
    
    .category-nav-item {
        min-width: 90px;
        padding: 0.6rem 0.8rem;
        flex-shrink: 0;
    }
    
    .category-nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-nav-icon i {
        font-size: 1.2rem;
    }
    
    .category-nav-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .category-nav-container {
        gap: 0.8rem;
    }
    
    .category-nav-item {
        min-width: 80px;
        padding: 0.5rem 0.6rem;
    }
    
    .category-nav-icon {
        width: 35px;
        height: 35px;
    }
    
    .category-nav-icon i {
        font-size: 1rem;
    }
    
    .category-nav-text {
        font-size: 0.7rem;
    }
}

/* ===== PREMIUM EVENT CARDS ===== */
.premium-event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(237, 105, 28, 0.08);
}

.premium-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ed6928, #fbbf24, #ed6928);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.premium-event-card:hover::before {
    transform: scaleX(1);
}

.premium-event-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(237, 105, 28, 0.2);
    border-color: rgba(237, 105, 28, 0.3);
}

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

.premium-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-event-card:hover .premium-event-image img {
    transform: scale(1.15);
}

.premium-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.premium-event-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-event-badge i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.premium-event-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.date-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed6928;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.premium-event-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 1;
}

.premium-event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.premium-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.premium-event-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.1), rgba(251, 198, 30, 0.1));
    color: #ed6928;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(237, 105, 28, 0.2);
}

.premium-event-category i {
    font-size: 1rem;
}

.premium-event-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 3px rgba(251, 191, 36, 0.3));
}

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

.premium-event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.premium-event-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.premium-event-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.03), rgba(251, 198, 30, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(237, 105, 28, 0.08);
}

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

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.1), rgba(251, 198, 30, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237, 105, 28, 0.2);
}

.info-icon i {
    color: #ed6928;
    font-size: 1rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.info-value {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
}

.premium-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-event-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ed6928;
    line-height: 1;
}

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

.premium-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.premium-btn-primary:hover::before {
    left: 100%;
}

.premium-btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 105, 28, 0.4);
}

.premium-btn-favorite {
    width: 45px;
    height: 45px;
    background: rgba(237, 105, 28, 0.1);
    color: #ed6928;
    border: 1px solid rgba(237, 105, 28, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.premium-btn-favorite:hover {
    background: #ed6928;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-event-image {
        height: 220px;
    }
    
    .premium-event-content {
        padding: 1.5rem;
    }
    
    .premium-event-title {
        font-size: 1.3rem;
    }
    
    .premium-event-description {
        font-size: 0.9rem;
    }
    
    .premium-event-info {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
    }
    
    .info-icon i {
        font-size: 0.9rem;
    }
    
    .premium-event-actions {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .premium-btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .premium-btn-favorite {
        width: 100%;
        height: 40px;
    }
}

/* ===== SIMPLE EVENT CARDS ===== */
.simple-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.simple-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.simple-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.simple-event-card:hover .simple-event-image img {
    transform: scale(1.05);
}

.simple-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.simple-event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.simple-event-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.simple-event-rating i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.simple-event-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
    z-index: 2;
}

.simple-event-title-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.simple-event-title-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.simple-event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.simple-event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.simple-event-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.simple-event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.detail-item i {
    color: #ed6928;
    width: 16px;
    font-size: 0.9rem;
}

.simple-event-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.simple-btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: white;
    color: #ed6928;
    text-decoration: none;
    border: 1px solid #ed6928;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.simple-btn-outline:hover {
    background: #ed6928;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 105, 28, 0.3);
}

.simple-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(237, 105, 28, 0.3);
}

.simple-btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 105, 28, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .simple-event-image {
        height: 200px;
    }
    
    .simple-event-content {
        padding: 1.2rem;
    }
    
    .simple-event-title {
        font-size: 1.2rem;
    }
    
    .simple-event-description {
        font-size: 0.9rem;
    }
    
    .simple-event-actions {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .simple-btn-outline,
    .simple-btn-primary {
        width: 100%;
    }
}

/* ===== CLEAN EVENT CARDS ===== */
.clean-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.clean-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.clean-event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.clean-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block;
}

.clean-event-card:hover .clean-event-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.featured-badge i {
    font-size: 10px;
}

.clean-event-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-category {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.category-badge {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.clean-event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.clean-event-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.detail-item i {
    color: #9ca3af;
    width: 14px;
    font-size: 0.85rem;
}

.detail-item span {
    flex: 1;
    line-height: 1.4;
}

.clean-event-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.price-text {
    font-size: 18px;
    font-weight: 700;
    color: #ed6928;
}

.price-label {
    font-size: 12px;
    color: #9ca3af;
}

.clean-event-actions {
    flex-shrink: 0;
}

.clean-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(237, 105, 28, 0.2);
}

.clean-btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.3);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .clean-event-image {
        height: 180px;
    }
    
    .clean-event-content {
        padding: 1rem;
    }
    
    .clean-event-title {
        font-size: 1rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }
}

/* ===== POPULAR ARTISTS ===== */
.artists-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.artists-row::-webkit-scrollbar {
    display: none;
}

.artist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.artist-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.artist-item:hover .artist-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-item:hover .artist-avatar img {
    transform: scale(1.1);
}

.artist-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.artist-events {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .artists-row {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .artist-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .artist-avatar {
        width: 70px;
        height: 70px;
    }
    
    .artist-name {
        font-size: 0.9rem;
    }
    
    .artist-events {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .artists-row {
        gap: 1rem;
    }
    
    .artist-item {
        min-width: 90px;
        padding: 0.6rem;
    }
    
    .artist-avatar {
        width: 60px;
        height: 60px;
    }
    
    .artist-name {
        font-size: 0.85rem;
    }
    
    .artist-events {
        font-size: 0.75rem;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 25%, #ffd700 50%, #ffb347 75%, #ff8c42 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.newsletter-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-btn i {
    font-size: 0.9rem;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 2.5rem 0;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-icon i {
        font-size: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-description {
        font-size: 0.95rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ===== EVENT DETAIL PAGE ===== */

/* Event Hero Section */
.event-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.event-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
}

.event-hero-content {
    color: white;
    max-width: 800px;
}

.event-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ed6928, #fbbf24);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(237, 105, 40, 0.3);
}

.event-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.event-hero-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.event-hero-meta .meta-item i {
    color: #fbbf24;
    font-size: 1.2rem;
}

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

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-stars i.active {
    color: #fbbf24;
}

.rating-stars i:not(.active) {
    color: rgba(255, 255, 255, 0.3);
}

.rating-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Event Details Section */
.event-details-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.event-main-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-section {
    margin-bottom: 3rem;
}

.event-section:last-child {
    margin-bottom: 0;
}

.event-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.event-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ed6928, #fbbf24);
    border-radius: 2px;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Gallery */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 105, 40, 0.1);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(237, 105, 40, 0.15);
    border-color: rgba(237, 105, 40, 0.3);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #ed6928;
}

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

.artist-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.artist-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.artist-time {
    color: #ed6928;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Schedule Timeline */
.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ed6928, #fbbf24);
}

.schedule-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ed6928;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #ed6928;
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ed6928;
    margin-bottom: 0.5rem;
}

.schedule-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.schedule-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Facilities & Rules */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.facility-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.rule-item i {
    color: #f59e0b;
    font-size: 1.1rem;
}

/* Sidebar */
.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ticket-purchase-card,
.event-info-card,
.share-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ticket-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ed6928;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.ticket-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.ticket-info .info-item i {
    color: #ed6928;
    width: 16px;
}

.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ticket-type:hover {
    border-color: #ed6928;
    background: rgba(237, 105, 40, 0.02);
}

.ticket-type.disabled {
    opacity: 0.5;
    background: #f3f4f6;
}

.ticket-type-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.ticket-type-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

.ticket-type-price {
    text-align: right;
}

.ticket-type-price span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ed6928;
}

.sold-out {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 600;
}

.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 105, 40, 0.3);
}

.purchase-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 105, 40, 0.4);
    color: white;
}

/* Event Info Card */
.event-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-list .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-list .info-item i {
    color: #ed6928;
    font-size: 1.1rem;
    width: 20px;
}

.info-list .info-item div {
    flex: 1;
}

.info-list .info-item strong {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.2rem;
}

.info-list .info-item span {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
}

/* Share Card */
.share-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: #6b7280;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Related Events */
.related-events-section {
    padding: 4rem 0;
    background: white;
}

.related-events-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-event-image {
    position: relative;
    height: 200px;
}

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

.related-event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ed6928, #fbbf24);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.related-event-content {
    padding: 1.5rem;
}

.related-event-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.related-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.related-event-meta span {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-event-meta i {
    color: #ed6928;
    width: 14px;
}

.related-event-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ed6928;
    margin-bottom: 1rem;
}

.related-event-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-event-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .event-hero-title {
        font-size: 2.5rem;
    }
    
    .event-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-main-content {
        padding: 1.5rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .related-events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .event-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .event-hero-title {
        font-size: 2rem;
    }
    
    .event-section h2 {
        font-size: 1.5rem;
    }
    
    .ticket-purchase-card,
    .event-info-card,
    .share-card {
        padding: 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* ===== EVENT DETAIL PAGE - NEW DESIGN ===== */

/* Event Detail Header */
.event-detail-header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.event-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ed6928;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #f3f4f6;
    color: #ed6928;
}

/* Event Detail Content */
.event-detail-content {
    padding: 2rem 0;
    background: #f8fafc;
    min-height: calc(100vh - 100px);
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Event Information */
.event-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Event Banner */
.event-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-location,
.banner-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ed6928;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.banner-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.banner-rating i {
    color: #fbbf24;
}

/* Event Details */
.event-details {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ed6928;
}

.event-short-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.event-meta .meta-item i {
    color: #ed6928;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.info-item i {
    color: #ed6928;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.info-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* About Event */
.about-event {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-event h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-event p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

/* Venue Features */
.venue-features {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.venue-features h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #6b7280;
}

.feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Right Column - Ticket Options */
.ticket-options-column {
    position: sticky;
    top: 2rem;
}

.ticket-options-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ticket-options-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ticket-options-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ticket-type-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    cursor: pointer;
    position: relative;
}

.ticket-type-card:hover {
    border-color: #ed6928;
    background: white;
    box-shadow: 0 4px 15px rgba(237, 105, 28, 0.1);
}

.ticket-type-card.selected {
    border-color: #ed6928;
    background: linear-gradient(135deg, rgba(237, 105, 28, 0.05), rgba(251, 198, 30, 0.05));
    box-shadow: 0 4px 20px rgba(237, 105, 28, 0.15);
}

.ticket-selection-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ticket-selection-indicator.selected {
    background: #ed6928;
    border-color: #ed6928;
}

.ticket-selection-indicator.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.ticket-type-card.disabled {
    opacity: 0.6;
    background: #f3f4f6;
}

.ticket-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ticket-type-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.ticket-type-header .ticket-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ed6928;
}

.ticket-type-header .ticket-price small {
    font-size: 0.7rem;
    color: #7f8c8d;
    font-weight: normal;
    display: block;
    margin-top: 2px;
}

.ticket-type-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-detail {
    font-size: 0.9rem;
    color: #6b7280;
}

.detail-label {
    color: #6b7280;
}

/* Ticket Quantity */
.ticket-quantity {
    margin-bottom: 2rem;
}

.ticket-quantity label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: #ed6928;
    color: #ed6928;
}

.quantity-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    min-width: 30px;
    text-align: center;
}

.ticket-quantity small {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Price Summary */
.price-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

/* Modern Checkout Styles */
.checkout-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.checkout-header {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.checkout-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.checkout-header p {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.12);
}

.checkout-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.checkout-card .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.checkout-card .card-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.checkout-card .card-body {
    padding: 3rem;
}

.order-summary-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 2rem;
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.12);
}

.order-summary-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-summary-card .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.order-summary-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.order-summary-card .card-body {
    padding: 2rem;
}

.event-info h4 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.event-info p {
    color: #64748b;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.event-info i {
    width: 20px;
    color: #667eea;
    font-size: 1.1rem;
}

.ticket-info {
    border-top: 2px solid #f1f5f9;
    border-bottom: 2px solid #f1f5f9;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.ticket-info h5 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ticket-info p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.ticket-details {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.price-breakdown {
    margin: 2rem 0;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.price-row.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
}

.security-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.security-item i {
    color: #28a745;
    font-size: 0.9rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    min-width: 200px;
}

/* Modern Guest User Styles */
.guest-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.guest-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.guest-info-section h4 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.guest-info-section h4 i {
    color: #667eea;
    font-size: 1.2rem;
}

.user-info {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-info i {
    color: #28a745;
}

.form-check {
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check-input {
    margin-top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #667eea;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.form-check-label {
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.form-check-label strong {
    color: #333;
    font-weight: 600;
}

.form-check-label small {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: #666;
    display: block;
    line-height: 1.3;
}

/* Checkbox hover effect */
.form-check:hover .form-check-input {
    border-color: #5a67d8;
}

.form-check:hover .form-check-label {
    color: #5a67d8;
}

/* Checkbox animation */
.form-check-input {
    transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
    transform: scale(1.05);
}

/* Override Bootstrap checkbox styles */
.form-check-input[type="checkbox"] {
    background-image: none;
}

.form-check-input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-size: 0.8rem;
    background-position: center;
    background-repeat: no-repeat;
}

/* Modern Ticket Participants Styles */
.ticket-passengers-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #bbf7d0;
    position: relative;
    overflow: hidden;
}

.ticket-passengers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.ticket-passengers-section h4 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.ticket-passengers-section h4 i {
    color: #22c55e;
    font-size: 1.2rem;
}

.section-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.passenger-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.passenger-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.passenger-form:last-child {
    margin-bottom: 0;
}

.passenger-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.passenger-form h5 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.passenger-form h5::before {
    content: "🎭";
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.guest-account {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
}

.guest-account .step-content h5,
.guest-account .step-content p {
    color: white;
}

.guest-account .btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.guest-account .btn:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Success/Failed Payment Styles */
.success-container,
.failed-container {
    background: #f8fafc;
    min-height: 100vh;
    padding: 2rem 0;
}

.success-header,
.failed-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.failed-header {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.success-icon,
.failed-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon i {
    color: #28a745;
}

.failed-icon i {
    color: #dc3545;
}

.success-header h1,
.failed-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-header p,
.failed-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.success-card,
.failed-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.success-card .card-body,
.failed-card .card-body {
    padding: 2rem;
}

.success-message,
.failed-message {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.success-message h3,
.failed-message h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-message p,
.failed-message p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.order-details {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #666;
}

.detail-row .value {
    font-weight: 500;
    color: #333;
}

.passenger-detail {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #28a745;
}

.passenger-detail:last-child {
    margin-bottom: 0;
}

.passenger-detail h6 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passenger-detail h6::before {
    content: "👤";
    font-size: 1.1rem;
}

.passenger-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.info-row .value {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.next-steps,
.troubleshooting {
    margin-bottom: 2rem;
}

.next-steps h4,
.troubleshooting h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-item,
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-icon,
.solution-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.solution-icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.step-content h5,
.solution-content h5 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p,
.solution-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.error-details {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.error-details h4 {
    color: #721c24;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.error-message {
    color: #721c24;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    min-width: 150px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #6b7280;
}

.price-row.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Buy Button */
.buy-ticket-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: #8b5cf6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.buy-ticket-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    color: white;
}

.security-note {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ticket-options-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-detail-content {
        padding: 1.5rem 0;
    }
    
    .event-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ticket-options-card,
    .event-details,
    .about-event,
    .venue-features {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .event-banner img {
        height: 300px;
    }
}

/* ===== TICKETS PAGE ===== */

/* Tickets Header */
.tickets-header {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.tickets-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tickets-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Event Info Banner */
.event-info-banner {
    background: #f8fafc;
    padding: 2rem 0;
}

.event-info-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.event-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.event-meta .meta-item i {
    color: #ed6928;
}

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

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-stars i.active {
    color: #fbbf24;
}

.rating-stars i:not(.active) {
    color: #e5e7eb;
}

.event-rating span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Tickets Section */
.tickets-section {
    padding: 3rem 0;
    background: white;
}

.tickets-section .db-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ticket-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    border-color: #ed6928;
    box-shadow: 0 8px 25px rgba(237, 105, 40, 0.1);
}

.ticket-card.disabled {
    opacity: 0.6;
    background: #f9fafb;
}

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

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

.ticket-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.sold-out-badge {
    background: #ef4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ed6928;
}

.ticket-description {
    margin-bottom: 1.5rem;
}

.ticket-description p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.ticket-features {
    margin-bottom: 2rem;
}

.ticket-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.ticket-features li i {
    color: #22c55e;
    font-size: 0.9rem;
}

.ticket-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.quantity-selector label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

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

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: #ed6928;
    color: #ed6928;
}

.quantity-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    min-width: 30px;
    text-align: center;
}

.buy-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #8b5cf6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.buy-ticket-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    color: white;
}

.sold-out-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Summary Section */
.tickets-summary {
    position: sticky;
    top: 2rem;
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.summary-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.selected-tickets {
    margin-bottom: 2rem;
}

.no-selection {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

.selected-ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

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

.summary-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

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

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 105, 40, 0.3);
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 105, 40, 0.4);
    color: white;
}

/* View All Tickets Button */
.view-all-tickets {
    margin-top: 1rem;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.view-all-btn:hover {
    background: #ed6928;
    color: white;
    border-color: #ed6928;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .tickets-section .db-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tickets-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-info-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .event-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ticket-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .buy-ticket-btn {
        justify-content: center;
    }
    
    .tickets-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .tickets-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ticket-card {
        padding: 1.5rem;
    }
    
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}

/* ===== AUTHENTICATION PAGES ===== */

.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100vh;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: white;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.auth-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    min-width: 320px;
}

.auth-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ed6928, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #111827;
    font-weight: 500;
    box-sizing: border-box;
    min-height: 56px;
}

.form-group input:focus {
    outline: none;
    border-color: #ed6928;
    background: white;
    box-shadow: 0 0 0 4px rgba(237, 105, 40, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.form-group input.success {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

.error-message::before {
    content: '⚠️';
    font-size: 0.75rem;
    flex-shrink: 0;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: #ed6928;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #ed6928;
    border-radius: 6px;
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 56px;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 105, 40, 0.4);
}

.auth-btn:active {
    transform: translateY(-1px);
}

.auth-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-btn:disabled::before {
    display: none;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.auth-footer p {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 400;
}

.auth-footer a {
    color: #ed6928;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #d97706;
}

/* ===== AUTH SLIDER SECTION ===== */

.auth-slider-section {
    background: linear-gradient(135deg, #ed6928 0%, #fbbf24 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.auth-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.slider-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    text-align: center;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.slide h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
    color: white;
    max-width: 320px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .auth-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }
    
    .auth-slider-section {
        order: -1;
        padding: 3rem 2rem;
        min-height: 350px;
    }
    
    .slider-content {
        height: 280px;
    }
    
    .slide-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .slide h2 {
        font-size: 1.75rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .auth-form-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 0;
    }
    
    .auth-form-section {
        padding: 2rem 1rem;
        min-height: 100vh;
    }
    
    .auth-card {
        max-width: 100%;
        min-width: 280px;
        width: 100%;
    }
    
    .auth-header h1 {
        font-size: 1.75rem;
    }
    
    .auth-slider-section {
        padding: 2rem 1.5rem;
    }
    
    .slider-dots {
        bottom: 2rem;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .form-group input {
        width: 100%;
        min-height: 50px;
        box-sizing: border-box;
    }
    
    .error-message {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .auth-form-section {
        padding: 1.5rem 1rem;
        min-height: 100vh;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .form-group input {
        padding: 0.875rem 1rem;
        width: 100%;
        min-height: 48px;
        box-sizing: border-box;
    }
    
    .error-message {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    
    .auth-btn {
        padding: 0.875rem 1.5rem;
        width: 100%;
    }
    
    .slide-icon {
        font-size: 3rem;
    }
    
    .slide h2 {
        font-size: 1.5rem;
    }
    
    .slide p {
        font-size: 0.95rem;
    }
    
    .auth-slider-section {
        padding: 1.5rem 1rem;
    }
}

/* ===== CHECKOUT PAGE ===== */

.checkout-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Form Section */
.checkout-form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-header p {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Form Sections */
.form-section {
    background: #fafafa;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #f3f4f6;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #ed6928, #d97706);
    border-radius: 2px;
}

/* Card Input Group */
.card-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    order: -1;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #374151;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Card Icons */
.card-icons {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.25rem;
}

.card-icons i {
    font-size: 1.25rem;
    color: #9ca3af;
}

/* Card Details */
.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.expiry-inputs {
    display: flex;
    gap: 0.5rem;
}

.expiry-inputs select {
    flex: 1;
    padding: 0.875rem 0.75rem;
}

/* Billing Form */
.billing-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.billing-form .form-group:nth-child(3),
.billing-form .form-group:nth-child(4) {
    grid-column: span 2;
}

.address-details {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Payment Section */
.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
}

.payment-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 105, 40, 0.4);
}

.payment-btn:active {
    transform: translateY(-1px);
}

.payment-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Security Info */
.security-info {
    margin-top: 1.5rem;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f0fdf4;
    color: #166534;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.security-badge i {
    color: #16a34a;
}

/* Summary Section */
.checkout-summary-section {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.item-count {
    background: #ed6928;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Cart Items */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.event-name {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.event-details span {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-price {
    text-align: right;
}

.quantity {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

/* Summary Totals */
.summary-totals {
    margin-bottom: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.total-row:not(.total-final) {
    color: #6b7280;
}

.total-final {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    border-top: 2px solid #f3f4f6;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Summary Footer */
.summary-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f3f4f6;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #16a34a;
    font-weight: 600;
}

.guarantee i {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkout-summary-section {
        position: static;
        order: -1;
    }
    
    .card-details {
        grid-template-columns: 1fr;
    }
    
    .billing-form {
        grid-template-columns: 1fr;
    }
    
    .billing-form .form-group:nth-child(3),
    .billing-form .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .address-details {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .ticket-form-grid {
        flex-direction: column;
    }
    
    .ticket-form-grid .form-group {
        width: 100%;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-prev,
    .btn-next {
        width: 100%;
        justify-content: center;
    }
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.step-item.active:not(:last-child)::after,
.step-item.completed:not(:last-child)::after {
    background: linear-gradient(135deg, #ed6928, #d97706);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(237, 105, 40, 0.3);
}

.step-item.completed .step-number {
    background: #10b981;
    color: white;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.step-desc {
    font-size: 0.8rem;
    color: #6b7280;
}

.step-item.active .step-title {
    color: #ed6928;
}

.step-item.completed .step-title {
    color: #10b981;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    margin-bottom: 2rem;
    text-align: center;
}

.step-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #6b7280;
    font-size: 1rem;
}

/* Ticket Forms */
.ticket-forms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-form-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.ticket-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.ticket-type {
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ticket-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-form-grid .form-group {
    width: 100%;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.btn-prev,
.btn-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: #f3f4f6;
    color: #6b7280;
}

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

.btn-next {
    background: linear-gradient(135deg, #ed6928, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(237, 105, 40, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 105, 40, 0.4);
}

/* Form Error State */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Admin Panel Styles */
.admin-container {
    min-height: 100vh;
    background: #1a1a1a;
    color: #e0e0e0;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #2d2d2d;
    border-right: 1px solid #404040;
    z-index: 1000;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #404040;
    background: #1a1a1a;
}

.admin-sidebar-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-sidebar-header h2 i {
    color: #ed6928;
    font-size: 1.75rem;
}

.admin-nav {
    padding: 1rem 0;
}

.admin-nav-item {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.admin-nav-item:hover {
    background: #404040;
    color: #fff;
    border-left-color: #ed6928;
    text-decoration: none;
}

.admin-nav-item.active {
    background: #404040;
    color: #fff;
    border-left-color: #ed6928;
}

.admin-nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

.admin-main {
    margin-left: 280px;
    min-height: 100vh;
    background: #1a1a1a;
}

.admin-header {
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title h1 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-title h1 i {
    color: #ed6928;
}

.admin-title p {
    color: #b0b0b0;
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
}

.admin-actions .btn {
    background: #ed6928;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-actions .btn:hover {
    background: #d45a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 105, 40, 0.3);
}

.admin-actions .btn-outline-light {
    background: transparent;
    border: 1px solid #404040;
    color: #b0b0b0;
}

.admin-actions .btn-outline-light:hover {
    background: #404040;
    color: #fff;
    border-color: #404040;
}

.admin-content {
    padding: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: #ed6928;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ed6928, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(237, 105, 40, 0.3);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.stat-content p {
    color: #b0b0b0;
    margin: 0;
    font-weight: 500;
}

/* Admin Content Grid */
.admin-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #404040;
}

.card-header {
    background: #1a1a1a;
    padding: 1.5rem;
    border-bottom: 1px solid #404040;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1.5rem;
    color: #e0e0e0;
}

/* Recent Orders */
.recent-orders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #f3f4f6;
}

.order-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.order-info p {
    margin: 0 0 0.25rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.order-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

.order-amount {
    text-align: right;
}

.amount {
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status.completed {
    background: #dcfce7;
    color: #166534;
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Upcoming Events */

/* ===== ADMIN PANEL MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-header {
        padding: 1rem;
    }
    
    .admin-header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .admin-title h1 {
        font-size: 1.5rem;
    }
    
    .admin-actions {
        width: 100%;
        display: flex;
        gap: 0.5rem;
    }
    
    .admin-actions .btn {
        flex: 1;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .admin-content {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
}

/* Admin Sidebar Toggle Button */
.admin-sidebar-toggle {
    display: none;
    background: #ed6928;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-sidebar-toggle:hover {
    background: #d45a1f;
}

@media (max-width: 768px) {
    .admin-sidebar-toggle {
        display: block;
    }
}

/* ===== RESPONSIVE HERO SLIDER ===== */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .title-text {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image-card {
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }
    
    .hero-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-arrow.prev {
        left: 1rem;
    }
    
    .hero-arrow.next {
        right: 1rem;
    }
    
    .hero-nav {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .title-text {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-card {
        max-width: 280px;
        height: 200px;
    }
    
    .hero-card {
        max-width: 280px;
    }
    
    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}
.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: #f3f4f6;
}

.event-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.event-info p {
    margin: 0 0 0.25rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.event-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
}

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

.empty-state p {
    margin: 0;
    font-size: 1rem;
}

/* Quick Actions */
.quick-actions {
    margin-top: 2rem;
}

.quick-actions h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.action-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.action-card i {
    font-size: 2.5rem;
    color: #ed6928;
    margin-bottom: 1rem;
}

.action-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 1rem 0;
    }
    
    .checkout-form-section {
        padding: 1.5rem;
    }
    
    .checkout-header h1 {
        font-size: 1.75rem;
    }
    
    .form-section h3 {
        font-size: 1.25rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .checkout-layout {
        padding: 0 0.5rem;
    }
    
    .checkout-form-section {
        padding: 1rem;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem;
    }
    
    .payment-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Kategori Yönetimi Styles */
.category-stats {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #ed6928;
}

.category-stats h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: #666;
}

.stat-value {
    font-weight: 600;
    color: #333;
}

.color-preview {
    display: inline-block;
    vertical-align: middle;
}

.search-box {
    position: relative;
    max-width: 300px;
}

.search-box input {
    padding-right: 40px;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    justify-content: center;
}

.form-actions .btn {
    min-width: 200px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(102, 126, 234, 0.4);
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn:active {
    transform: translateY(0);
}

/* Kategori Form Styles */
.input-group-text i {
    width: 16px;
    text-align: center;
}

.form-control-color {
    width: 50px;
    height: 38px;
    padding: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .search-box {
        max-width: none;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ===== CATEGORY NAVIGATION ===== */
/* Kategoriler kısmı kaldırıldı */

/* ===== USER MENU & QUICK ACTIONS ===== */
.quick-actions {
    display: flex;
    gap: 0.5rem;
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.quick-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 105, 28, 0.3);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    position: relative;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.avatar-img-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-user {
    background: transparent;
    border: none;
    color: var(--gray-700);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-user:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.dropdown-header {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px 8px 0 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info .user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.user-info .user-email {
    font-size: 12px;
    color: var(--gray-500);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0;
    min-width: 280px;
}

.dropdown-item {
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--gray-50);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--gray-200);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-mobile-menu {
    background: var(--gray-100);
    border: none;
    color: var(--gray-600);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-mobile-menu:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== LOCATION SELECTOR ===== */
.location-selector .btn {
    border-color: rgba(255,255,255,0.3);
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    background: transparent;
    border-radius: 6px;
}

.location-selector .btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-info {
        gap: 1rem;
    }
    
    .top-info-item span {
        display: none;
    }
    
    .social-links {
        display: none;
    }
    
    .quick-actions {
        display: none;
    }
    
    .user-menu {
        gap: 0.5rem;
    }
    
    .btn-user .user-name {
        display: none;
    }
    
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== CATEGORIES DROPDOWN ===== */
.categories-dropdown {
    position: relative;
}

.btn-categories {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.btn-categories:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
}

.btn-categories:focus {
    background: rgba(255,255,255,0.2);
    color: white;
    box-shadow: none;
}

/* ===== PROFILE BUTTON ===== */
.btn-profile {
    background: white;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-profile:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-profile:focus {
    background: #f8f9fa;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== MOBILE PROFILE BUTTON ===== */
.btn-profile-mobile {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    min-width: 40px;
    height: 40px;
    justify-content: center;
}

.btn-profile-mobile:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
}

.btn-profile-mobile:focus {
    background: rgba(255,255,255,0.2);
    color: white;
    box-shadow: none;
}

/* ===== MOBILE MENU BUTTON ===== */
.btn-mobile-menu {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-mobile-menu:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
}

/* ===== LOGO ===== */
.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-link {
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

/* ===== DROPDOWN MENUS ===== */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #374151;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    transform: translateX(3px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e7eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .categories-dropdown {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .btn-profile .user-name {
        display: none;
    }
    
    .btn-profile {
        padding: 8px 12px;
    }
    
    /* Mobile header layout - Logo centered between two icons */
    .header .row {
        position: relative;
    }
    
    .header .col-lg-11 .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10;
        width: auto;
    }
    
    .header .col-lg-1 {
        position: relative;
    }
    
    .header .col-lg-1 .d-flex {
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    /* Ensure logo container doesn't interfere */
    .header .col-lg-11 {
        position: relative;
    }
    
    /* Force logo centering on mobile */
    @media (max-width: 768px) {
        .header .row {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
        }
        
        .header .col-lg-11 {
            position: absolute !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 10 !important;
        }
        
        .header .col-lg-1 {
            position: relative !important;
            z-index: 5 !important;
            width: 100% !important;
        }
        
        .header .col-lg-1 .d-flex {
            justify-content: space-between !important;
            width: 100% !important;
        }
        
        /* Mobile logo size */
        .header .logo-img {
            height: 30px !important;
            width: auto !important;
        }
    }
    
    /* Mobile profile button styling */
    .btn-profile-mobile {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .btn-profile-mobile:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-1px);
    }
    
    /* Mobile search button styling */
    .btn-search-mobile {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .btn-search-mobile:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-1px);
    }
}

/* ===== ORGANIZER PANEL SIDEBAR ===== */
.organizer-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #1e4d2b;
    border-right: 1px solid #2d5a3a;
    z-index: 1000;
    overflow-y: auto;
}

.organizer-sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #2d5a3a;
    background: #163d22;
}

.organizer-sidebar-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.organizer-sidebar-header h2 i {
    color: #22c55e;
    font-size: 1.75rem;
}

.organizer-nav {
    padding: 1rem 0;
}

.organizer-nav-item {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.organizer-nav-item:hover {
    background: #2d5a3a;
    color: #fff;
    border-left-color: #22c55e;
    text-decoration: none;
}

.organizer-nav-item.active {
    background: #2d5a3a;
    color: #fff;
    border-left-color: #22c55e;
}

.organizer-nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

.organizer-main {
    margin-left: 280px;
    min-height: 100vh;
    background: #1a1a1a;
}

/* ===== SALES REPRESENTATIVE PANEL SIDEBAR ===== */
.sales-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #7f1d1d;
    border-right: 1px solid #991b1b;
    z-index: 1000;
    overflow-y: auto;
}

.sales-sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #991b1b;
    background: #450a0a;
}

.sales-sidebar-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sales-sidebar-header h2 i {
    color: #ef4444;
    font-size: 1.75rem;
}

.sales-nav {
    padding: 1rem 0;
}

.sales-nav-item {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sales-nav-item:hover {
    background: #991b1b;
    color: #fff;
    border-left-color: #ef4444;
    text-decoration: none;
}

.sales-nav-item.active {
    background: #991b1b;
    color: #fff;
    border-left-color: #ef4444;
}

.sales-nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

.sales-main {
    margin-left: 280px;
    min-height: 100vh;
    background: #1a1a1a;
}
/* ===== MOBILE MENU ===== */
.offcanvas {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.mobile-nav i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Mobile menu responsive */
@media (max-width: 768px) {
    .offcanvas {
        width: 280px;
    }
    
    .mobile-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.mobile-nav i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Mobile menu responsive */
@media (max-width: 768px) {
    .offcanvas {
        width: 280px;
    }
    
    .mobile-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}
.search-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box-large {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-box-large:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.search-input-group {
    display: flex;
    align-items: center;
    min-height: 60px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 24px;
    background: #f8f9fa;
    border-right: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    height: 60px;
    align-items: center;
}

.location-selector:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 24px;
}

.search-input-wrapper i {
    color: #9ca3af;
    margin-right: 16px;
    font-size: 18px;
}

.search-input {
    border: none;
    padding: 0;
    font-size: 16px;
    background: transparent;
    box-shadow: none;
    width: 100%;
    height: 60px;
    font-weight: 400;
}

.search-input:focus {
    box-shadow: none;
    outline: none;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    border-left: 1px solid #e5e7eb;
    height: 60px;
}

.search-actions i {
    color: #6b7280;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-actions i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== RESPONSIVE SEARCH ===== */
@media (max-width: 768px) {
    .search-section {
        padding: 2rem 0;
        margin-top: -1rem;
    }
    
    .search-input-group {
        flex-direction: column;
        min-height: auto;
    }
    
    .location-selector {
        width: 100%;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        min-width: auto;
        height: 50px;
    }
    
    .search-input-wrapper {
        width: 100%;
        padding: 0 20px;
    }
    
    .search-input {
        height: 50px;
    }
    
    .search-actions {
        width: 100%;
        justify-content: center;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        height: 50px;
    }
}

/* Desktop search button styling */
.btn-search-desktop {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-search-desktop:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-1px);
}
.search-modal-container {
    padding: 1rem 0;
}

.search-input-group-modal {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 50px;
}

.search-input-group-modal:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.location-selector-modal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 20px;
    background: #f8f9fa;
    border-right: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 50px;
    align-items: center;
}

.location-selector-modal:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.search-input-wrapper-modal {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.search-input-wrapper-modal i {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 16px;
}

.search-input-modal {
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: transparent;
    width: 100%;
    outline: none;
}

.search-input-modal::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-btn-modal {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0 24px;
    height: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn-modal:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

/* Modal responsive */
@media (max-width: 768px) {
    .search-input-group-modal {
        flex-direction: column;
        min-height: auto;
    }
    
    .location-selector-modal {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        justify-content: center;
    }
    
    .search-input-wrapper-modal {
        width: 100%;
        padding: 16px 20px;
    }
    
    .search-btn-modal {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 12px 12px;
    }
}

/* ===== SOSYAL MEDYA PAYLAŞIM STİLLERİ ===== */

/* Favori butonu */
.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.action-btn.favorited {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
}

.action-btn.favorited .fa-heart {
    color: #dc3545;
}

.fa-heart.active {
    color: #dc3545;
    animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Paylaşım dropdown */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-option:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    transform: translateX(4px);
}

.share-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.share-option .fa-facebook {
    color: #1877f2;
}

.share-option .fa-twitter {
    color: #1da1f2;
}

.share-option .fa-whatsapp {
    color: #25d366;
}

.share-option .fa-telegram {
    color: #0088cc;
}

.share-option .fa-link {
    color: var(--gray-500);
}

/* Toast bildirimleri */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: white;
    color: var(--gray-800);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    max-width: 300px;
    border-left: 4px solid var(--primary-color);
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #17a2b8;
}

/* Responsive paylaşım menüsü */
@media (max-width: 768px) {
    .share-menu {
        right: -50px;
        min-width: 180px;
    }
    
    .share-menu::before {
        right: 50px;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
}

/* Event detail sayfası için özel stiller */
.event-detail-header .header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.event-detail-header .action-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.event-detail-header .action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

