/* --- Venues Landing Page Specialized Styles --- */

/* Hero Background System */
.venue-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.venue-hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.3) blur(2px);
}

.venue-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(2, 6, 23, 0.5) 0%, 
        rgba(2, 6, 23, 0.8) 70%, 
        rgba(2, 6, 23, 1) 100%
    );
}

/* Glass Panels & Grid */
.glass-module {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.support-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(99, 102, 241, 0.1);
}

.support-card .card-icon i {
    transition: transform 0.4s ease;
}

.support-card:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* FAQ Accordion Polish */
.accordion-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 0, 0, 0.15);
}

.accordion-content p {
    padding: 0 2rem 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-item.is-open {
    border-color: var(--combat-indigo);
    background: rgba(15, 23, 42, 0.6);
}

.accordion-item.is-open .accordion-content {
    max-height: 300px;
}

.accordion-item.is-open .accordion-trigger i {
    transform: rotate(45deg);
    color: var(--combat-indigo);
}

/* Animation Reveal Utility */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Shadow Glow */
.shadow-glow {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.25);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .combat-heading { font-size: 4rem !important; }
}

@media (max-width: 768px) {
    .combat-heading { font-size: 3.2rem !important; }
    .support-card { padding: 2rem !important; border-radius: 2rem !important; }
    .accordion-trigger { padding: 1.25rem 1.5rem; font-size: 0.8rem; }
}