﻿/* LEEDAR AGRI GENETICS - About Page CSS */
/* Background Image | Elegant Design | Responsive */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-page-section {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #f8faf8;
    overflow-x: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== HERO SECTION WITH BACKGROUND IMAGE ========== */
.about-hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
}

    .hero-badge i {
        font-size: 0.8rem;
        color: #ffd700;
    }

    .hero-badge span {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

    .hero-title .highlight {
        color: #ffd700;
        position: relative;
    }

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffb347);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .hero-btn.primary {
        background: linear-gradient(135deg, #ffd700, #ffb347);
        color: #1a1a2e;
    }

        .hero-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

    .hero-btn.secondary {
        background: transparent;
        border: 2px solid #ffd700;
        color: white;
    }

        .hero-btn.secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px);
        }

/* ========== SECTION BADGE ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 180, 71, 0.1));
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 15px;
}

    .section-badge i {
        font-size: 0.8rem;
        color: #ffd700;
    }

    .section-badge span {
        font-size: 0.75rem;
        font-weight: 600;
        color: #ffb347;
        letter-spacing: 1px;
    }

    .section-badge.center {
        margin-left: auto;
        margin-right: auto;
    }

/* ========== COMPANY STORY SECTION ========== */
.about-story {
    padding: 80px 24px;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
}

    .story-title span {
        color: #ffb347;
    }

.story-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .story-stats .stat {
        text-align: center;
    }

        .story-stats .stat .number {
            display: block;
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffb347;
        }

        .story-stats .stat .label {
            font-size: 0.7rem;
            color: #777;
        }

.story-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

    .image-caption i {
        color: #ffd700;
        font-size: 0.8rem;
    }

    .image-caption span {
        color: white;
        font-size: 0.8rem;
        font-weight: 500;
    }

/* ========== MISSION & VISION SECTION ========== */
.about-mission-vision {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8faf8, #f0f2f5);
}

.mv-header {
    text-align: center;
    margin-bottom: 50px;
}

.mv-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

    .mv-title span {
        color: #ffb347;
    }

.mv-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffb347);
    margin: 0 auto 15px;
    border-radius: 3px;
}

.mv-subtitle {
    font-size: 0.95rem;
    color: #777;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

    .mv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.mission-card {
    border-bottom: 4px solid #ffd700;
}

.vision-card {
    border-bottom: 4px solid #ffb347;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 180, 71, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .card-icon i {
        font-size: 2.2rem;
    }

.mission-card .card-icon i {
    color: #ffd700;
}

.vision-card .card-icon i {
    color: #ffb347;
}

.mv-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.mv-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .card-footer span {
        font-size: 0.7rem;
        background: #f5f5f5;
        padding: 4px 12px;
        border-radius: 20px;
        color: #ffb347;
        font-weight: 500;
    }

/* ========== CORE VALUES SECTION ========== */
.about-values {
    padding: 80px 24px;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

    .values-title span {
        color: #ffb347;
    }

.values-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffb347);
    margin: 0 auto;
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: #f8faf8;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        background: linear-gradient(135deg, #1a1a2e, #16213e);
    }

        .value-card:hover .value-icon i,
        .value-card:hover h4,
        .value-card:hover p {
            color: white;
        }

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 180, 71, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 1.8rem;
        color: #ffb347;
    }

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
}

/* ========== TIMELINE SECTION ========== */
.about-timeline {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8faf8, #f0f2f5);
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

    .timeline-title span {
        color: #ffb347;
    }

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    position: relative;
}

    .timeline-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #ffd700, #ffb347);
    }

.timeline-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    background: #1a1a2e;
    display: inline-block;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .timeline-content i {
        font-size: 1.5rem;
        color: #ffb347;
        margin-bottom: 10px;
    }

    .timeline-content h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1a1a2e;
    }

    .timeline-content p {
        font-size: 0.75rem;
        color: #777;
    }

/* ========== CALL TO ACTION ========== */
.about-cta {
    padding: 60px 24px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 40px 24px 60px;
    border-radius: 28px;
}

.cta-content {
    text-align: center;
    color: white;
}

    .cta-content i {
        font-size: 3rem;
        color: #ffd700;
        margin-bottom: 20px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .cta-btn.primary {
        background: linear-gradient(135deg, #ffd700, #ffb347);
        color: #1a1a2e;
    }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

    .cta-btn.secondary {
        background: transparent;
        border: 2px solid #ffd700;
        color: white;
    }

        .cta-btn.secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px);
        }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .story-grid {
        gap: 35px;
    }

    .timeline-grid {
        gap: 20px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 200px;
        justify-content: center;
    }

    .about-story,
    .about-mission-vision,
    .about-values,
    .about-timeline {
        padding: 50px 20px;
    }

    .story-title,
    .mv-title,
    .values-title,
    .timeline-title {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        margin: 30px 20px 50px;
        padding: 40px 20px;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge span,
    .hero-badge i {
        font-size: 0.7rem;
    }

    .section-badge span {
        font-size: 0.7rem;
    }

    .story-title,
    .mv-title,
    .values-title,
    .timeline-title {
        font-size: 1.3rem;
    }

    .story-text p {
        font-size: 0.85rem;
    }

    .story-stats .stat .number {
        font-size: 1.2rem;
    }

    .mv-card h4 {
        font-size: 1.2rem;
    }

    .value-card {
        padding: 25px 20px;
    }

    .timeline-year {
        font-size: 1.1rem;
    }
}
