﻿/* About SAMCO CSS - Scoped to prevent conflicts */
.about-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f9f5 0%, #edf7ed 100%);
    color: #2a382a;
    line-height: 1.6;
    padding: 40px 0;
    min-height: 100vh;
}

    .about-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    .about-section .about-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 30px 0;
        background: linear-gradient(to right, #ffffff, #f1f8e9);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
    }

    .about-section .section-title {
        font-size: 3.2rem;
        color: #1b5e20;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

        .about-section .section-title .highlight {
            color: #2e7d32;
            font-weight: 700;
        }

    .about-section .section-subtitle {
        font-size: 1.4rem;
        color: #4a654a;
        margin-top: 20px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    /* Company Name Bold Style */
    .about-section .company-name-bold {
        font-weight: 800 !important;
        color: #1e4620 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    /* Content Layout */
    .about-section .about-content {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        margin-bottom: 40px;
    }

    .about-section .content-side {
        flex: 1;
        min-width: 300px;
    }

    .about-section .image-side {
        flex: 1;
        min-width: 300px;
    }

    /* Content Cards */
    .about-section .content-card {
        background: linear-gradient(145deg, #ffffff, #f8fdf8);
        border-radius: 20px;
        padding: 35px;
        margin-bottom: 35px;
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.12);
        border-left: 6px solid #4caf50;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-top: 1px solid #e8f5e9;
    }

        .about-section .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.18);
        }

    .about-section .card-title {
        color: #1b5e20;
        margin-bottom: 20px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 15px;
        border-bottom: 2px solid #c8e6c9;
    }

        .about-section .card-title i {
            color: #4caf50;
            font-size: 1.6rem;
        }

    .about-section .card-text {
        margin-bottom: 25px;
        color: #3e4e3e;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    /* Features Grid */
    .about-section .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }

    .about-section .feature-card {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        transition: all 0.4s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

        .about-section .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #4caf50, #81c784);
        }

        .about-section .feature-card:hover {
            transform: translateY(-6px);
            border-color: #4caf50;
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
        }

        .about-section .feature-card i {
            font-size: 2.5rem;
            color: #2e7d32;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .about-section .feature-card:hover i {
            transform: scale(1.2);
        }

        .about-section .feature-card h3 {
            font-size: 1.1rem;
            color: #2a382a;
            font-weight: 600;
            line-height: 1.5;
        }

    /* Vision & Mission Section */
    .about-section .vision-mission-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-section .vision-card,
    .about-section .mission-card {
        background: linear-gradient(145deg, #ffffff, #f8fdf8);
        padding: 30px;
        border-radius: 18px;
        border-left: 6px solid;
        box-shadow: 0 6px 20px rgba(46, 125, 50, 0.1);
        transition: transform 0.3s ease;
    }

        .about-section .vision-card:hover,
        .about-section .mission-card:hover {
            transform: translateX(5px);
        }

    .about-section .vision-card {
        border-left-color: #1b5e20;
        background: linear-gradient(145deg, #f1f8e9, #ffffff);
    }

    .about-section .mission-card {
        border-left-color: #388e3c;
        background: linear-gradient(145deg, #e8f5e9, #ffffff);
    }

    /* Image Side */
    .about-section .image-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        margin-bottom: 30px;
        position: relative;
        border: 8px solid white;
    }

    .about-section .main-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
        transition: transform 0.7s ease;
    }

        .about-section .main-image:hover {
            transform: scale(1.05);
        }

    .about-section .image-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: white;
        padding: 25px;
        text-align: center;
        font-style: italic;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    /* Stats Card */
    .about-section .stats-card {
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
        color: white;
        border-radius: 20px;
        padding: 35px;
        display: flex;
        justify-content: space-around;
        text-align: center;
        box-shadow: 0 12px 30px rgba(27, 94, 32, 0.25);
        border: 3px solid #c8e6c9;
        position: relative;
        overflow: hidden;
    }

        .about-section .stats-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
        }

        .about-section .stats-card h3 {
            font-size: 1.3rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

    .about-section .stat-number {
        display: block;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        color: #c8e6c9;
    }

    /* Load More Section */
    .about-section .load-more-section {
        text-align: center;
        margin-top: 60px;
        padding: 50px 30px;
        background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
        border-radius: 25px;
        border: 3px dashed #81c784;
        box-shadow: 0 10px 30px rgba(129, 199, 132, 0.15);
        transition: all 0.4s ease;
    }

        .about-section .load-more-section:hover {
            border-color: #4caf50;
            border-style: solid;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
        }

    .about-section .load-more-title {
        color: #1b5e20;
        font-size: 2.2rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .about-section .load-more-text {
        color: #4a654a;
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .about-section .load-more-btn {
        background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
        color: white;
        border: none;
        padding: 18px 45px;
        border-radius: 50px;
        font-size: 1.3rem;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

        .about-section .load-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
        }

        .about-section .load-more-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
        }

            .about-section .load-more-btn:hover::before {
                left: 100%;
            }

        .about-section .load-more-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .about-section .load-more-btn:hover i {
            transform: translateX(8px);
        }

    .about-section .load-more-note {
        color: #689f38;
        font-size: 0.95rem;
        margin-top: 20px;
        font-style: italic;
        font-weight: 500;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .about-section .about-content {
        flex-direction: column;
    }

    .about-section .stats-card {
        flex-direction: column;
        gap: 25px;
    }

    .about-section .section-title {
        font-size: 2.5rem;
    }

    .about-section .load-more-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .about-section .features-grid {
        grid-template-columns: 1fr;
    }

    .about-section .section-title {
        font-size: 2.2rem;
    }

    .about-section .card-title {
        font-size: 1.6rem;
    }

    .about-section .content-card {
        padding: 25px;
    }

    .about-section .load-more-btn {
        padding: 16px 35px;
        font-size: 1.2rem;
    }

    .about-section .load-more-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .about-section .container {
        padding: 0 15px;
    }

    .about-section .section-title {
        font-size: 1.9rem;
    }

    .about-section .card-title {
        font-size: 1.4rem;
    }

    .about-section .load-more-section {
        padding: 35px 20px;
    }

    .about-section .load-more-btn {
        padding: 14px 25px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }

        .about-section .load-more-btn i {
            transform: rotate(90deg);
        }

    .about-section .stat-number {
        font-size: 2.3rem;
    }
}
