/* === HOME PAGE MODERN 2025 STYLES === */

/* About Short Section Modern */
.about-short-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, #156a2f 0px, #156a2f 2px, transparent 2px, transparent 10px),
        repeating-linear-gradient(-45deg, #156a2f 0px, #156a2f 2px, transparent 2px, transparent 10px);
    pointer-events: none;
}

.about-content-modern {
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-title-modern {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-text-modern {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2.5rem;
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item-modern {
    text-align: center;
    padding: 1.5rem;
    background: rgba(21, 106, 47, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    background: rgba(21, 106, 47, 0.1);
    transform: translateY(-5px);
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 900;
    color: #156a2f;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
}

.btn-about-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
}

.btn-about-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(21, 106, 47, 0.4);
    color: white;
}

.btn-about-modern i {
    transition: transform 0.3s ease;
}

.btn-about-modern:hover i {
    transform: translateX(5px);
}

/* About Features Modern */
.about-features-modern {
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.3s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Benefits Section Background */
.benefits-section-bg {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(21, 106, 47, 0.15);
}

.feature-icon-box-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.feature-item-modern:hover .feature-icon-box-modern {
    transform: rotateY(360deg);
}

.feature-content-modern {
    flex: 1;
}

.feature-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.25rem;
}

.feature-desc-modern {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.feature-check-modern {
    width: 40px;
    height: 40px;
    background: rgba(21, 106, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #156a2f;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Testimonials Section Modern */
.testimonials-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #156a2f 0%, #1a8040 100%);
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 30%, white 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, white 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

.testimonials-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
}

.rating-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-top: 1rem;
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.rating-stars-large i {
    color: #f0c419;
    font-size: 1.75rem;
    animation: starPulse 2s ease-in-out infinite;
}

.rating-stars-large i:nth-child(1) { animation-delay: 0s; }
.rating-stars-large i:nth-child(2) { animation-delay: 0.1s; }
.rating-stars-large i:nth-child(3) { animation-delay: 0.2s; }
.rating-stars-large i:nth-child(4) { animation-delay: 0.3s; }
.rating-stars-large i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.rating-reviews {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Testimonial Card Modern */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: cardFadeIn 0.8s ease-out forwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-icon-modern {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(21, 106, 47, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #156a2f;
    font-size: 1.25rem;
}

.testimonial-stars-modern {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-stars-modern i {
    color: #f0c419;
    font-size: 1.1rem;
}

.testimonial-text-modern {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(21, 106, 47, 0.1);
}

.author-avatar-modern {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info-modern {
    flex: 1;
}

.author-name-modern {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.25rem;
}

.author-time-modern {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-shine-modern {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.testimonial-card-modern:hover .card-shine-modern {
    left: 100%;
}

.google-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    color: #333333;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.google-trust-badge i {
    font-size: 1.75rem;
    color: #4285f4;
}

/* Testimonial Carousel Controls */
.testimonial-control-prev,
.testimonial-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-control-prev {
    left: -30px;
}

.testimonial-control-next {
    right: -30px;
}

.testimonial-control-prev:hover,
.testimonial-control-next:hover {
    opacity: 1;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #156a2f;
    font-size: 1.5rem;
}

.testimonial-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.testimonial-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    margin: 0 6px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

.testimonial-indicators button.active {
    background: white !important;
    width: 14px !important;
    height: 14px !important;
}

.testimonial-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .testimonial-control-prev,
    .testimonial-control-next {
        width: 50px;
        height: 50px;
    }

    .testimonial-control-prev {
        left: 10px;
    }

    .testimonial-control-next {
        right: 10px;
    }

    .carousel-control-icon-modern {
        font-size: 1.25rem;
    }
}

/* CTA Section Final - Modern */
.cta-section-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
}

.cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(21, 106, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 196, 25, 0.05) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #156a2f;
    border-radius: 50%;
    animation: floatParticle 6s infinite ease-in-out;
}

.cta-card-modern {
    background: white;
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(21, 106, 47, 0.1);
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 3px solid #156a2f;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.cta-title-final {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-subtitle-final {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle-final strong {
    color: #156a2f;
}

.cta-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-btn-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-btn-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-btn-phone:hover { border-color: #28a745; }
.cta-btn-email:hover { border-color: #007bff; }
.cta-btn-form:hover { border-color: #6610f2; }

.btn-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.cta-btn-phone .btn-icon-wrapper { background: linear-gradient(135deg, #28a745, #20c997); }
.cta-btn-email .btn-icon-wrapper { background: linear-gradient(135deg, #007bff, #6610f2); }
.cta-btn-form .btn-icon-wrapper { background: linear-gradient(135deg, #6610f2, #e83e8c); }

.cta-btn-modern:hover .btn-icon-wrapper {
    transform: rotateY(360deg);
}

.btn-text-wrapper {
    flex: 1;
    text-align: left;
}

.btn-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.btn-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
}

.cta-features-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-weight: 600;
}

.cta-feature-item i {
    color: #156a2f;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title-modern,
    .testimonials-title,
    .cta-title-final {
        font-size: 2rem;
    }

    .about-stats-modern {
        grid-template-columns: 1fr;
    }

    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }

    .cta-card-modern {
        padding: 2.5rem 1.5rem;
    }

    .rating-badge-modern {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .cta-features-row {
        flex-direction: column;
        gap: 1rem;
    }
}

