/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Import base styles */
@import url('styles.css');

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.05) 0%, rgba(30, 111, 217, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.03) 0%, rgba(30, 111, 217, 0.03) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.about-hero .hero-description {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: var(--spacing-xl) auto 0;
}

@media (min-width: 768px) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
    }
}

.about-hero .stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--neutral-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-hero .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.about-hero .stat-label {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    font-weight: 500;
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.overview-section {
    padding: var(--spacing-xl) 0;
    background: var(--pure-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: var(--spacing-xl);
    }
}

.overview-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.overview-text p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: var(--gradient-subtle);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.feature:hover i {
    background: var(--gradient-primary);
    color: var(--pure-white);
    transform: rotate(5deg);
}

.feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    font-size: 1rem;
    color: var(--neutral-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.overview-visual .visual-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.visual-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    position: relative;
}

.timeline-year {
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: var(--spacing-sm);
}

.timeline-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-card, .vision-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.mission-card h3, .vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.mission-card p, .vision-card p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: var(--spacing-lg);
}

.mission-list li, .vision-list li {
    font-size: 1rem;
    color: var(--neutral-dark);
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.mission-list li i, .vision-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1rem;
}

/* ===== VALUES & APPROACH SECTION ===== */
.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--pure-white);
}

.values-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 992px) {
    .values-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: var(--spacing-xl);
    }
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.value-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--gradient-subtle);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-border);
    transition: all var(--transition-normal);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--pure-white);
}

.value-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
}

