/* ==================== */
/* ROOT VARIABLES */
/* ==================== */
:root {
    --primary: #1a5f2a;
    --primary-light: #2E7D32;
    --primary-dark: #0d3d18;
    --secondary: #D4A742;
    --secondary-light: #E8C06A;
    --accent: #0EA5E9;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-dark: #0F172A;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --border: #E2E8F0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
    --shadow-xl: rgba(0, 0, 0, 0.16);
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, #1a5f2a 0%, #2E7D32 50%, #4CAF50 100%);
    --gradient-secondary: linear-gradient(135deg, #D4A742 0%, #E8C06A 100%);
    --gradient-premium: linear-gradient(135deg, #1a5f2a 0%, #D4A742 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* ==================== */
/* RESET & BASE */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

/* Premium Logo Styles */
.logo-icon-premium {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary) 0deg,
        var(--secondary) 90deg,
        var(--primary-light) 180deg,
        var(--secondary-light) 270deg,
        var(--primary) 360deg
    );
    animation: logoRotate 8s linear infinite;
    padding: 3px;
}

.logo-ring::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-inner {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    box-shadow: 
        0 4px 15px rgba(26, 95, 42, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.logo-inner .fa-home {
    color: white;
    font-size: 0.95rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.logo-inner .logo-people {
    color: var(--secondary-light);
    font-size: 0.65rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.logo-icon-premium:hover .logo-ring {
    animation-duration: 2s;
}

.logo-icon-premium:hover .logo-inner {
    transform: scale(1.05);
    box-shadow: 
        0 6px 25px rgba(26, 95, 42, 0.4),
        0 0 20px rgba(212, 167, 66, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.logo-main .highlight {
    color: var(--primary);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(26, 95, 42, 0.08);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: var(--bg-main);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d3d18 0%, #1a5f2a 30%, #2E7D32 60%, #1a5f2a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 167, 66, 0.15) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: -1;
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    animation: floatIcon 20s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 167, 66, 0.5);
}

.floating-icon.icon-1 {
    font-size: 4rem;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
    color: rgba(255, 255, 255, 0.3);
}

.floating-icon.icon-2 {
    font-size: 3rem;
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    animation-duration: 22s;
    color: rgba(212, 167, 66, 0.4);
}

.floating-icon.icon-3 {
    font-size: 3.5rem;
    top: 60%;
    left: 5%;
    animation-delay: -5s;
    animation-duration: 20s;
    color: rgba(255, 255, 255, 0.28);
}

.floating-icon.icon-4 {
    font-size: 3rem;
    top: 70%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 25s;
    color: rgba(212, 167, 66, 0.35);
}

.floating-icon.icon-5 {
    font-size: 2.5rem;
    top: 40%;
    left: 85%;
    animation-delay: -2s;
    animation-duration: 19s;
    color: rgba(255, 255, 255, 0.3);
}

.floating-icon.icon-6 {
    font-size: 2.2rem;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 23s;
    color: rgba(212, 167, 66, 0.38);
}

.floating-icon.icon-7 {
    font-size: 3rem;
    top: 10%;
    left: 70%;
    animation-delay: -7s;
    animation-duration: 21s;
    color: rgba(255, 255, 255, 0.32);
}

.floating-icon.icon-8 {
    font-size: 2.5rem;
    top: 50%;
    left: 30%;
    animation-delay: -4s;
    animation-duration: 24s;
    color: rgba(212, 167, 66, 0.3);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(30px, -40px) rotate(10deg) scale(1.15);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -80px) rotate(-5deg) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translate(40px, -40px) rotate(15deg) scale(1.1);
        opacity: 1;
    }
}

/* Wave Animation */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--bg-main);
}

.wave-path.wave-1 {
    fill: rgba(248, 250, 252, 0.3);
    animation: waveMove 8s ease-in-out infinite;
}

.wave-path.wave-2 {
    fill: rgba(248, 250, 252, 0.5);
    animation: waveMove 6s ease-in-out infinite reverse;
}

.wave-path.wave-3 {
    fill: var(--bg-main);
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        d: path("M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z");
    }
    50% {
        d: path("M0,80 C360,20 1080,100 1440,40 L1440,120 L0,120 Z");
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #E8C06A 0%, #D4A742 50%, #F0D78C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 167, 66, 0.3));
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 18px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.4s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 167, 66, 0.3) 0%, rgba(232, 192, 106, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0D78C;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212, 167, 66, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon { animation-delay: 0.3s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: 0.6s; }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 167, 66, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(212, 167, 66, 0.4);
    }
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 167, 66, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(212, 167, 66, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ==================== */
/* SECTIONS COMMON */
/* ==================== */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(26, 95, 42, 0.3);
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-premium);
    border-radius: 2px;
    margin: 15px auto 0;
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 10px;
}

/* ==================== */
/* KAS SECTION */
/* ==================== */
.kas-section {
    background: white;
}

.kas-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.kas-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.kas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.kas-card.saldo {
    background: linear-gradient(135deg, #0d3d18 0%, #1a5f2a 50%, #2E7D32 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.kas-card.saldo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 167, 66, 0.2) 0%, transparent 60%);
}

.kas-card.saldo .kas-icon,
.kas-card.saldo .kas-label,
.kas-card.saldo .kas-amount,
.kas-card.saldo .kas-update {
    color: white;
    position: relative;
    z-index: 1;
}

.kas-card.saldo .kas-icon {
    background: linear-gradient(135deg, rgba(212, 167, 66, 0.4) 0%, rgba(232, 192, 106, 0.3) 100%);
    color: #F0D78C;
}

.kas-card.pemasukan .kas-icon {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.kas-card.pengeluaran .kas-icon {
    background: rgba(244, 67, 54, 0.1);
    color: var(--danger);
}

.kas-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.kas-info {
    display: flex;
    flex-direction: column;
}

.kas-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.kas-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.kas-update,
.kas-detail {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 3px;
}

.kas-table-container {
    background: var(--bg-main);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.filter-select {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-family: inherit;
    cursor: pointer;
}

.kas-table {
    width: 100%;
    border-collapse: collapse;
}

.kas-table th,
.kas-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.kas-table th {
    background: white;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.kas-table td {
    font-size: 0.9rem;
}

.kas-table .income {
    color: var(--success);
    font-weight: 600;
}

.kas-table .expense {
    color: var(--danger);
    font-weight: 600;
}

/* ==================== */
/* IURAN SECTION */
/* ==================== */
.iuran-section {
    background: var(--bg-main);
}

.iuran-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.iuran-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.iuran-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.iuran-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.iuran-nominal {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.iuran-detail-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-main);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.iuran-detail-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.iuran-detail-info i {
    color: var(--primary);
    margin-top: 3px;
}

.iuran-progress {
    margin-bottom: 25px;
}

.progress-bar {
    height: 20px;
    background: var(--bg-main);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.progress-percent {
    font-weight: 600;
    color: var(--primary);
}

.iuran-target {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.target-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.target-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.target-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.target-value.collected {
    color: var(--success);
}

.target-value.remaining {
    color: var(--danger);
}

.payment-method {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border);
}

.payment-method h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-main);
    border-radius: 10px;
}

.method-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 3px;
}

.method-item strong {
    display: block;
    margin-bottom: 3px;
}

.method-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.iuran-status {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border);
}

.iuran-status h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-main);
    border-radius: 8px;
    font-size: 0.9rem;
}

