/* ===================================
   About Us Full Page Styles - New Design
   =================================== */

/* We Are Section */
.we-are-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.we-are-header {
    margin-bottom: 60px;
}

.we-are-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    position: relative;
    display: inline-block;
}

.we-are-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-gradient-start, #00802F), var(--color-gradient-end, #0091AA));
    border-radius: 2px;
}

.we-are-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.we-are-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.we-are-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-gradient-start, #00802F), var(--color-gradient-end, #0091AA));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.we-are-card:hover::before {
    transform: scaleX(1);
}

.we-are-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.we-are-icon {
    width: 70px;
    height: 70px;
    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;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

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

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

.we-are-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.we-are-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.about-full-page {
    padding: 0;
    background: #ffffff;
    padding-top: 0;
}

.about-hero-row,
.about-secondary-row {
    min-height: auto;
}

.about-text-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #ffffff;
}

.about-image-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-full-content,
.about-full-description {
    max-width: 600px;
}

.about-full-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

.about-full-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

.about-full-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 991.98px) {

    .about-hero-row,
    .about-secondary-row {
        min-height: auto;
    }

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

    .about-text-col {
        padding: 60px 40px;
    }

    .about-full-image-wrapper {
        min-height: 500px;
    }

    .we-are-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-full-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-text-col {
        padding: 50px 30px;
    }

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

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

    .we-are-section {
        padding: 80px 0 60px;
    }

    .we-are-title {
        font-size: 2.5rem;
    }

    .we-are-card {
        padding: 35px 25px;
    }

    .we-are-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .about-full-title {
        font-size: 1.75rem;
    }

    .about-text-col {
        padding: 40px 20px;
    }

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

    .about-full-image-wrapper {
        min-height: 300px;
    }

    .we-are-section {
        padding: 60px 0 40px;
    }

    .we-are-title {
        font-size: 2rem;
    }

    .we-are-card {
        padding: 30px 20px;
    }

    .we-are-icon {
        width: 60px;
        height: 60px;
    }

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

    .we-are-card-title {
        font-size: 1.25rem;
    }

    .we-are-card-text {
        font-size: 0.95rem;
    }
}