/*
 * GWWA FAQ Engine Styles
 * Layout: 2-Column (70/30) | Accordion + Sidebar Card
 * Theme: Gomez Gold & Charcoal Dark
 */

.gwwa-faq-section {
    max-width: 1340px;
    margin: 60px auto;
    padding: 0 20px;
    color: #FFFFFF;
    text-align: left; /* FAQs are better left-aligned for readability */
}

.gwwa-faq-container {
    display: flex;
    flex-direction: column; /* Mobile-First: Sidebar drops below */
    gap: 40px;
}

@media (min-width: 992px) {
    .gwwa-faq-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .gwwa-faq-main {
        flex: 2.2; /* ~70% */
    }
    
    .gwwa-faq-sidebar {
        flex: 1; /* ~30% */
        position: sticky;
        top: 100px;
    }
}

/* ── FAQ MAIN content ── */
.gwwa-faq-header {
    margin-bottom: 40px;
}

.gwwa-faq-title {
    font-family: 'Hepta Slab', serif;
    font-size: 38px;
    color: var(--gwwa-gold, #C4A454);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gwwa-faq-intro {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ── ACCORDION ── */
.gwwa-accordion {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gwwa-accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gwwa-accordion-trigger {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important; /* Force transparency over Elementor */
    border: none !important;
    box-shadow: none !important; /* Kill default button shadows */
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    outline: none !important;
}

.gwwa-accordion-trigger:hover .gwwa-accordion-question {
    color: var(--gwwa-gold, #C4A454) !important;
}

.gwwa-accordion-question {
    font-family: 'Hepta Slab', serif;
    font-size: 20px;
    color: #FFFFFF !important;
    font-weight: 500;
}

.gwwa-accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gwwa-accordion-icon::before,
.gwwa-accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--gwwa-gold, #C4A454);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gwwa-accordion-icon::before {
    width: 14px;
    height: 2px;
}

.gwwa-accordion-icon::after {
    width: 2px;
    height: 14px;
}

.gwwa-accordion-trigger[aria-expanded="true"] .gwwa-accordion-icon {
    transform: rotate(45deg);
}

.gwwa-accordion-content {
    overflow: hidden;
    transition: height 0.3s ease;
}

.gwwa-accordion-inner {
    padding-bottom: 24px;
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}
.gwwa-accordion-inner a {
    color: var(--gwwa-gold, #C4A454) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.gwwa-accordion-inner a:hover {
    color: #FFFFFF !important;
}

/* ── SIDEBAR CARD ── */
.gwwa-faq-sidebar__card {
    background: #261B15; /* Dark Brown Gomez Aesthetic */
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(196, 164, 84, 0.2); /* Subtle Gold Edge */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gwwa-faq-sidebar__title {
    font-family: 'Hepta Slab', serif;
    font-size: 24px;
    color: var(--gwwa-gold, #C4A454);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gwwa-faq-sidebar__blurb {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* REUSE Existing Button Styles Or Standardize One */
.gwwa-faq-sidebar__card .gwwa-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gwwa-gold, #C4A454); 
    color: #000000;
    text-decoration: none;
    font-family: 'Hepta Slab', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.gwwa-faq-sidebar__card .gwwa-btn:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
