/* Profil Modal Styles */

.profil-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.profil-modal-header {
    background: linear-gradient(135deg, #2d5016 0%, #1a2f0a 100%);
    border-bottom: 3px solid #d4af37;
    padding: 20px 25px;
}

.profil-modal-header .modal-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profil-modal-header .modal-title i {
    font-size: 1.5rem;
}

.profil-modal-body {
    padding: 30px 25px;
    background: #f8f9fa;
}

.profil-menu-card {
    display: block;
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.profil-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2d5016, #d4af37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.profil-menu-card:hover::before {
    transform: scaleX(1);
}

.profil-menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.profil-menu-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profil-menu-icon i {
    font-size: 2rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.profil-menu-card:hover .profil-menu-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
}

.profil-menu-card:hover .profil-menu-icon i {
    color: #1a2f0a;
    transform: scale(1.2);
}

.profil-menu-card h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.profil-menu-card:hover h6 {
    color: #2d5016;
}

.profil-menu-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.profil-menu-card:hover p {
    color: #2d5016;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
    .profil-modal-body {
        padding: 20px 15px;
    }
    
    .profil-menu-card {
        padding: 20px 15px;
    }
    
    .profil-menu-icon {
        width: 60px;
        height: 60px;
    }
    
    .profil-menu-icon i {
        font-size: 1.7rem;
    }
    
    .profil-menu-card h6 {
        font-size: 1rem;
    }
    
    .profil-menu-card p {
        font-size: 0.85rem;
    }
}
