/* ===================================
   GOOGLE FONTS
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    font-family: 'Inter', sans-serif;
}

/* ===================================
   GRADIENT TEXT
   =================================== */
.gradient-text {
    background: linear-gradient(135deg, #05c75c 0%, #256D2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   GRADIENT BACKGROUNDS
   =================================== */
.gradient-bg {
    background: linear-gradient(135deg, #256D2F 0%, #1a5023 100%);
/* Pakai accent color yang sudah ada di theme */
}

.gradient-orange {
    background: linear-gradient(135deg, #F07313 0%, #D86310 100%);
}

/* ===================================
   ANIMATIONS - FLOATING
   =================================== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* ===================================
   ANIMATIONS - FADE IN
   =================================== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ===================================
   SMOOTH SCROLL
   =================================== */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Untuk menambahkan efek hover scale pada card */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Shadow utilities */
.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-custom-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .hide-desktop {
        display: none;
    }
}

/* ===================================
   CUSTOM BUTTON STYLES (Optional)
   =================================== */

/* Jika ingin menambahkan efek khusus pada button */
.btn-custom {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   LOADING ANIMATION (Optional)
   =================================== */
@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* ===================================
   CUSTOM SCROLLBAR (Optional)
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #0A64AF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #084A8C;
}

/* ===================================
   CHECKLIST ICON STYLES
   =================================== */
.checklist-icon li {
    position: relative;
    padding-left: 32px;
    display: flex;
    align-items: flex-start;
}

.checklist-icon li::before {
    content: "\f14a"; /* fa-square-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #4ade80;
    text-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
    animation: checkPop 0.3s ease;
}

/* Animasi muncul */
@keyframes checkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover effect */
.checklist-icon li:hover::before {
    color: #22c55e;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Variasi warna untuk section berbeda */
.checklist-icon-yellow li::before {
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.checklist-icon-blue li::before {
    color: #3b82f6;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.checklist-icon-white li::before {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}