/* ================================
   FAQ PAGE STYLES - SUNSET PARK SOLAR
   ================================ */

.faq-hero-section {
    position: relative;
    min-height: clamp(300px, 50vh, 500px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.7) 0%, rgba(255, 143, 0, 0.6) 30%, rgba(255, 160, 0, 0.5) 70%, rgba(255, 171, 64, 0.4) 100%);
    z-index: 1;
}

.faq-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.faq-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: clamp(300px, 50vh, 500px);
    padding: clamp(3rem, 8vw, 6rem) 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .faq-hero-container {
        padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 20px);
    }
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    color: white;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.faq-content-section {
    background: white;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.faq-content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .faq-content-container {
        padding: 0 clamp(1rem, 5vw, 20px);
    }
}

.faq-contact {
    margin-bottom: clamp(3rem, 8vw, 4rem);
    text-align: left;
}

.faq-contact-text {
    color: var(--color-text);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.contact-email {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover,
.contact-email:focus {
    text-decoration: underline;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    color: var(--color-secondary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.faq-answer {
    margin: 0;
}

.faq-answer p {
    color: var(--color-text);
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.footer-faq {
    background: var(--color-secondary);
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
}

.footer-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .footer-faq-container {
        padding: 0 clamp(1rem, 5vw, 20px);
    }
}

.footer-title {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-faq .footer-email a {
    color: white;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 400;
    text-decoration: none;
}

.footer-faq .footer-email a:hover,
.footer-faq .footer-email a:focus {
    text-decoration: underline;
}

