/**
 * Event Landing Page Styles
 * 
 * Premium modern design with glassmorphism, animations, parallax
 * Extracted from ticketing-event-landing.php template
 * 
 * @package Xeora
 * @subpackage Ticketing/Assets
 * @version 1.5.1 - Added VIP ticket styling
 * @version 1.5.2 - Fixed VIP badge position (top-left)
 * @version 1.5.3 - Fixed contact email overflow on mobile
 */

/* ===== CSS Variables ===== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.1);
    --vip-gold: #FFD700;
    --vip-gold-dark: #FFA500;
}

/* ===== Base Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.xeora-event-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--event-text);
    line-height: 1.6;
    background: #fafbfc;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Hero Section with Parallax ===== */
.event-hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--event-primary), var(--event-secondary));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Floating particles effect */
.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
    animation: floatingParticles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingParticles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -10px) scale(1.05); }
    50% { transform: translate(-10px, 10px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

.hero-content {
    max-width: 1000px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-logo {
    max-width: 200px;
    max-height: 100px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.98);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.event-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Gradient text effect */
.event-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.event-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    padding: 12px 24px;
    border-radius: 100px;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.meta-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.meta-item i {
    font-size: 17px;
}

/* Social Proof Badge */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse 3s ease-in-out infinite;
}

/* Premium CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: var(--event-primary);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-button.disabled {
    background: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    cursor: not-allowed;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 35px;
    color: #1a202c;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--event-primary), var(--event-secondary));
    border-radius: 10px;
}

.event-description {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    background: var(--glass-bg);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.04);
}

.event-description p {
    margin-bottom: 16px;
}

/* Horizontal Ticket Cards */
.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 150px;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--event-primary), var(--event-secondary));
    transition: width 0.3s;
}

.ticket-card:hover::before {
    width: 8px;
}

.ticket-card:hover {
    transform: translateX(6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.08);
}

/* ===== VIP TICKET STYLING ===== */
.ticket-card.vip {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 248, 230, 0.95));
    border: 3px solid var(--vip-gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
    animation: vipGlow 3s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.1) inset; }
    50% { box-shadow: 0 15px 50px rgba(255, 215, 0, 0.35), 0 0 0 1px rgba(255, 215, 0, 0.2) inset; }
}

.ticket-card.vip::before {
    width: 6px;
    background: linear-gradient(180deg, var(--vip-gold), var(--vip-gold-dark));
}

.ticket-card.vip:hover::before {
    width: 10px;
}

.ticket-card.vip:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2) inset;
}

/* VIP Badge - FIXED: posizionato in alto a sinistra */
.ticket-card.vip::after {
    content: 'VIP';
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--vip-gold), var(--vip-gold-dark));
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 5;
    animation: vipPulse 2s ease-in-out infinite;
}

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

/* VIP Crown Icon in Ticket Name */
.ticket-card.vip .ticket-name::before {
    content: '\f521';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: var(--vip-gold);
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    animation: crownFloat 3s ease-in-out infinite;
}

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

.ticket-card.vip .ticket-name {
    color: #1a202c;
    font-size: 28px;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.1);
}

.ticket-card.vip .ticket-price {
    background: linear-gradient(135deg, var(--vip-gold), var(--vip-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.ticket-card.vip .ticket-buy-btn {
    background: linear-gradient(135deg, var(--vip-gold), var(--vip-gold-dark));
    color: #000;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}

.ticket-card.vip .ticket-buy-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px) scale(1.08);
}
/* ===== END VIP STYLING ===== */

.ticket-card-left {
    flex: 1;
    padding: 32px 35px;
}

.ticket-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 32px 35px;
    gap: 14px;
    min-width: 270px;
}

.ticket-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a202c;
    letter-spacing: -0.02em;
}

