/* ===================================
   About Us Full Page Styles
   =================================== */

.about-full-hero {
    padding: 100px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

.about-full-content {
    padding-right: 40px;
}

.about-full-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.about-full-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
    min-height: 400px;
}

.about-full-hero-image,
.about-full-secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-full-hero-image {
    min-height: 600px;
}

.about-full-secondary-image {
    min-height: 400px;
}

.about-full-description {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-full-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

/* Values Section */
.about-values {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gradient-start, #00802F);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-gradient-start, #00802F), var(--color-gradient-end, #0091AA));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-full-title {
        font-size: 2.5rem;
    }

    .about-full-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-full-description {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-full-hero-image {
        min-height: 400px;
    }

    .about-full-secondary-image {
        min-height: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-full-hero {
        padding: 80px 0 60px;
    }

    .about-full-title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .about-full-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-values {
        padding: 60px 0;
    }

    .value-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-full-hero {
        padding: 60px 0 40px;
    }

    .about-full-title {
        font-size: 1.75rem;
    }

    .about-full-hero-image,
    .about-full-secondary-image {
        min-height: 250px;
    }

    .about-full-text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }
}