/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: 
        linear-gradient(135deg, rgba(46, 49, 146, 0.9) 0%, rgba(0, 166, 80, 0.8) 50%, rgba(46, 49, 146, 0.9) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-hero .stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.about-hero .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-hero .stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #f9fafb;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-stats-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.story-stats-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

.story-stats-card ul {
    list-style: none;
}

.story-stats-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #4b5563;
}

.story-stats-card ul li i {
    color: #00a650;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(46, 49, 146, 0.9) 0%, rgba(0, 166, 80, 0.8) 50%, rgba(46, 49, 146, 0.9) 100%),
        linear-gradient(45deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.05) 35px,
            rgba(255, 255, 255, 0.05) 70px
        );
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(70px) translateY(70px); }
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00a650 0%, #2e3192 50%, #00a650 100%);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a650 0%, #2e3192 50%, #00a650 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.mv-card p {
    font-size: 1.1rem;
    color: #e5e7eb;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 100px 0;
    background: #f9fafb;
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.quality-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.7;
}

.certifications {
    margin-top: 30px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cert-item i {
    color: #00a650;
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.cert-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.cert-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quality-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-5px);
}

.quality-feature i {
    color: #00a650;
    font-size: 2rem;
    margin-bottom: 15px;
}

.quality-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.quality-feature p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Products Philosophy Section */
.products-philosophy {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(0, 166, 80, 0.9) 0%, rgba(46, 49, 146, 0.8) 50%, rgba(0, 166, 80, 0.9) 100%),
        linear-gradient(45deg, #0f1419 0%, #1e3a5f 25%, #2d1b69 50%, #1a4d3a 75%, #0f1419 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.products-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 60px 60px;
    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.philosophy-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.philosophy-text h3:first-child {
    margin-top: 0;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 25px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.product-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #e5e7eb;
}

.benefits-list li i {
    color: #00ff7f;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

/* Distribution Network Section */
.distribution-network {
    padding: 100px 0;
    background: #f9fafb;
}

.network-content {
    margin-top: 50px;
}

.network-text {
    text-align: center;
    margin-bottom: 60px;
}

.network-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.network-text p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.partners-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-detailed-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00a650 0%, #2e3192 50%, #00a650 100%);
}

.partner-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-detailed-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.partner-type {
    color: #00a650;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-detailed-card p:last-child {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Customer Commitment Section */
.customer-commitment {
    padding: 100px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.commitment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.commitment-card i {
    font-size: 2.5rem;
    color: #00a650;
    margin-bottom: 20px;
}

.commitment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.commitment-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    background: 
        linear-gradient(135deg, rgba(46, 49, 146, 0.9) 0%, rgba(0, 166, 80, 0.8) 50%, rgba(46, 49, 146, 0.9) 100%),
        url('images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Active Navigation Link */
.nav-link.active {
    color: #00a650;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero-stats {
        gap: 30px;
    }

    .about-hero .stat {
        min-width: 120px;
        padding: 15px;
    }

    .about-hero .stat h3 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats-card {
        position: static;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-features {
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .quality-features::-webkit-scrollbar {
        display: none;
    }

    .quality-feature {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-benefits {
        position: static;
    }

    .partners-detailed {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 40px 30px;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }

    .quality-content,
    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Smooth scrolling improvements */
.about-hero,
.about-cta {
    background-attachment: scroll;
}

@media screen and (min-width: 769px) {
    .about-hero,
    .about-cta {
        background-attachment: fixed;
    }
}