﻿/* futura-about.css - Styles for FUTURA AGRO CHEMICALS About Page */

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, 'Roboto', sans-serif;
    background: #f4fbf4;
    color: #1e2a2e;
    line-height: 1.5;
}

/* container */
.futura-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

/* ========== TYPOGRAPHY ========== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #1e5f3a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    position: relative;
}

.section-sub {
    text-align: center;
    color: #2c6e49;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    border-bottom: 2px solid #cfe8cf;
    display: inline-block;
    width: auto;
    padding-bottom: 0.5rem;
}

/* company header */
.company-badge {
    background: linear-gradient(135deg, #fef9e4 0%, #eaf7ea 100%);
    border-radius: 48px;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b5e3a;
    margin-bottom: 1rem;
    border: 1px solid #c0e0b0;
}

/* ========== HERO / ABOUT INTRO ========== */
.about-hero {
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 32, 0, 0.08);
    padding: 2rem 2rem 2rem 2rem;
    margin-bottom: 3rem;
    transition: all 0.2s;
    border: 1px solid #e2f0e2;
}

.about-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 2;
    min-width: 240px;
}

    .about-text h2 {
        font-size: 1.8rem;
        color: #0f3b2c;
        margin: 0.5rem 0 1rem 0;
        font-weight: 700;
    }

    .about-text p {
        color: #2d3e3b;
        margin-bottom: 1rem;
        font-size: 1rem;
        text-align: justify;
    }

.about-quote {
    background: #eef9ee;
    border-left: 5px solid #3c9e6d;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-style: normal;
    font-weight: 500;
    margin: 1.5rem 0 0 0;
    color: #1c4d2d;
}

.about-img-placeholder {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.company-mascot {
    background: #e2f0e2;
    border-radius: 36px;
    padding: 0.5rem;
    box-shadow: 0 12px 18px rgba(0,0,0,0.05);
}

    .company-mascot img {
        max-width: 100%;
        border-radius: 28px;
        object-fit: cover;
        width: 100%;
        height: auto;
        display: block;
    }

/* ========== CARD SECTION (COMPANY INFO) ========== */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.info-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 320px;
    transition: transform 0.25s ease, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0, 20, 0, 0.06);
    border: 1px solid #e0f0de;
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 30px -12px rgba(37, 85, 35, 0.2);
    }

.card-img {
    height: 180px;
    overflow: hidden;
    background: #d9ecd0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.info-card:hover .card-img img {
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem 1.3rem 1.8rem;
}

    .card-content h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1f543c;
        margin-bottom: 0.5rem;
        letter-spacing: -0.2px;
    }

.card-tag {
    display: inline-block;
    background: #eef4e8;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2f6b47;
    margin-bottom: 1rem;
}

.card-content p {
    color: #2c423c;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 1.2rem;
}

/* ========== PRODUCTS SECTION ========== */
.products-showcase {
    background: white;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    margin: 2rem 0 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2efde;
}

.products-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.product-pill {
    background: #f2fcf0;
    border-radius: 60px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1b5e3a;
    border: 1px solid #c2dfb5;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .product-pill:hover {
        background: #daf1d2;
        transform: scale(1.02);
    }

/* ========== VIEW MORE BUTTON ========== */
.view-more-wrapper {
    text-align: center;
    margin: 2rem 0 1rem;
}

.btn-view-more {
    background: #1f7346;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.9rem 2.4rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 14px rgba(31, 115, 70, 0.3);
    text-decoration: none;
    border: 1px solid #ffffff30;
}

    .btn-view-more:hover {
        background: #0f5a37;
        transform: scale(1.02);
        box-shadow: 0 12px 22px rgba(25, 85, 50, 0.3);
    }

/* ========== CORPORATE INFO CARDS ========== */
.corporate-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: space-between;
    margin: 2.5rem 0 1.5rem;
}

.office-card {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    border-left: 6px solid #3c9e6d;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

    .office-card h4 {
        font-size: 1.3rem;
        color: #1c5e3f;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .office-card p {
        font-size: 0.9rem;
        color: #2a4b3c;
        margin: 0.3rem 0;
        word-break: break-word;
    }

.contact-detail {
    margin-top: 1rem;
    font-weight: 500;
    background: #f3faf0;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
}

/* Company Detail Section */
.company-detail-section {
    background: #fcf9ef;
    border-radius: 28px;
    padding: 1.5rem;
    margin: 1rem 0;
}

/* Greetings Section */
.greetings {
    background: #fef7e0;
    border-radius: 28px;
    padding: 1.2rem 2rem;
    margin-top: 2rem;
    text-align: center;
    font-weight: 500;
    color: #3a5a40;
    border: 1px solid #ebddb2;
}

.footer-thanks {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #4d705b;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .futura-container {
        padding: 1.8rem 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .futura-container {
        padding: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-hero-grid {
        flex-direction: column;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .btn-view-more {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }

    .products-flex {
        gap: 0.8rem;
    }

    .product-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .corporate-row {
        gap: 1.2rem;
    }

    .office-card {
        padding: 1.2rem;
    }

        .office-card h4 {
            font-size: 1.2rem;
        }

    .company-detail-section {
        padding: 1.2rem;
    }

    .greetings {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .futura-container {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-sub {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-hero {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .cards-grid {
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .info-card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .office-card {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .product-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .btn-view-more {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .company-detail-section p {
        font-size: 0.9rem;
    }

    .footer-thanks {
        font-size: 0.75rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .cards-grid {
        gap: 1.2rem;
    }

    .info-card {
        flex: 1 1 280px;
    }

    .corporate-row {
        gap: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .btn-view-more,
    .view-more-wrapper {
        display: none;
    }

    .about-hero,
    .info-card,
    .products-showcase,
    .office-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
