/* =====================================================
   FAQ — Taxi Transfers Aeropuertos
   ===================================================== */

.tt-faq {
    padding: var(--tt-section) 0;
    background: var(--tt-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tt-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: flex-start;
}

.tt-faq__copy {
    position: sticky;
    top: calc(var(--tt-header) + 40px);
}

.tt-faq__copy h2 {
    margin: 12px 0 20px;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.tt-faq__copy p {
    color: var(--tt-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}

/* Accordion */
.tt-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tt-faq__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--tt-radius-lg);
    overflow: hidden;
    transition: background var(--tt-transition), border-color var(--tt-transition);
}

.tt-faq__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 192, 0, 0.2);
}

.tt-faq__item[open] {
    background: rgba(255, 192, 0, 0.05);
    border-color: rgba(255, 192, 0, 0.3);
}

.tt-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    color: var(--tt-text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Hide default marker */
}

/* Hide default marker in webkit */
.tt-faq__question::-webkit-details-marker {
    display: none;
}

.tt-faq__icon {
    color: var(--tt-primary);
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

.tt-faq__item[open] .tt-faq__icon {
    transform: rotate(180deg);
}

.tt-faq__answer {
    padding: 0 28px 28px;
    color: var(--tt-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tt-faq__answer p {
    margin: 0;
    animation: fadeInDown 0.3s ease;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
    .tt-faq__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tt-faq__copy {
        position: static;
    }
}