.ticket-desc {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ticket-availability {
    font-size: 13px;
    color: #48bb78;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-availability.low {
    color: #ed8936;
    background: rgba(237, 137, 54, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ticket-availability.sold-out {
    color: #f56565;
    background: rgba(245, 101, 101, 0.1);
}

.ticket-price {
    font-size: 44px;
    font-weight: 900;
    color: var(--event-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 16px;
}

.ticket-price small {
    font-size: 14px;
    font-weight: 600;
    color: #a0aec0;
    display: block;
    margin-top: 5px;
    letter-spacing: 0;
}

/* Premium Buy Button */
.ticket-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--event-primary), var(--event-secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

.ticket-buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ticket-buy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ticket-buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.ticket-buy-btn.disabled {
    background: #cbd5e0;
    color: #a0aec0;
    cursor: not-allowed;
    pointer-events: none;
}

/* Add to Calendar Buttons */
.calendar-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid rgba(0,0,0,0.08);
    color: #4a5568;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.cal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #fff;
    border-color: var(--event-primary);
    color: var(--event-primary);
}

/* Social Sharing Buttons */
.social-share {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.x-twitter { background: #000000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* FAQ Accordion */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-question i {
    color: var(--event-primary);
    transition: transform 0.3s;
}

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

.faq-answer-content {
    padding: 0 30px 24px;
    color: #4a5568;
    line-height: 1.8;
}

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

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

/* Maps Section */
.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.map-box {
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Clickable Planimetry */
.map-box.planimetry {
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.map-box.planimetry::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.map-box.planimetry:hover::after {
    opacity: 1;
}

.map-box.planimetry::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.map-box.planimetry:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.map-label {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #1a202c;
    text-align: center;
    background: rgba(255,255,255,0.9);
}

/* Planimetry Modal */
.planimetry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.planimetry-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 75vw;
    height: 75vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0,0,0,0.5);
    animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255,0,0,0.9);
    transform: rotate(90deg) scale(1.1);
}

.modal-zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.zoom-btn {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.zoom-btn:hover {
    background: var(--event-primary);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.modal-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.modal-image-container.dragging {
    cursor: grabbing;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.zoom-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Organizer Info */
.organizer-info {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    padding: 40px;
    border-radius: 24px;
    margin-top: 60px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.organizer-header i {
    font-size: 52px;
    background: linear-gradient(135deg, var(--event-primary), var(--event-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.organizer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #4a5568;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s;
    background: rgba(0,0,0,0.02);
}

.contact-item:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--event-primary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    line-height: 1.5;
    flex: 1;
}

.contact-item a:hover {
    color: var(--event-primary);
}

/* Countdown */
.countdown {
    background: linear-gradient(135deg, var(--event-primary), var(--event-secondary));
    color: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    margin: 50px 0;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -60%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

.countdown-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 56px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.12);
    padding: 24px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s;
}

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

.countdown-item small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* Policies Footer */
.policies-footer {
    background: #f7fafc;
    padding: 40px 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.policies-content {
    max-width: 1100px;
    margin: 0 auto;
}

.policy-item {
    margin-bottom: 30px;
}

.policy-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.policy-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .ticket-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ticket-card.vip::after {
        top: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .ticket-card-right {
        align-items: center;
        min-width: auto;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    
    .maps-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 90vw;
        height: 90vh;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 40px;
    }
    
    .event-subtitle {
        font-size: 18px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .countdown-timer {
        font-size: 36px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 18px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .organizer-info {
        padding: 30px;
    }
    
    .ticket-card-left,
    .ticket-card-right {
        padding: 24px;
    }
    
    .ticket-card.vip .ticket-name::before {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .ticket-card.vip .ticket-name {
        font-size: 24px;
    }
    
    .ticket-price {
        font-size: 36px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .calendar-buttons,
    .social-share {
        justify-content: center;
    }
    
    .modal-zoom-controls {
        top: 10px;
        left: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .zoom-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* FIX: Contact info responsive on mobile */
    .contact-item {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .contact-item a {
        font-size: 14px;
        word-break: break-word;
    }
}
