/* About Page Global Styles */
.about-page {
    background-color: #fdfbf7;
    color: var(--text-color);
}

/* Typography Helpers */
.green-text {
    color: var(--primary-green);
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../images/simple_about_banner.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.about-hero .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 30, 36, 0.2);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero .hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.about-hero .hero-text {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Company Introduction */
.company-intro {
    padding: 50px 0;
    background: #fdfbf7;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.intro-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
}

.intro-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 2;
}

.card-bg-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(0,0,0,0.02);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    z-index: -1;
    transition: color 0.5s ease;
}

.intro-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(227, 30, 36, 0.12);
    border-color: rgba(227, 30, 36, 0.2);
}

.intro-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.intro-card:hover .card-bg-number {
    color: rgba(227, 30, 36, 0.05);
}

.intro-icon {
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.intro-card:hover .intro-icon {
    transform: scale(1.1);
}

.intro-card h3 {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.intro-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Our Story Section */
.story-section {
    padding: 70px 0;
    background: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-text-content .section-title {
    font-size: 48px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 30px;
    color: #333;
}

.story-text-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: #2a2e33;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    border-left: 4px solid var(--primary-green);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item .stat-number {
    font-size: 48px;
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-number .suffix {
    color: var(--primary-green);
}

.stat-item .stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Timeline Section */
.timeline-section {
    padding: 50px 0;
    background: #fdfbf7;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(227, 30, 36, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px 50px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: #ffffff;
    border: 4px solid var(--primary-green);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-item:hover .timeline-dot {
    background-color: var(--primary-green);
    box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.2);
}

.timeline-content {
    padding: 35px 40px;
    background-color: white;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
}

.timeline-year {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 19px;
    }
    .timeline-content {
        padding: 20px 15px;
    }
    .timeline-year {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .timeline-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .timeline-content p {
        font-size: 14px;
        text-align: justify;
    }
}

/* Vision & Mission Section */
.vision-section {
    padding: 50px 0;
    background: #fdfbf7;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(227, 30, 36, 0.2);
}

/* Why Choose Us Section */
.why-section {
    padding: 50px 0;
    background: #ffffff;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-card {
    background: #fdfbf7;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.2);
}

.why-icon {
    color: var(--primary-green);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.why-icon svg {
    width: 48px;
    height: 48px;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    color: #222;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.vision-card:hover .card-icon {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.vision-card h3 {
    font-size: 28px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
    color: #333;
}

.vision-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Our Values Section */
.values-section {
    padding: 50px 0;
    background: #1a1d22;
    color: #ffffff;
}

.dark-header h2 {
    color: #ffffff;
}

.dark-header p {
    color: #a0abb7;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    background: #23272d;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(227, 30, 36, 0.4);
}

.value-icon {
    color: var(--primary-green);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(104,160,32,0.5));
}

.value-item h3 {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: #b3bdc8;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Manufacturing & Technology Section */
.mfg-tech-section {
    padding: 50px 0;
    background: #fdfbf7;
}

.mfg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mfg-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.mfg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border-color: rgba(227, 30, 36, 0.2);
}

.mfg-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.mfg-icon svg {
    width: 34px;
    height: 34px;
}

.mfg-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.mfg-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .mfg-grid {
        grid-template-columns: 1fr;
    }
}

/* Full Statistics Section */
.full-stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a7c15 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.full-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.full-stats-section .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-box {
    flex: 1 1 220px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15), inset 0 0 20px rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translate(-100%, 0);
    transition: transform 0.8s ease;
}

.stat-box:hover::before {
    transform: rotate(45deg) translate(100%, 0);
}

.stat-box:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 60px rgba(0,0,0,0.25), inset 0 0 20px rgba(255,255,255,0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.stat-box .stat-number {
    font-size: 80px;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-box .suffix {
    font-size: 45px;
    color: #c7f283;
    margin-left: 8px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(199,242,131,0.4);
}

.stat-box .stat-label {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.95;
}

/* CTA Section */
.about-cta {
    padding: 70px 0;
    background: #050a0e;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 54px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 20px;
    color: #a0aec0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .about-hero .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 30px 0 20px !important;
    }
    .about-hero .container {
        padding: 0 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .about-hero .hero-title {
        display: block !important;
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 5px;
    }
    .about-hero .hero-text {
        font-size: 15px;
        padding: 0 25px;
        margin: 5px auto 0;
        text-align: justify;
    }
    .about-hero .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 5px;
    }
    .intro-grid {
        gap: 20px;
    }
    .intro-card {
        padding: 30px 20px;
    }
    .card-bg-number {
        font-size: 100px;
    }
    .intro-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .intro-card p {
        font-size: 14px;
    }
    .intro-icon {
        margin-bottom: 20px;
    }
    .story-image {
        height: 250px;
    }
    .story-text-content .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .story-text-content p {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: justify;
    }
    .vision-grid {
        grid-template-columns: 1fr;
    }
    .vision-card {
        padding: 30px 20px;
    }
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    .vision-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .vision-card p {
        font-size: 14px;
        text-align: justify;
    }
    .why-card {
        padding: 30px 20px;
    }
    .why-icon {
        margin-bottom: 15px;
    }
    .why-icon svg {
        width: 36px;
        height: 36px;
    }
    .why-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .why-card p {
        font-size: 14px;
        text-align: justify;
    }
    .value-item {
        padding: 30px 20px;
    }
    .value-icon {
        margin-bottom: 15px;
    }
    .value-icon svg {
        width: 36px;
        height: 36px;
    }
    .value-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .value-item p {
        font-size: 14px;
        text-align: justify;
    }
    .mfg-card {
        padding: 20px;
    }
    .mfg-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    .mfg-icon svg {
        width: 24px;
        height: 24px;
    }
    .mfg-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .mfg-content p {
        font-size: 14px;
        text-align: justify;
    }
    .full-stats-section .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-box {
        padding: 20px 10px;
        border-radius: 15px;
    }
    .stat-box .stat-number,
    .stat-box .stat-number span.counter {
        font-size: 25px;
    }
    .stat-box .suffix {
        font-size: 24px !important;
    }
    .stat-box .stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        margin-top: 5px;
    }
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-item {
        padding: 15px 10px;
        align-items: center;
        text-align: center;
        border-left: none;
        border-bottom: 4px solid var(--primary-green);
        border-radius: 15px;
    }
    .stat-item .stat-number,
    .stat-item .stat-number span {
        font-size: 25px;
        margin-bottom: 5px;
    }
    .stat-item .stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .about-cta {
        text-align: left;
    }
    .about-cta h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .about-cta p {
        font-size: 15px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: justify;
    }
    .cta-buttons {
        justify-content: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-hero .hero-title {
        display: block !important;
        font-size: 28px;
    }
    .about-hero .hero-text {
        font-size: 15px;
    }
}
