﻿/* ------------------------
   ABOUT US PAGE - AGVETOS
------------------------- */

.about-section {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    width: 100%;
    gap: 60px;
    position: relative;
    flex-wrap: wrap;
}

/* Image Section */
.about-image {
    flex: 1 1 45%;
    text-align: center;
}

    .about-image img {
        width: 100%;
        max-width: 550px;
        border-radius: 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transform: scale(1);
        transition: transform 0.5s ease;
    }

        .about-image img:hover {
            transform: scale(1.03);
        }

/* Content Section */
.about-content {
    flex: 1 1 50%;
    color: #1f2937;
}

.section-title {
    font-size: 40px;
    color: #065f46;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.company-subtitle {
    font-size: 24px;
    color: #b45309;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    text-align: justify;
}

/* Button */
.btn-about {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(90deg, #065f46, #b45309);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .btn-about:hover {
        background: linear-gradient(90deg, #0d9488, #d97706);
        transform: translateY(-3px);
    }

/* --------- Responsive --------- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .about-content {
        flex: 1 1 100%;
    }

    .about-content {
        margin-top: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }
}

/* --------- Animation Styles --------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

    [data-animate].visible {
        opacity: 1;
        transform: translateY(0);
    }

[data-animate="fade-left"] {
    transform: translateX(60px);
}

    [data-animate="fade-left"].visible {
        transform: translateX(0);
    }

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

    [data-animate="fade-right"].visible {
        transform: translateX(0);
    }
