/* ========================================
   Tentang Kami Page Styles
======================================== */

/* Hero Section */
.tentang-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.tentang-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tentang-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 61, 102, 0.1);
    z-index: 2;
}

.tentang-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tentang-hero .shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.tentang-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.tentang-hero .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.tentang-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

.tentang-hero .container {
    position: relative;
    z-index: 3;
}

.tentang-hero .hero-content {
    padding: var(--space-16) 0;
}

.tentang-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tentang-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.tentang-hero .hero-description {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.tentang-hero .hero-stats {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.tentang-hero .stat-item {
    text-align: center;
}

.tentang-hero .stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--white);
    margin-bottom: var(--space-1);
}

.tentang-hero .stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-medium);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    color: var(--white);
    transition: var(--transition-all);
}

.visual-card.main-card {
    position: relative;
    z-index: 3;
    min-width: 280px;
}

.visual-card.main-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin: var(--space-4) 0 var(--space-2);
    color: var(--white);
}

.visual-card.main-card p {
    font-size: var(--text-base);
    opacity: 0.9;
    margin: 0;
}

.visual-card.accent-card {
    position: absolute;
    padding: var(--space-6);
    min-width: 180px;
    z-index: 2;
}

.visual-card.accent-card:nth-child(2) {
    top: 10%;
    right: -50px;
}

.visual-card.accent-card:nth-child(3) {
    bottom: 10%;
    left: -50px;
}

.visual-card.accent-card span {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
}

/* About Content Section */
.about-content {
    background: var(--white);
}

.about-text .section-badge {
    display: inline-block;
    background: rgba(16, 80, 145, 0.1);
    color: var(--primary-color);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.vision-mission {
    margin-top: var(--space-8);
}

.vm-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.vm-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-content h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.vm-content p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: var(--transition-all);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-transform);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 80, 145, 0.2);
}

.feature-icon {
    background: rgba(16, 80, 145, 0.1);
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.feature-card h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--gray-50);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-all);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 80, 145, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    position: relative;
    overflow: hidden;
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.team-card h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.team-role {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.team-desc {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.credential {
    background: rgba(16, 80, 145, 0.1);
    color: var(--primary-color);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
}

/* Values Section */
.values-section {
    background: var(--white);
}

.value-card {
    text-align: center;
    padding: var(--space-6);
    transition: var(--transition-all);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: rgba(16, 80, 145, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    transition: var(--transition-all);
}

.value-card:hover .value-icon {
    background: var(--primary-gradient);
}

.value-card:hover .value-icon svg {
    stroke: var(--white);
}

.value-card h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.value-card p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    background: var(--gray-50);
}

.statistics-content .section-badge {
    display: inline-block;
    background: rgba(16, 80, 145, 0.1);
    color: var(--primary-color);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.achievement-list {
    margin-top: var(--space-6);
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.achievement-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-all);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 80, 145, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: var(--font-medium);
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 61, 102, 0.1);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-content {
    padding: var(--space-16) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-6);
    color: var(--white);
}

.cta-description {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tentang-hero .hero-stats {
        justify-content: center;
        gap: var(--space-6);
    }

    .vm-item {
        flex-direction: column;
        text-align: center;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .visual-card.accent-card:nth-child(2) {
        top: 20%;
        right: -30px;
    }

    .visual-card.accent-card:nth-child(3) {
        bottom: 20%;
        left: -30px;
    }
}

@media (max-width: 576px) {
    .hero-visual {
        height: 400px;
    }

    .visual-card.main-card {
        min-width: 240px;
        padding: var(--space-6);
    }

    .visual-card.accent-card {
        min-width: 140px;
        padding: var(--space-4);
    }

    .visual-card.accent-card span {
        font-size: var(--text-sm);
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

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