/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/lubricants-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 250px 0 150px;
    text-align: center;
    color: #fff;
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Content Section */
.faq-content {
    background-color: #fff;
    padding: 100px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #b9a089;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: #b9a089;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: #a08974;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-cta p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #b9a089;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #a08974;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero {
        padding: 200px 0 100px;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-cta {
        padding: 40px 20px;
    }

    .faq-cta h2 {
        font-size: 1.8rem;
    }
}

