
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Warna sesuai dengan halaman program dan profil */
:root {
    --primary-dark: #183D57;
    --primary-green: #8AD337;
    --gradient-1: linear-gradient(135deg, #183D57 0%, #2a5a7a 50%, #3b779d 100%);
    --gradient-2: linear-gradient(135deg, #8AD337 0%, #6fb32e 50%, #549026 100%);
    --gradient-premium: linear-gradient(135deg, #183D57 0%, #2a5a7a 30%, #8AD337 70%, #6fb32e 100%);
}

.gradient-premium {
    background: var(--gradient-premium);
}

.gradient-primary {
    background: var(--gradient-1);
}

.gradient-secondary {
    background: var(--gradient-2);
}

.text-gradient-premium {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 211, 55, 0.2);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px);
}

.card-shadow {
    box-shadow: 0 20px 40px -15px rgba(24, 61, 87, 0.2);
}

.hero-pattern {
    position: relative;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238AD337" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.2;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px -15px rgba(24, 61, 87, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 211, 55, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px -15px rgba(138, 211, 55, 0.3);
    border-color: rgba(138, 211, 55, 0.3);
}

/* Mobile menu animation */
.mobile-menu-enter {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.mobile-menu-enter-active {
    max-height: 500px;
    opacity: 1;
}

.mobile-menu-exit {
    max-height: 500px;
    opacity: 1;
}

.mobile-menu-exit-active {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #183D57, #8AD337);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #183D57;
}



/*============ profile =============*/
.gradient-premium {
    background: var(--gradient-premium);
}

.gradient-primary {
    background: var(--gradient-1);
}

.gradient-secondary {
    background: var(--gradient-2);
}

.text-gradient-premium {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 211, 55, 0.2);
}

.glass-card-dark {
    background: rgba(24, 61, 87, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 211, 55, 0.3);
}

.hero-premium {
    position: relative;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238AD337" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.2;
}

.floating-slow {
    animation: floatingSlow 6s ease-in-out infinite;
}

@keyframes floatingSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.team-card-premium {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(138, 211, 55, 0.1);
}

.team-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(138,211,55,0) 0%, rgba(24,61,87,0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card-premium:hover::before {
    opacity: 1;
}

.team-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(138, 211, 55, 0.4);
    border-color: rgba(138, 211, 55, 0.3);
}

.value-card-premium {
    background: white;
    border-radius: 30px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px -20px rgba(24, 61, 87, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(138, 211, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8AD337, #183D57);
    opacity: 0.1;
    border-radius: 0 0 0 100px;
}

.value-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(138, 211, 55, 0.3);
    border-color: rgba(138, 211, 55, 0.4);
}

.timeline-premium {
    position: relative;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #183D57, #8AD337, #549026);
    border-radius: 3px;
}

.timeline-item-premium {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item-premium::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8AD337, #183D57);
    border: 4px solid white;
    box-shadow: 0 0 0 3px rgba(138, 211, 55, 0.3);
    z-index: 1;
}

.timeline-item-premium::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8AD337;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.divider-premium {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #183D57, #8AD337, #549026);
    border-radius: 4px;
    margin: 1.5rem auto;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(138,211,55,0.1), rgba(24,61,87,0.05));
    border: 1px solid rgba(138, 211, 55, 0.3);
    border-radius: 50px;
    color: #183D57;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #183D57, #8AD337);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #183D57;
}




/*============ program =============*/
