/* PROFIL SECTION */
.profil-section {
    padding: 3rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.profil-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profil-card h2 {
    background: linear-gradient(45deg, #667eea, #1e90ff);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* TABEL PROFIL */
.profil-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.profil-table th,
.profil-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profil-table th {
    background: linear-gradient(135deg, #f8f9ff, #e8ecff);
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 35%;
    position: sticky;
    left: 0;
}

.profil-table td {
    font-weight: 500;
    color: #444;
    font-size: 1rem;
}

.profil-table tr {
    transition: all 0.3s ease;
}

.profil-table tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
}

.profil-table tr:nth-child(even) {
    background: rgba(248, 249, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .school-name {
        font-size: 1.5rem;
    }

    .navbar ul {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .navbar li {
        margin: 0 0.5rem;
    }

    .profil-card h2 {
        font-size: 1.5rem;
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profil-table {
        font-size: 0.9rem;
    }

    .profil-table th,
    .profil-table td {
        padding: 1rem 0.8rem;
    }

    .profil-table th {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .profil-table th,
    .profil-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .profil-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .profil-table th {
        min-width: 140px;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profil-card {
    animation: fadeInUp 0.8s ease-out;
}

/* SCROLLBAR CUSTOM */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #1e90ff);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #667eea, #1e90ff);
}