/* ============================================================
   FAQ.CSS — Section 8 (Creamy Gradient Background)
   Dr. Sk. Sarfaraz Ahmed — Family Physician, Naturopath & Nutrition Specialist
   ============================================================ */

.faq-section {
    background: linear-gradient(135deg, #F8F6F1 0%, #F2EEE8 50%, #E8E2D7 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(109, 138, 99, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(124, 154, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Layout ─────────────────────────────────────────────── */

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Left Header Block ──────────────────────────────────── */

.faq-left-block {
    position: sticky;
    top: 120px;
}

.faq-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6D8A63;
    margin-bottom: 16px;
}

.faq-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: #6D8A63;
    border-radius: 2px;
}

.faq-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: #2F3A2F;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-heading em {
    color: #6D8A63;
    font-style: italic;
}

.faq-intro-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    color: #5A6B5A;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Contact CTA box in left col */
.faq-cta-box {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1.5px solid rgba(109, 138, 99, 0.16);
    box-shadow: 0 12px 36px rgba(47, 58, 47, 0.05);
}

.faq-cta-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F3A2F;
}

.faq-cta-box-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: #5A6B5A;
    line-height: 1.7;
}

.faq-cta-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #6D8A63;
    color: #FFFFFF !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.faq-cta-box-btn:hover {
    background-color: #4D6845;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(109, 138, 99, 0.35);
}

/* ── Right Accordion ────────────────────────────────────── */

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Accordion Item ─────────────────────────────────────── */

.faq-accordion-item {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1.5px solid #E6E6E6;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(47, 58, 47, 0.04);
}

.faq-accordion-item:hover {
    border-color: #6D8A63;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(109, 138, 99, 0.12);
}

.faq-accordion-item.faq-item-open {
    border-color: #6D8A63;
    background: #FFFFFF;
    box-shadow: 0 12px 34px rgba(109, 138, 99, 0.16);
}

/* Trigger button */
.faq-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.25s ease;
}

.faq-accordion-trigger:hover {
    background-color: #F8F6F1;
}

.faq-item-open .faq-accordion-trigger {
    background-color: #F8F6F1;
}

/* Question row */
.faq-trigger-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-trigger-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #6D8A63;
    width: 24px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.faq-item-open .faq-trigger-number {
    color: #4D6845;
}

.faq-trigger-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: #2F3A2F;
    line-height: 1.4;
}

/* Plus/Minus Icon */
.faq-trigger-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(109, 138, 99, 0.2);
    background: #DDE6D5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item-open .faq-trigger-icon {
    background: #6D8A63;
    border-color: #6D8A63;
    transform: rotate(180deg);
}

.faq-trigger-icon svg {
    width: 14px;
    height: 14px;
    stroke: #6D8A63;
    fill: none;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

.faq-item-open .faq-trigger-icon svg {
    stroke: #FFFFFF;
}

/* Body / Answer */
.faq-accordion-body {
    height: 0;
    overflow: hidden;
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-accordion-body-inner {
    padding: 0 28px 28px 68px;
    background-color: transparent;
}

.faq-accordion-answer {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.96rem;
    color: #5A6B5A;
    line-height: 1.8;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 991px) {
    .faq-section { padding: 80px 0; }
    .faq-inner { grid-template-columns: 1fr; gap: 48px; }
    .faq-left-block { position: static; }
}

@media (max-width: 576px) {
    .faq-accordion-trigger { padding: 20px 20px; }
    .faq-accordion-body-inner { padding: 0 20px 20px 20px; }
}
