/* ===================================
   E7 TECH - ABOUT PAGE
   Professional & Modern Design
   =================================== */

/* HERO SECTION */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a237e 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 3.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.09375em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 43.75rem;
    margin: 0 auto;
}

/* COMPANY OVERVIEW */
.company-overview {
    padding: 6rem 0;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    color: #1a237e;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a237e, #5a3fc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 12.5rem;
}

.image-badge i {
    font-size: 2rem;
    color: #fbbf24;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: #64748b;
}

/* MISSION VISION VALUES */
.mvv-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mvv-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: linear-gradient(135deg, #1a237e, #5a3fc0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: #fff;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 1rem;
    text-align: center;
}

.mvv-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.value-tag {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* LEADERSHIP SECTION */
.leadership-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
    padding: 0.5rem 1.2rem;
    border-radius: 3.125rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09375em;
    margin-bottom: 1rem;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 37.5rem;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.leader-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.15);
}

.leader-image {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.leader-avatar {
    width: 7.5rem;
    height: 7.5rem;
    background: linear-gradient(135deg, #1a237e, #5a3fc0);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem rgba(26, 35, 126, 0.3);
}

.leader-avatar i {
    font-size: 3rem;
    color: #fff;
}

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 0.5rem;
    text-align: center;
}

.leader-role {
    font-size: 0.95rem;
    color: #1a237e;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.leader-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tag {
    background: rgba(26, 35, 126, 0.08);
    color: #1a237e;
    padding: 0.4rem 0.9rem;
    border-radius: 0.9375rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.leader-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.leader-social a {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(26, 35, 126, 0.08);
    color: #1a237e;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: linear-gradient(135deg, #1a237e, #5a3fc0);
    color: #fff;
    transform: translateY(-0.125rem);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

/* WHY CHOOSE E7 SECTION */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

.why-choose-section .section-header {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 0.1875rem solid #fbbf24;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

/* LEADER CARDS - UPDATED */
.leader-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0;
}

.leader-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
}

.leader-icon {
    background: linear-gradient(135deg, #1a237e 0%, #3b82f6 100%);
    color: #fff;
    font-size: 4rem;
    text-align: center;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 11.25rem;
}

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.leader-role {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
    margin-bottom: 1rem;
    text-align: center;
}

.leader-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tag {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
    padding: 0.4rem 0.8rem;
    border-radius: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA SECTION */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #0f172a 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    background: #fbbf24;
    color: #1a237e;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.25rem rgba(251, 191, 36, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 5rem 0 4rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
    
    .stats-row {
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .company-overview,
    .mvv-section,
    .why-choose-section,
    .leadership-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-info {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
        .cta-section p {
            font-size: 1rem;
        }
    }
