/* --- index.css --- */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btns .btn-outline {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.hero-btns .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Stats Section */
section.stats-section {
    padding: 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Home About Snippet */
.about-section {
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.home-about {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex: 1;
    min-width: 400px;
}

.about-content {
    flex: 1.2;
    min-width: 400px;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
    z-index: 1;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    border-radius: 20px;
    z-index: -1;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: block;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: rotate(0deg);
}

.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(193, 39, 45, 0.3);
    z-index: 2;
}

.about-badge h4 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.about-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 3.2rem;
    margin: 15px 0 25px;
    letter-spacing: -0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-item span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: var(--gray-100);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Testimonial Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card i.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

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

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

/* Home CTA Section */
.home-cta {
    background: linear-gradient(rgba(26, 59, 104, 0.85), rgba(26, 59, 104, 0.85)), url('../images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.home-cta h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.home-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.cta-btns .btn-white:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .home-about {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .home-about {
        flex-direction: column;
        text-align: center;
        gap: 80px;
    }

    .about-image-wrapper,
    .about-content {
        min-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .home-cta h2 {
        font-size: 2.2rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}