/* FAQs Page Specific Styles */

/* Hero Section */
.faqs-hero {
    padding-left: 20px;
    padding-right: 20px;
    /* All vertical spacing handled by .hero-fullbleed in style.css */
}

.faqs-hero h1 {
    font-size: clamp(38px, 7vw, 60px);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 20px);
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Section */
.faqs-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: var(--dark-grey);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 140, 188, 0.04);
}

.faq-question span:first-child {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), #00a8d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

/* Active state - rotate icon */
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--accent-tan), #d4a24a);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
    opacity: 0.85;
}

/* Still Have Questions Section */
.still-questions {
    text-align: center;
    margin-top: 70px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-blue), #0097b8);
    border-radius: 20px;
    color: var(--white);
}

.still-questions h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 15px;
}

.still-questions p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.still-questions .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.still-questions .btn-primary:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    /* hero padding handled by .hero-fullbleed in style.css */

    .faqs-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .faq-question {
        padding: 20px 22px;
    }

    .faq-answer p {
        padding: 0 22px 20px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon svg {
        width: 14px;
        height: 14px;
    }

    .still-questions {
        padding: 40px 25px;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 18px;
        gap: 15px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 15px;
    }

    .still-questions {
        border-radius: 16px;
    }
}