.status-item.paid {
    background: rgba(76, 175, 80, 0.1);
}

.status-item.paid i {
    color: var(--success);
}

.status-item.unpaid {
    background: rgba(244, 67, 54, 0.1);
}

.status-item.unpaid i {
    color: var(--danger);
}

/* ==================== */
/* PENGUMUMAN SECTION */
/* ==================== */
.pengumuman-section {
    background: white;
}

.pengumuman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pengumuman-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pengumuman-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(26, 95, 42, 0.2);
}

.pengumuman-card.urgent {
    border-left: 4px solid var(--danger);
}

.pengumuman-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pengumuman-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.date-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.pengumuman-content h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pengumuman-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.pengumuman-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.pengumuman-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== */
/* LAPOR SECTION */
/* ==================== */
.lapor-section {
    background: var(--bg-main);
}

.lapor-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.lapor-form-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.lapor-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
}

.lapor-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card ol {
    padding-left: 20px;
}

.info-card ol li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-card.contact {
    background: var(--gradient-primary);
}

.info-card.contact h4 {
    color: white;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    transition: background 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-item i {
    font-size: 1.2rem;
}

/* ==================== */
/* TATA TERTIB SECTION */
/* ==================== */
.tatatertib-section {
    background: white;
}

.tatatertib-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tatatertib-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--bg-main);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tatatertib-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.tatatertib-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.tatatertib-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tatatertib-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== */
/* PENGURUS SECTION - NEW PREMIUM */
/* ==================== */
.pengurus-section {
    background: var(--bg-main);
}

