/* ==========================================================================
   ABOUT US PAGE - CREATIVE REVISION
   ========================================================================== */

/* ===== BANNER SECTION ===== */
.page-banner {
    padding: calc(var(--header-height) + 5rem) 0;
    background: linear-gradient(135deg, #1F2937, #2c3e50);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--color-blue), transparent);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--color-primary), transparent);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(50px);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner .page-title {
    color: #FFFFFF;
    font-size: 4rem;
}

.page-banner .page-title .text-primary {
    color: var(--color-primary); 
}

.page-banner .page-subtitle {
    color: #bdc3c7;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}


/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--color-light-gray);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
}

.stat-label {
    color: var(--color-mid-gray);
    margin-top: 0.25rem;
}


/* ===== OUR MISSION SECTION ===== */
.mission-section {
    background-color: #FFFFFF;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mission-image-container img {
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-content .section-title {
    text-align: left;
}

.mission-text {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.mission-list li i {
    color: var(--color-green);
    font-size: 1.25rem;
}

.mission-content .btn {
    margin-top: 2rem;
}


/* ===== WHY CHOOSE US SECTION ===== */
.choose-us-section {
    background-color: var(--color-light-gray);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.choose-us-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.choose-us-icon {
    font-size: 2.5rem;
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
}

.choose-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}


/* ===== MEET OUR TEAM SECTION ===== */
.team-section {
    background-color: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-card-image {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-card-image img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

/* --- Social links overlay effect on hover --- */
.team-socials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 41, 55, 0.7); /* --color-dark at 70% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-socials {
    opacity: 1;
}

.team-socials a {
    color: #FFFFFF;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.team-card:hover .team-socials a {
    transform: translateY(0);
}

.team-socials a:nth-child(2) { transition-delay: 0.1s; }
.team-socials a:nth-child(3) { transition-delay: 0.2s; }

.team-socials a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
/* --- End of hover effect --- */

.team-card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card-info span {
    color: var(--color-primary);
    font-weight: 600;
}


/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }
    .mission-image-container { margin-bottom: 3rem; }
    .mission-content .section-title { text-align: center; }
    .choose-us-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 640px) {
    .page-banner .page-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}