.value-content p {
    font-size: 1rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

.approach-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.approach-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.approach-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .trust-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.trust-quote {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.trust-quote blockquote p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.trust-quote cite {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: normal;
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 480px) {
    .trust-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-point {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--neutral-border);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-point i {
    font-size: 2rem;
    color: var(--primary-blue);
    background: var(--gradient-subtle);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto var(--spacing-md);
}

.trust-point h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.trust-point p {
    font-size: 0.9375rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: var(--pure-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-content .btn-primary {
    background: var(--pure-white);
    color: var(--primary-blue);
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-content .btn-primary:hover {
    background: var(--neutral-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-note {
    font-size: 0.875rem;
    margin-top: var(--spacing-lg);
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--neutral-dark);
    color: var(--pure-white);
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--pure-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-blue);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--transition-normal), transform 0.8s var(--transition-normal);
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.about-hero .stat-item:nth-child(1) { transition-delay: 0.1s; }
.about-hero .stat-item:nth-child(2) { transition-delay: 0.2s; }
.about-hero .stat-item:nth-child(3) { transition-delay: 0.3s; }
.about-hero .stat-item:nth-child(4) { transition-delay: 0.4s; }

.value-item:nth-child(1) { transition-delay: 0.1s; }
.value-item:nth-child(2) { transition-delay: 0.2s; }
.value-item:nth-child(3) { transition-delay: 0.3s; }
.value-item:nth-child(4) { transition-delay: 0.4s; }

.trust-point:nth-child(1) { transition-delay: 0.1s; }
.trust-point:nth-child(2) { transition-delay: 0.2s; }
.trust-point:nth-child(3) { transition-delay: 0.3s; }
.trust-point:nth-child(4) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .about-hero .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.5rem;
    }
    
    .overview-text p {
        font-size: 1rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.25rem;
    }
    
    .mission-card p, .vision-card p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-md);
    }
    
    .visual-card, .mission-card, .vision-card, .approach-card, .trust-quote, .trust-point {
        padding: var(--spacing-lg);
    }
    
    .feature i, .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .trust-point i {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        gap: var(--spacing-lg);
    }
}

/* Print Styles */
@media print {
    .site-header, .site-footer, .cta-section, .hero-cta {
        display: none;
    }
    
    body {
        padding-top: 0;
        background: white;
        color: black;
    }
    
    .about-hero, .overview-section, .mission-section, .values-section, .trust-section {
        padding: 20px 0;
        background: white;
    }
    
    .about-hero::before, .values-section::before {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .about-hero .stat-item:hover,
    .mission-card:hover,
    .vision-card:hover,
    .value-item:hover,
    .trust-point:hover {
        transform: none;
    }
}

/* ===== ENHANCED ANIMATIONS FOR ABOUT PAGE ===== */

/* ===== HERO SECTION ANIMATIONS ===== */
.about-hero .hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: titleUnderline 1.2s ease-out 1s forwards;
    border-radius: 2px;
}

.about-hero .hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
    opacity: 0;
}

.about-hero .hero-description {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s both;
    opacity: 0;
}

.about-hero .hero-stats {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s both;
    opacity: 0;
}

@keyframes titleUnderline {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

.about-hero .stat-item {
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.about-hero .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.about-hero .stat-item:hover::before {
    left: 100%;
}

.about-hero .stat-item:nth-child(1) { animation-delay: 0.9s; }
.about-hero .stat-item:nth-child(2) { animation-delay: 1.0s; }
.about-hero .stat-item:nth-child(3) { animation-delay: 1.1s; }
.about-hero .stat-item:nth-child(4) { animation-delay: 1.2s; }

.about-hero .stat-number {
    position: relative;
    display: inline-block;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 168, 120, 0);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(0, 168, 120, 0.3);
    }
}

/* ===== OVERVIEW SECTION ANIMATIONS ===== */
.overview-section .section-header h2 {
    animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    opacity: 0;
}

.overview-section .section-header p {
    animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    opacity: 0;
}

.overview-text h3 {
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
    opacity: 0;
}

.overview-text p {
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
    opacity: 0;
}

.overview-text p:nth-of-type(2) {
    animation-delay: 1.1s;
}

.overview-features .feature {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.overview-features .feature:nth-child(1) { animation-delay: 1.3s; }
.overview-features .feature:nth-child(2) { animation-delay: 1.4s; }
.overview-features .feature:nth-child(3) { animation-delay: 1.5s; }

.overview-features .feature i {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.overview-features .feature:hover i {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(30, 111, 217, 0.2);
}

.overview-features .feature i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.overview-features .feature:hover i::after {
    width: 80px;
    height: 80px;
}

.journey-timeline {
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1s both;
    opacity: 0;
}

.timeline-item {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.timeline-item:nth-child(1) { animation-delay: 1.2s; }
.timeline-item:nth-child(2) { animation-delay: 1.3s; }
.timeline-item:nth-child(3) { animation-delay: 1.4s; }
.timeline-item:nth-child(4) { animation-delay: 1.5s; }

.timeline-year {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(30, 111, 217, 0.3);
    background: var(--gradient-primary);
    color: var(--pure-white);
}

/* ===== MISSION & VISION ANIMATIONS ===== */
.mission-section .section-header h2 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    opacity: 0;
}

.mission-section .section-header p {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    opacity: 0;
}

.mission-card, .vision-card {
    opacity: 0;
    transform: translateY(30px);
    animation: floatUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mission-card {
    animation-delay: 0.7s;
}

.vision-card {
    animation-delay: 0.9s;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-icon {
    animation: iconBounce 1.5s ease-in-out 1s infinite;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    animation: none;
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: var(--pure-white);
}

.mission-list li, .vision-list li {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mission-list li:nth-child(1) { animation-delay: 1.1s; }
.mission-list li:nth-child(2) { animation-delay: 1.2s; }
.mission-list li:nth-child(3) { animation-delay: 1.3s; }

.vision-list li:nth-child(1) { animation-delay: 1.1s; }
.vision-list li:nth-child(2) { animation-delay: 1.2s; }
.vision-list li:nth-child(3) { animation-delay: 1.3s; }

/* ===== VALUES SECTION ANIMATIONS ===== */
.values-section .section-header h2 {
    animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    opacity: 0;
}

.values-section .section-header p {
    animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    opacity: 0;
}

.value-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.value-item:nth-child(1) { animation-delay: 0.7s; }
.value-item:nth-child(2) { animation-delay: 0.8s; }
.value-item:nth-child(3) { animation-delay: 0.9s; }
.value-item:nth-child(4) { animation-delay: 1.0s; }

.value-icon {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    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.6s ease;
}

.value-item:hover .value-icon::before {
    left: 100%;
}

.value-item:hover .value-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.3);
}

.value-icon i {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.value-item:hover .value-icon i {
    transform: rotate(-5deg);
}

.approach-card {
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s both;
    opacity: 0;
}

.approach-step {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.approach-step:nth-child(1) { animation-delay: 1.2s; }
.approach-step:nth-child(2) { animation-delay: 1.3s; }
.approach-step:nth-child(3) { animation-delay: 1.4s; }
.approach-step:nth-child(4) { animation-delay: 1.5s; }
.approach-step:nth-child(5) { animation-delay: 1.6s; }

.step-number {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-step:hover .step-number {
    transform: scale(1.1);
}

.approach-step:hover .step-number::after {
    opacity: 1;
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ===== TRUST SECTION ANIMATIONS ===== */
.trust-section .section-header h2 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    opacity: 0;
}

.trust-section .section-header p {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    opacity: 0;
}

.trust-quote {
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
    opacity: 0;
}

.quote-icon {
    animation: spinIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s both;
    opacity: 0;
}

@keyframes spinIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.trust-point {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.trust-point:nth-child(1) { animation-delay: 0.9s; }
.trust-point:nth-child(2) { animation-delay: 1.0s; }
.trust-point:nth-child(3) { animation-delay: 1.1s; }
.trust-point:nth-child(4) { animation-delay: 1.2s; }

.trust-point i {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.trust-point:hover i {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: 0 10px 25px rgba(0, 168, 120, 0.3);
}

.trust-point i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 0 0 0 rgba(0, 168, 120, 0.4);
    animation: none;
}

.trust-point:hover i::after {
    animation: trustPulse 1.5s infinite;
}

@keyframes trustPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 120, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 168, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 120, 0);
    }
}

/* ===== CTA SECTION ANIMATIONS ===== */
.cta-section {
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg) translate(-25%, -25%);
    }
    100% {
        transform: rotate(360deg) translate(-25%, -25%);
    }
}

.cta-content h2 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
    opacity: 0;
}

.cta-content p {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    opacity: 0;
}

.cta-content .btn-primary {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
    opacity: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-content .btn-primary::before {
    content: '';
    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.7s ease;
    z-index: -1;
}

.cta-content .btn-primary:hover::before {
    left: 100%;
}

.cta-content .btn-primary:hover {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    }
}

.cta-note {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
    opacity: 0;
}

/* ===== ENHANCED ANIMATION KEYFRAMES ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== STAGGERED DELAYS FOR SCROLL ANIMATIONS ===== */
[data-animate].animate .section-header h2 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both !important;
}

[data-animate].animate .section-header p {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both !important;
}

/* ===== RESPONSIVE ANIMATION ADJUSTMENTS ===== */
@media (max-width: 768px) {
    /* Reduce motion on mobile */
    .card-icon,
    .stat-number,
    .trust-point i,
    .approach-step:hover .step-number::after {
        animation: none !important;
    }
    
    /* Simplify animations for better performance */
    .about-hero .stat-item,
    .value-item,
    .trust-point,
    .approach-step {
        animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
    }
    
    /* Remove complex hover effects */
    .about-hero .stat-item:hover::before,
    .value-icon::before,
    .cta-content .btn-primary::before {
        display: none;
    }
    
    /* Keep only essential animations */
    .about-hero .hero-title,
    .about-hero .hero-subtitle,
    .about-hero .hero-description,
    .section-header h2,
    .section-header p {
        animation: fadeInUp 0.6s ease both !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .about-hero .stat-number,
    .card-icon,
    .value-icon,
    .trust-point i,
    .approach-step .step-number,
    .cta-section {
        animation: none !important;
    }
}

/* ===== RESPONSIVE STATS SECTION ===== */

/* Tablet and larger screens (default is mobile-first) */
@media (min-width: 640px) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-lg);
    }
}

