/* ===== Section ===== */
.faq-section {
    background: var(--cream-light);
    padding: 80px 20px;
    text-align: center;
}

.faq-section .sub__heading {
    justify-content: center;
}

/* ===== Header ===== */
.faq-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--dark-new);
    margin-top: 0px;
    margin-bottom: 35px;
}

.faq-title span {
    color: #6f8f97;
    font-style: italic;
}

.faq-desc {
    font-size: 15px;
    color: #2d3436a6;
    max-width: 600px;
    margin: 15px auto 25px;
    line-height: 1.6;
}

.faq-subtag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 20px;
    text-align: left;
    margin-top: 40px;
}

.faq-subtag+.faq-desc {
    text-align: left;
    margin: 0 0 30px;
    max-width: 100%;
}

/* ===== FAQ List ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item */
.faq-item {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background: transparent;
    text-align: left;
    transition: 0.3s;
}

/* Active (highlighted) */
.faq-item.active {
    border-color: var(--yellow);
    background: transparent;
}

/* Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
}

.faq-question p {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-new);
    margin: 0 15px;
}

/* Number */
.faq-number {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-serif);
}

/* Icon */
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef2f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Active icon */
.faq-item.active .faq-icon {
    background: #d4af37;
    color: #000;
}

/* Answer */
.faq-answer {
    padding: 0 35px 14px 52px;
    font-size: 14.5px;
    color: #2d3436bf;
    display: none;
}

/* Show active */
.faq-item.active .faq-answer {
    display: block;
}

/* ===== CTA Box ===== */
.faq-cta {
    margin-top: 40px;
    background: #F3F4F1;
    padding: 50px 25px;
    border-radius: 10px;
}

.faq-cta h3 {
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 0px;
}


.faq-cta p {
    font-size: 13px;
    color: #2d3436a6;
}

/* Buttons */
.faq-buttons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.btn-contact {
    background: #6f8f97;
    color: var(--cream-light);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
}

.btn-price {
    background: var(--yellow);
    color: var(--dark-new);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0px;
    }

    .faq-title,
    .faq-title span {
        font-size: 32px;
    }

    .faq-cta{
        padding: 50px 15px;
    }
}

@media (max-width: 600px){
    .faq-question p{
        font-size: 14px;
    }
}

.faq-buttons a {
    text-decoration: none;
}