/* Featured Ketua RT */
.pengurus-featured {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pengurus-card-new {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pengurus-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pengurus-card-new.featured {
    background: linear-gradient(135deg, #0d3d18 0%, #1a5f2a 50%, #2E7D32 100%);
    border: none;
    padding: 40px 60px;
    max-width: 400px;
}

.pengurus-card-new.featured .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 167, 66, 0.2) 0%, transparent 50%);
    animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Photo Wrapper */
.pengurus-photo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.pengurus-card-new.featured .photo-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--secondary) 0deg,
        var(--secondary-light) 120deg,
        var(--secondary) 240deg,
        var(--secondary-light) 360deg
    );
    animation: ringRotate 6s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pengurus-card-new.featured .photo-ring::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #0d3d18, #1a5f2a);
    border-radius: 50%;
}

.pengurus-photo-new {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pengurus-card-new.featured .pengurus-photo-new {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(212, 167, 66, 0.5);
}

.pengurus-photo-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pengurus-photo-new.has-img {
    background: #f0f0f0;
}

/* Info */
.pengurus-info-new {
    position: relative;
    z-index: 2;
}

.pengurus-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pengurus-badge.ketua-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.pengurus-badge.ketua-badge i {
    margin-right: 5px;
}

.pengurus-nama-new {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pengurus-card-new.featured .pengurus-nama-new {
    color: white;
    font-size: 1.4rem;
}

.pengurus-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 42, 0.3);
}

.pengurus-wa-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 42, 0.4);
}

.pengurus-card-new.featured .pengurus-wa-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #1a1a1a;
    padding: 12px 28px;
    font-size: 0.9rem;
}

.pengurus-card-new.featured .pengurus-wa-btn:hover {
    box-shadow: 0 6px 25px rgba(212, 167, 66, 0.5);
}

/* Grid untuk pengurus lainnya */
.pengurus-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hover effect untuk card biasa */
.pengurus-card-new:not(.featured):hover .pengurus-photo-new {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 95, 42, 0.2);
}

.pengurus-card-new:not(.featured) .pengurus-photo-new {
    transition: all 0.3s ease;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 60px 20px 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 15px rgba(212, 167, 66, 0.3);
}

.footer-logo-icon .fa-home {
    color: white;
    font-size: 0.9rem;
}

.footer-logo-icon .fa-users {
    color: var(--secondary-light);
    font-size: 0.6rem;
}

.footer-jargon {
    color: var(--secondary) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
}

.footer-main p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-premium);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 95, 42, 0.3);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 992px) {
    .iuran-info {
        grid-template-columns: 1fr;
    }
    
    .lapor-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .kas-table {
        display: block;
        overflow-x: auto;
    }
    
    .pengumuman-card {
        flex-direction: column;
    }
    
    .pengumuman-date {
        flex-direction: row;
        gap: 10px;
        width: fit-content;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 40px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .kas-card {
        flex-direction: column;
        text-align: center;
    }
    
    .kas-card .kas-info {
        align-items: center;
    }
    
    /* Pengurus responsive */
    .pengurus-card-new.featured {
        padding: 30px 25px;
    }
    
    .pengurus-card-new.featured .pengurus-photo-new {
        width: 100px;
        height: 100px;
    }
    
    .pengurus-card-new.featured .pengurus-nama-new {
        font-size: 1.2rem;
    }
    
    .pengurus-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pengurus-card-new {
        padding: 20px 15px;
    }
    
    .pengurus-photo-new {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .pengurus-nama-new {
        font-size: 0.95rem;
    }
    
    .pengurus-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .pengurus-wa-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* ==================== */
/* CUSTOM SCROLLBAR */
/* ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ==================== */
/* SELECTION HIGHLIGHT */
/* ==================== */
::selection {
    background: rgba(26, 95, 42, 0.2);
    color: var(--primary-dark);
}

/* ==================== */
/* FOCUS STYLES */
/* ==================== */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==================== */
/* LOADING SCREEN */
/* ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d3d18 0%, #1a5f2a 50%, #2E7D32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--secondary);
    border-right-color: var(--secondary-light);
    animation: loaderSpin 1.2s linear infinite;
}

.loader-ring::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255,255,255,0.5);
    animation: loaderSpin 0.8s linear infinite reverse;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.loader-inner .fa-home {
    color: white;
    font-size: 1.8rem;
    animation: loaderPulse 1s ease-in-out infinite;
}

.loader-inner .fa-users {
    color: var(--secondary-light);
    font-size: 1rem;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loader-text {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.loader-tagline {
    color: var(--secondary-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 4px;
    animation: loaderBar 1.5s ease-in-out forwards;
}

@keyframes loaderBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ==================== */
/* BACK TO TOP BUTTON */
/* ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(26, 95, 42, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(26, 95, 42, 0.5), 0 0 20px rgba(212, 167, 66, 0.3);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(var(--primary), var(--secondary), var(--primary-light), var(--secondary-light), var(--primary));
    border-radius: 50%;
    z-index: -1;
    animation: rotateGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}

/* ==================== */
/* PREMIUM CARD EFFECTS */
/* ==================== */
.kas-card,
.pengumuman-card,
.tatatertib-card,
.pengurus-card,
.iuran-card,
.payment-method {
    position: relative;
    overflow: hidden;
}

.kas-card::before,
.pengumuman-card::before,
.tatatertib-card::before,
.iuran-card::before,
.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 167, 66, 0.1), transparent);
    transition: left 0.6s ease;
}

