/* === ABOUT PAGE MODERN 2025 STYLES === */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    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;
}

.badge-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(21, 106, 47, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

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

.badge-icon {
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 106, 47, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(21, 106, 47, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(21, 106, 47, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #156a2f;
    margin: 0 auto 1rem;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Icons */
.section-icon {
    display: inline-block;
    margin-right: 0.75rem;
    color: #156a2f;
    animation: iconBounce 2s ease-in-out infinite;
}

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

/* Why Choose Cards */
.why-choose-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #156a2f, #1a8040, #f0c419);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(21, 106, 47, 0.15);
    border-color: rgba(21, 106, 47, 0.2);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    transition: all 0.5s ease;
    position: relative;
}

.why-choose-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 26px;
    border: 3px solid currentColor;
    opacity: 0;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Certification Badges */
.certification-badge {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(21, 106, 47, 0.1);
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certification-badge:hover::before {
    opacity: 1;
}

.certification-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(21, 106, 47, 0.15);
    border-color: #156a2f;
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(21, 106, 47, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #156a2f;
    margin: 0 auto 1rem;
    transition: transform 0.5s ease;
}

.certification-badge:hover .cert-icon {
    transform: rotate(360deg) scale(1.15);
}

.cert-icon i {
    animation: checkPulse 2s ease-in-out infinite;
}

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

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #156a2f, #1a8040, #f0c419);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(21, 106, 47, 0.3);
    z-index: 10;
    animation: markerPulse 3s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: calc(50% - 60px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 50px rgba(21, 106, 47, 0.15);
    border-color: rgba(21, 106, 47, 0.2);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(10px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #156a2f, transparent);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    transform: translateY(-50%) rotate(180deg);
}

/* CTA Section Modern */
.cta-section {
    background: linear-gradient(135deg, #156a2f 0%, #1a8040 50%, #0f4d21 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 196, 25, 0.1) 0%, transparent 50%);
    animation: ctaBgPulse 8s ease-in-out infinite;
}

@keyframes ctaBgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.cta-section::after {
    content: '';
    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;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: white;
    color: #156a2f;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    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 15px 50px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 106, 47, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #156a2f;
}

.btn-cta-primary .btn-icon {
    font-size: 1.3rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: #156a2f;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover .btn-icon {
    transform: translateX(5px);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #f0c419;
    animation: featureIconPulse 2s ease-in-out infinite;
}

@keyframes featureIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 196, 25, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(240, 196, 25, 0); }
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.animate-slide-in-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

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

.animate-slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;
}

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

/* Animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-content:hover {
        transform: translateX(10px) !important;
    }
}

@media (max-width: 767px) {
    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

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

    .cta-section .lead {
        font-size: 1.05rem;
    }

    .badge-brand {
        font-size: 0.85rem;
    }
}

