/* ========================================
   DESKTOP STYLES (Full View)
   ======================================== */

/* Container System */
.faqs-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-family: "Poppins", sans-serif;
}

.faqs-page-header {
    background: linear-gradient(rgba(22, 163, 74, 0.8), rgba(22, 163, 74, 0.6)), url(../img/bannerpic5.webp) center center no-repeat;
    background-size: cover;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.faqs-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.faqs-page-header h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faqs-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Backgrounds */
.faqs-bg-light {
    background-color: #f8fafc;
}

.faqs-bg-primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

/* Section Headers */
.faqs-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faqs-section-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #16a34a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faqs-section-header h2 i {
    color: #4ade80;
    margin-bottom: 1rem;
    display: block;
}

.faqs-section-header p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* FAQ Item Styling */
.faq-item {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #16a34a;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: #16a34a;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* FAQ Question Styling */
.faq-question {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: none;
    list-style: none;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.faq-question:hover i {
    color: white;
    transform: scale(1.1);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question i {
    color: #16a34a;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* FAQ Answer Styling */
.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    animation: fadeInDown 0.3s ease;
}

.faq-answer p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.faq-answer strong {
    color: #16a34a;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Call to Action Section */  
.faqs-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.faqs-cta h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.faqs-cta p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Buttons */
.faqs-btn {
    display: inline-block;
    background: white;
    color: #16a34a;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.faqs-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
    text-decoration: none;
}

.faqs-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.faqs-btn-outline:hover {
    background: white;
    color: #16a34a;
}

/* Spacing Utilities */
.faqs-mt-4 {
    margin-top: 2rem;
}

.faqs-mb-3 {
    margin-bottom: 1.5rem;
}

.faqs-mb-5 {
    margin-bottom: 3rem;
}

/* ========================================
   MOBILE STYLES (Mobile View)
   ======================================== */

@media (max-width: 768px) {
    /* Container System */
    .faqs-section-container {
        padding: 0 1rem;
    }
    
    .faqs-page-header {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    
    .faqs-header-container {
        padding: 0 1rem;
    }
    
    .faqs-page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .faqs-content-container {
        padding: 2rem 1rem;
    }
    
    /* Section Headers */
    .faqs-section-header {
        margin-bottom: 2rem;
    }
    
    .faqs-section-header h2 {
        font-size: 1.5rem;
    }
    
    .faqs-section-header p {
        font-size: 1rem;
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem; 
    }
    
    /* FAQ Items */
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-question i {
        font-size: 1.1rem;
    }
    
    /* Call to Action */
    .faqs-cta {
        padding: 3rem 1rem;
    }
    
    .faqs-cta h3 {
        font-size: 1.6rem;
    }
    
    .faqs-cta p {
        font-size: 1rem;
    }
    
    .faqs-btn {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    /* Spacing Adjustments */
    .faqs-mt-4 {
        margin-top: 1.5rem;
    }
    
    .faqs-mb-5 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .faqs-page-header h1 {
        font-size: 1.5rem;
    }
    
    .faqs-section-header h2 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}