.venue-section {
    padding: 50px 0;
}

/* Subtle architectural grid pattern */
.venue-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(22, 47, 102, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 47, 102, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}


/* ===== STATS BAR ===== */
.venue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.venue-stat {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    animation: fadeSlideUp 0.7s var(--transition-smooth) both;
    transition: all 0.4s var(--transition-smooth);
}

    .venue-stat:nth-child(1) {
        animation-delay: 0.1s;
    }

    .venue-stat:nth-child(2) {
        animation-delay: 0.2s;
    }

    .venue-stat:nth-child(3) {
        animation-delay: 0.3s;
    }

    .venue-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .venue-stat:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px -12px rgba(22, 47, 102, 0.1);
    }

        .venue-stat:hover::before {
            opacity: 1;
        }

.venue-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3a6f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(22, 47, 102, 0.2);
}

.venue-stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

    .venue-stat-number span {
        font-size: 0.5em;
        color: var(--primary-orange);
        font-weight: 700;
    }

.venue-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== MAIN CONTENT GRID ===== */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left: Content Card */
.venue-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--light-gray);
    position: relative;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.3s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

    .venue-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green), var(--primary-blue));
        border-radius: 20px 20px 0 0;
    }

    .venue-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .venue-content p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 16px;
    }

        .venue-content p:last-child {
            margin-bottom: 0;
        }

    .venue-content strong {
        color: var(--primary-blue);
        font-weight: 700;
    }

/* Right: Features */
.venue-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    animation: fadeSlideUp 0.6s var(--transition-smooth) both;
    transition: all 0.3s var(--transition-smooth);
}

    .venue-feature:nth-child(1) {
        animation-delay: 0.4s;
    }

    .venue-feature:nth-child(2) {
        animation-delay: 0.5s;
    }

    .venue-feature:nth-child(3) {
        animation-delay: 0.6s;
    }

    .venue-feature:nth-child(4) {
        animation-delay: 0.7s;
    }

    .venue-feature:nth-child(5) {
        animation-delay: 0.8s;
    }

    .venue-feature:nth-child(6) {
        animation-delay: 0.9s;
    }

    .venue-feature:hover {
        transform: translateX(6px);
        border-color: rgba(22, 47, 102, 0.15);
        box-shadow: 0 8px 24px -8px rgba(22, 47, 102, 0.1);
    }

.venue-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(22, 47, 102, 0.08), rgba(22, 47, 102, 0.03));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.venue-feature-text {
    font-size: 0.92rem;
    color: var(--dark-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* ===== LOCATION HIGHLIGHT ===== */
.venue-location {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3a6f);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 1s both;
}

    .venue-location::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
        border-radius: 50%;
    }

.venue-location-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.venue-location-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

    .venue-location-text strong {
        color: var(--white);
        font-weight: 700;
    }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .venue-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .venue-content {
        padding: 28px;
    }

    .venue-location {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .venue-section {
        padding: 60px 0;
    }

    .venue-content {
        padding: 24px;
    }

    .venue-feature {
        padding: 16px 18px;
    }
}
