/* FAQ Page Specific Styles */

.section-padding {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #fffbf5 0%, #fff 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

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

.hero-content h1 {
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
}

/* Info Grid Section */
.info-grid-section .section-title {
    margin-bottom: var(--space-8);
    position: relative;
    display: inline-block;
    width: 100%;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    background-color: rgba(245, 134, 52, 0.1);
    padding: var(--space-3);
    border-radius: 50%;
    margin-bottom: var(--space-4);
    display: inline-flex;
}

.text-link {
    margin-top: auto;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* Feature Sections */
.bg-surface {
    background-color: var(--color-surface);
}

.md-flex-row {
    flex-direction: row;
}

.md-flex-row-reverse {
    flex-direction: row-reverse;
}

.md-w-50 {
    width: 100%;
}

@media (min-width: 768px) {
    .md-flex-row {
        flex-direction: row;
    }
    .md-flex-row-reverse {
        flex-direction: row-reverse;
    }
    .md-w-50 {
        width: 50%;
    }
}

.feature-content h2 {
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

/* Support Section */
.support-card {
    background: linear-gradient(to right, #fdfbf7, #fff);
    border: 1px solid var(--color-primary);
}

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

.md-w-60 {
    width: 100%;
}

.md-w-40 {
    width: 100%;
}

@media (min-width: 768px) {
    .md-w-60 { width: 60%; }
    .md-w-40 { width: 40%; }
}

/* Utilities */
.gap-8 {
    gap: var(--space-8);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.radius-md {
    border-radius: var(--radius-md);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}