.kas-card:hover::before,
.pengumuman-card:hover::before,
.tatatertib-card:hover::before,
.iuran-card:hover::before,
.payment-method:hover::before {
    left: 100%;
}

/* 3D Tilt Effect on Hover */
.kas-card:hover,
.pengumuman-card:hover,
.iuran-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
}

/* Glow Border Effect */
.pengumuman-card:hover,
.tatatertib-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 167, 66, 0.15);
}

/* ==================== */
/* PENGURUS PREMIUM */
/* ==================== */
.pengurus-photo {
    position: relative;
}

.pengurus-card:not(.ketua) .pengurus-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(var(--primary), var(--secondary), var(--primary-light), var(--secondary-light), var(--primary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: photoRing 4s linear infinite paused;
    transition: opacity 0.3s ease;
}

.pengurus-card:hover .pengurus-photo::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes photoRing {
    to { transform: rotate(360deg); }
}

.pengurus-jabatan {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pengurus-card.ketua .pengurus-jabatan {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

/* ==================== */
/* BADGE PENTING BLINK */
/* ==================== */
.pengumuman-badge {
    animation: badgeBlink 1.5s ease-in-out infinite;
}

@keyframes badgeBlink {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    }
}

/* ==================== */
/* TATA TERTIB BOUNCE */
/* ==================== */
.tatatertib-icon {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tatatertib-card:hover .tatatertib-icon {
    transform: scale(1.1);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.1) translateY(0); }
    30% { transform: scale(1.1) translateY(-10px); }
    50% { transform: scale(1.1) translateY(-5px); }
    70% { transform: scale(1.1) translateY(-8px); }
}

/* Gradient Border for Tata Tertib */
.tatatertib-card {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--border) 0%, var(--border) 100%) border-box;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.tatatertib-card:hover {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) border-box;
}

/* ==================== */
/* FORM PREMIUM STYLES */
/* ==================== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 95, 42, 0.1), 0 0 20px rgba(26, 95, 42, 0.1);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ==================== */
/* SCROLL REVEAL */
/* ==================== */
.reveal-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card:nth-child(1) { transition-delay: 0.1s; }
.reveal-card:nth-child(2) { transition-delay: 0.2s; }
.reveal-card:nth-child(3) { transition-delay: 0.3s; }
.reveal-card:nth-child(4) { transition-delay: 0.4s; }

/* ==================== */
/* PARALLAX SECTIONS */
/* ==================== */
.kas-section,
.pengumuman-section,
.pengurus-section {
    position: relative;
}

.kas-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 95, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pengumuman-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 167, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ==================== */
/* SECTION FADE IN */
/* ==================== */
.section {
    position: relative;
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* COUNTER ANIMATION */
/* ==================== */
.stat-number {
    display: inline-block;
}

.stat-number.counting {
    animation: countPop 0.3s ease;
}

@keyframes countPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