/* Medium screens */
@media (min-width: 768px) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
        margin: var(--spacing-xl) auto 0;
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .about-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .about-hero .stat-number {
        font-size: 2.25rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.9375rem;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .about-hero .hero-stats {
        gap: var(--spacing-xl);
        max-width: 900px;
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-xl);
    }
    
    .about-hero .stat-number {
        font-size: 2.5rem;
    }
    
    .about-hero .stat-label {
        font-size: 1rem;
    }
}

/* Extra small screens (mobile) */
@media (max-width: 639px) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        max-width: 400px;
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-md);
    }
    
    .about-hero .stat-number {
        font-size: 1.75rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.8125rem;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        max-width: 300px;
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-md);
    }
    
    .about-hero .stat-number {
        font-size: 1.875rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.875rem;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .about-hero .hero-stats {
        max-width: 280px;
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-sm);
    }
    
    .about-hero .stat-number {
        font-size: 1.625rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.75rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
    }
    
    .about-hero .stat-item {
        padding: var(--spacing-sm);
    }
    
    .about-hero .hero-description {
        margin-bottom: var(--spacing-lg);
    }
}
/* ===== ENHANCED STATS SECTION RESPONSIVENESS ===== */

/* Ensure stat content fits properly on all screens */
.about-hero .stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--neutral-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    word-wrap: break-word;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Stat number styling for better text display */
.about-hero .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* Stat label styling */
.about-hero .stat-label {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    font-weight: 500;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
    .about-hero .stat-item {
        min-height: 140px;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .about-hero .stat-number {
        font-size: 2.5rem;
        gap: 4px;
    }
    
    .about-hero .stat-label {
        font-size: 1rem;
    }
}

/* Large desktop screens */
@media (min-width: 1280px) {
    .about-hero .stat-number {
        font-size: 2.75rem;
    }
    
    .about-hero .stat-label {
        font-size: 1.0625rem;
    }
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-hero .stat-item {
        min-height: 130px;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .about-hero .stat-number {
        font-size: 2.25rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.9375rem;
    }
}

/* Small tablets */
@media (min-width: 640px) and (max-width: 767px) {
    .about-hero .stat-item {
        min-height: 110px;
        padding: var(--spacing-md);
    }
    
    .about-hero .stat-number {
        font-size: 1.875rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.8125rem;
        -webkit-line-clamp: 3;
    }
}

/* Mobile screens */
@media (max-width: 639px) {
    .about-hero .stat-item {
        min-height: 100px;
        padding: var(--spacing-sm);
    }
    
    .about-hero .stat-number {
        font-size: 1.75rem;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: var(--spacing-xs);
    }
    
    .about-hero .stat-label {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
        line-height: 1.2;
    }
}

/* Very small mobile screens */
@media (max-width: 375px) {
    .about-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.6875rem;
    }
}

/* Fix for text wrapping in stat numbers */
.about-hero .stat-number span {
    display: inline;
    white-space: nowrap;
}

/* Ensure stat boxes maintain aspect ratio */
.about-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: var(--spacing-xl) auto 0;
    align-items: stretch;
}

@media (min-width: 768px) {
    .about-hero .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .about-hero .hero-stats {
        max-width: 900px;
        gap: var(--spacing-xl);
    }
}

/* Prevent text overflow in stat items */
.about-hero .stat-item {
    overflow: visible !important;
}
/* Minimal fix - just add this to your existing CSS */
.about-hero .stat-item {
    padding: var(--spacing-lg) var(--spacing-md); /* Adjust horizontal padding */
}

@media (min-width: 768px) {
    .about-hero .stat-item {
        padding: var(--spacing-lg) var(--spacing-sm); /* Even smaller padding on desktop */
    }
    
    .about-hero .stat-number {
        font-size: 2.25rem; /* Slightly reduce ALL stat numbers equally */
    }
}

/* Or adjust the grid gap */
@media (min-width: 768px) {
    .about-hero .hero-stats {
        gap: 0.75rem; /* Reduce the gap between boxes */
        max-width: 850px; /* Increase max width */
    }
}
/* Minimal mobile fix - just add this */
@media (max-width: 767px) {
    .about-hero .stat-item {
        padding: 0.75rem 0.5rem;
    }
    
    .about-hero .stat-number {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .about-hero .hero-stats {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
}