/* ============================================================
   SUPPORT PAGE — Styles
   ============================================================ */

/* --- PAGE HERO --- */
.page-hero {
    padding: calc(var(--nav-height) + 6rem) clamp(1.5rem, 4vw, 4rem) 4rem;
    text-align: center;
}

.page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .section-label {
    justify-content: center;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* --- CONTACT GRID --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-smooth);
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.contact-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    transition: color 0.3s ease;
}

a.contact-link:hover {
    color: var(--text-primary);
}

/* --- FAQ --- */
.faq-header {
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-tertiary);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- CTA (shared) --- */
.cta-section {
    padding: clamp(6rem, 14vh, 12rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
