/* ============================================
   Ace Flight Center - Resources Page Styles
   ============================================ */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.resource-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-bottom-color: var(--color-red);
}

.resource-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(218,0,19,0.1) 0%, rgba(0,28,66,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-base);
}

.resource-card:hover .resource-card-icon {
    background: var(--color-red);
}

.resource-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-navy);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition-base);
}

.resource-card:hover .resource-card-icon svg {
    stroke: var(--color-white);
}

.resource-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.resource-card p {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

/* FAQ Section */
.faq-section {
    background: var(--color-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: var(--radius-full);
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: var(--text-lg);
    color: var(--color-navy);
}

.faq-item.active .faq-question .faq-icon {
    background: var(--color-red);
    color: var(--color-white);
}

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

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-gray);
    line-height: 1.8;
}

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

@media (max-width: 1024px) {
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .resources-grid { grid-template-columns: 1fr; }
}
