/* ===================================
   PROFESSIONAL BLUE GRADIENT DESIGN
   =================================== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #60a5fa;
    --accent: #0ea5e9;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --light-bg: #f8fafc;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --border-color: #e5e7eb;
    --gradient-main: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 75px;
}

/* ===================================
   CONTAINER STYLES
   =================================== */

.container-lg {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container-lg {
        padding: 0 15px;
    }
}

/* ===================================
   GRID & ROW
   =================================== */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-lg-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-lg-0 {
    margin-bottom: 0;
}

.align-items-center {
    align-items: center;
}

@media (max-width: 768px) {
    .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .mb-lg-0 {
        margin-bottom: 30px;
    }
}

/* ===================================
   NAVBAR STYLING - LUXURY & ELEGANT
   =================================== */

.navbar {
    background: linear-gradient(90deg, 
        #2563eb 0%, 
        #3b82f6 25%, 
        #60a5fa 50%, 
        #3b82f6 75%, 
        #2563eb 100%);
    background-size: 300% 300%;
    animation: navbarGradientFlow 25s ease infinite, navbarAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.15),
        0 0 1px rgba(255, 255, 255, 0.4) inset;
    padding: 10px 0;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: box-shadow, padding, background-position;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(91, 146, 217, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: shimmerWave 6s ease-in-out infinite;
}

@keyframes navbarGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmerWave {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes navbarAppear {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    padding: 10px 0;
    background: linear-gradient(90deg, 
        #2563eb 0%, 
        #3b82f6 25%, 
        #60a5fa 50%, 
        #3b82f6 75%, 
        #2563eb 100%) !important;
    box-shadow: 
        0 18px 80px rgba(59, 130, 246, 0.3),
        0 0 140px rgba(91, 146, 217, 0.25),
        0 0 1px rgba(255, 255, 255, 0.6) inset;
    backdrop-filter: blur(35px);
    background-size: 200% 200%;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 900;
    color: white !important;
    letter-spacing: -1px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
    margin-right: 15px;
}

.navbar-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: transparent;
}

.navbar-brand:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.navbar-brand:hover .navbar-logo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    margin: 0 3px;
    padding: 8px 9px !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-transform: capitalize;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.nav-link::before {
    display: none;
}

.nav-link::after {
    display: none;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.35);
    outline: none;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   LOGIN BUTTON STYLING
   =================================== */

.navbar-nav {
    align-items: center;
    gap: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.btn-login {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    box-shadow: 
        0 8px 32px rgba(91, 146, 217, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.5) !important;
    gap: 6px;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
    margin-left: 2px !important;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.btn-login::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 12px;
}

.btn-login > * {
    position: relative;
    z-index: 2;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover::after {
    opacity: 1;
}

.btn-login:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 
        0 16px 50px rgba(91, 146, 217, 0.4),
        0 0 60px rgba(91, 146, 217, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.6) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.btn-login:active {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 
        0 12px 35px rgba(91, 146, 217, 0.35),
        0 0 50px rgba(91, 146, 217, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4) !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background: var(--gradient-main);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-title-alt {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
    margin: 15px 0;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-1 {
    border-top-color: var(--primary-light);
}

.stat-card-1 .stat-value {
    color: var(--primary-light);
}

.stat-card-2 {
    border-top-color: var(--accent);
}

.stat-card-2 .stat-value {
    color: var(--accent);
}

.stat-card-3 {
    border-top-color: var(--secondary);
}

.stat-card-3 .stat-value {
    color: var(--secondary);
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.stat-label i {
    margin-right: 8px;
    opacity: 0.7;
}

/* ===================================
   SAMBUTAN SECTION
   =================================== */

.sambutan-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f3f4f6 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sambutan-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.sambutan-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.row {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 60px;
    display: flex;
}

.sambutan-content {
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
    order: 2;
}

.sambutan-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #1f2937;
    margin-bottom: 35px;
    text-align: left;
    word-wrap: break-word;
    font-weight: 500;
    animation: text-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    letter-spacing: 0.4px;
}

.sambutan-image {
    width: 320px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    order: 1;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.18),
        0 0 80px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: photo-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(10px);
}

.sambutan-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
    border-radius: 28px;
}

.sambutan-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 0%, transparent 40%, rgba(30, 64, 175, 0.2) 100%);
    z-index: 2;
    border-radius: 28px;
    pointer-events: none;
}

.sambutan-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.22),
        0 0 120px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
}

.sambutan-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.15) contrast(1.1) saturate(1.2);
}

.sambutan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

@keyframes photo-entrance {
    from {
        opacity: 0;
        transform: translateX(-60px) scale(0.9) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@keyframes text-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.35),
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    word-wrap: break-word;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    animation: btn-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.45),
        0 0 80px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(59, 130, 246, 0.9);
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: white;
}

.btn-cta:hover::before {
    left: 100%;
}

@keyframes btn-entrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PREMIUM VIEW ALL BUTTON
   =================================== */

.btn-view-all-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #0ea5e9 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* Premium Button Background Effect */
.btn-view-all-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all-premium:hover::before {
    left: 100%;
}

/* Button Text & Icon Container */
.btn-text {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all-premium:hover .btn-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(4px);
}

/* Hover State */
.btn-view-all-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-view-all-premium:active {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

/* Focus State (Accessibility) */
.btn-view-all-premium:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-view-all-premium {
        padding: 12px 32px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .btn-view-all-premium {
        padding: 11px 28px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .btn-text {
        font-weight: 600;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .sambutan-section {
        padding: 80px 0;
    }
    
    .sambutan-section::before {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }

    .sambutan-section::after {
        width: 250px;
        height: 250px;
        bottom: -40px;
        left: -40px;
    }
    
    .row {
        flex-direction: column;
        gap: 40px;
    }

    .sambutan-image {
        order: 1;
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }

    .sambutan-content {
        order: 2;
        flex: none;
        width: 100%;
    }
    
    .sambutan-text {
        text-align: left;
        font-size: 1rem;
    }

    .btn-cta {
        padding: 13px 40px;
        font-size: 0.95rem;
    }
}

/* ===================================
   PENGUMUMAN SECTION (PROFESSIONAL)
   =================================== */

.pengumuman-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #3b82f6 50%, #60a5fa 75%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
}

.pengumuman-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.pengumuman-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.pengumuman-container {
    position: relative;
    z-index: 2;
}

.pengumuman-header-section {
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #0ea5e9 75%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: headerGradientShift 8s ease infinite;
    padding: 80px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

@keyframes headerGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pengumuman-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnim 6s ease-in-out infinite;
}

.pengumuman-header-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnim 8s ease-in-out infinite reverse;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.pengumuman-header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: titleSlideIn 0.8s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pengumuman-header-subtitle {
    font-size: 1.2rem;
    opacity: 0.98;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    animation: subtitleSlideIn 0.8s ease-out 0.2s backwards;
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== EDUKASI DIGITAL STYLING ===== */

.edukasi-header-premium {
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #0ea5e9 75%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: headerGradientShift 8s ease infinite;
    padding: 80px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.edukasi-header-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnim 6s ease-in-out infinite;
}

.edukasi-header-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnim 8s ease-in-out infinite reverse;
}

.edukasi-header-content {
    position: relative;
    z-index: 2;
}

.edukasi-header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
    animation: titleSlideIn 0.8s ease-out;
}

.edukasi-header-subtitle {
    font-size: 1.2rem;
    opacity: 0.98;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: subtitleSlideIn 0.8s ease-out 0.2s backwards;
}

.pengumuman-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pengumuman-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.pengumuman-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.2);
}

.pengumuman-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 28px 24px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.pengumuman-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.pengumuman-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.pengumuman-date {
    color: #3b82f6;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pengumuman-category {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pengumuman-body {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pengumuman-excerpt {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-read-more:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    text-decoration: none;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

/* Grid Layout untuk Pengumuman */
.pengumuman-grid-wrapper {
    width: 100%;
    padding: 20px;
}

.pengumuman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.pengumuman-grid-item {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .pengumuman-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pengumuman-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .pengumuman-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pengumuman-grid-wrapper {
        padding: 15px;
    }
    
    .pengumuman-header-title {
        font-size: 2rem;
    }
}

/* Detail Pengumuman Page */
.pengumuman-detail-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #3b82f6 50%, #1e3a8a 75%, #0f172a 100%);
    background-size: 400% 400%;
    padding: 80px 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.pengumuman-detail-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pengumuman-detail-wrapper > .container-lg {
    position: relative;
    z-index: 1;
}

.pengumuman-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 36px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 0 60px rgba(59, 130, 246, 0.12);
    overflow: hidden;
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    animation: cardSlideIn 0.8s ease-out;
    transition: all 0.4s ease;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pengumuman-detail-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #3b82f6 75%, #1e3a8a 100%);
    background-size: 300% 300%;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

.pengumuman-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pengumuman-detail-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pengumuman-detail-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pengumuman-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.pengumuman-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pengumuman-detail-meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pengumuman-detail-body {
    padding: 50px;
    font-size: 1.05rem;
    line-height: 2;
    color: #2d3748;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 0 0 32px 32px;
}

.pengumuman-detail-content {
    margin-bottom: 40px;
    animation: contentFadeIn 0.8s ease-out 0.3s both;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pengumuman-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.pengumuman-back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pengumuman-back-btn:hover {
    color: white;
    transform: translateX(-6px) translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    text-decoration: none;
}

.pengumuman-back-btn:hover::before {
    left: 100%;
}

.pengumuman-back-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.pengumuman-back-btn:hover i {
    transform: translateX(-4px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@media (max-width: 1024px) {
    .pengumuman-header-title {
        font-size: 2.8rem;
    }
    
    .pengumuman-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pengumuman-section {
        padding: 60px 0;
    }
    
    .pengumuman-header-section {
        margin-bottom: 50px;
    }
    
    .pengumuman-header-title {
        font-size: 2rem;
    }
    
    .pengumuman-header-subtitle {
        font-size: 1rem;
    }
    
    .pengumuman-card {
        margin-bottom: 20px;
    }
    
    .pengumuman-detail-header {
        padding: 30px 20px;
    }
    
    .pengumuman-detail-title {
        font-size: 1.5rem;
    }
    
    .pengumuman-detail-body {
        padding: 25px;
        font-size: 1rem;
    }
    
    .pengumuman-detail-meta {
        gap: 15px;
    }
}

/* ===================================
   GALLERY SECTION (PREMIUM)
   =================================== */

.galeri-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.galeri-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 300;
}

.galeri-grid-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    list-style: none;
}

.galeri-grid-item {
    display: flex;
    flex-direction: column;
}

/* Premium Galeri Card */
.galeri-card-premium {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 350px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.galeri-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-card-premium:hover .galeri-image-wrapper {
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
}

.galeri-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.galeri-card-premium:hover .galeri-img-premium {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(0.7);
}

/* Premium Overlay */
.galeri-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.galeri-card-premium:hover .galeri-overlay-premium {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.galeri-overlay-content {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.galeri-title-premium {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.galeri-desc-premium {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.galeri-date-premium {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Action Icon */
.galeri-icon-action {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    opacity: 0;
    transform: translate(20px, -20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-card-premium:hover .galeri-icon-action {
    opacity: 1;
    transform: translate(0, 0);
}

.galeri-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-link-icon:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    color: white;
    text-decoration: none;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .galeri-card-premium {
        height: 280px;
    }
    
    .galeri-title-premium {
        font-size: 1.1rem;
    }
    
    .galeri-desc-premium {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .galeri-grid-wrapper {
        padding: 0;
    }
    
    .galeri-card-premium {
        height: 280px;
    }
}

/* Button View All Galeri */
.btn-view-galeri {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-view-galeri:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-view-galeri i {
    transition: transform 0.3s ease;
}

.btn-view-galeri:hover i {
    transform: translateX(5px);
}

/* Old Galeri Classes (Backward Compatibility) */
.galeri-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.galeri-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.galeri-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeri-card:hover .galeri-img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0), rgba(30, 58, 138, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galeri-card:hover .galeri-overlay {
    opacity: 1;
}

.galeri-title {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.galeri-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.galeri-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--gradient-main);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-primary-light {
    display: inline-block;
    padding: 12px 40px;
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-primary-outline {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary-outline:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER STYLING
   =================================== */

/* FOOTER ANIMASI PREMIUM */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerIconBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes footerLinkGlow {
    0%, 100% {
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    50% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }
}

footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 50%, #162a48 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

footer > .container-lg {
    position: relative;
    z-index: 1;
}

footer .row > div {
    animation: footerSlideUp 0.8s ease-out forwards;
    opacity: 0;
}

footer .row > div:nth-child(1) {
    animation-delay: 0.1s;
}

footer .row > div:nth-child(2) {
    animation-delay: 0.2s;
}

footer .row > div:nth-child(3) {
    animation-delay: 0.3s;
}

footer .row > div:nth-child(4) {
    animation-delay: 0.4s;
}

footer h5 {
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    border-radius: 2px;
}

footer h5 i {
    margin-right: 10px;
    animation: footerIconBounce 3s ease-in-out infinite;
}

footer p,
footer a {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer p {
    opacity: 0.85;
    margin-bottom: 12px;
    margin-top: 0;
    max-width: 90%;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li:last-child {
    margin-bottom: 0;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

footer a:hover {
    color: white;
    margin-left: 5px;
}

footer a:hover::before {
    width: 100%;
}

footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.2));
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    text-align: center;
    margin-right: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #3b82f6;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

footer .social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

footer .social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    border-color: #0ea5e9;
    color: white;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

footer .social-links a:hover::before {
    width: 120px;
    height: 120px;
}

footer .divider {
    border-color: rgba(59, 130, 246, 0.2);
    margin: 40px 0;
    position: relative;
}

footer .divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

footer .copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
}

footer .copyright:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

footer .copyright i {
    animation: footerIconBounce 2s ease-in-out infinite;
    color: #ef4444;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons > * {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 18px;
    }

    .navbar-brand span:first-child {
        font-size: 22px;
    }

    .navbar-brand span:last-child {
        font-size: 16px;
    }

    .nav-link {
        margin: 8px 0 !important;
        font-size: 0.8rem;
        padding: 10px 0;
    }

    .nav-link::before {
        bottom: -6px;
    }

    .nav-link::after {
        bottom: -8px;
    }

    .btn-login {
        margin-top: 10px !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 15px !important;
    }

    /* Mobile Menu Styling */
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.98) 0%, rgba(139, 92, 246, 0.98) 100%);
        padding: 20px 0 !important;
        margin-top: 10px;
        border-radius: 12px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        padding: 8px 10px;
        gap: 0 !important;
    }

    .nav-link {
        margin: 0 4px !important;
        padding: 6px 8px !important;
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .sambutan-section {
        padding: 50px 0;
    }

    .pengumuman-section {
        padding: 50px 0;
    }

    .galeri-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-border {
    border-image: var(--gradient-main) 1;
}

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shadow-gradient {
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}
/* ===================================
   NEW HERO SECTION (REDESIGNED)
   =================================== */

.hero-section-new {
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
    min-height: 650px;
    height: 70vh;
    max-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

/* Premium edge highlight */
.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 4;
    pointer-events: none;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Fallback Gradient (jika video tidak support) */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f2848 0%, #1a3a63 25%, #2d5a8c 50%, #1e4d7a 75%, #0f3f5f 100%);
    background-size: 400% 400%;
    animation: heroGradientShift 25s ease infinite;
    z-index: 0;
    display: none;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Overlay Layer - untuk readability & elegance */
.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 40, 72, 0.42) 0%,
        rgba(26, 58, 99, 0.50) 50%,
        rgba(15, 40, 72, 0.58) 100%
    );
    z-index: 2;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
}

/* Subtle additional overlay for depth */
.hero-overlay-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.015) 0%, transparent 50%);
    z-index: 1;
}

/* Main hero wrapper - centered text container */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

/* Logo sections - HIDDEN */
.hero-logo-section {
    display: none !important;
}

.hero-logo-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)) brightness(1.05);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero-logo-section:hover img {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.3));
}

.hero-center-content {
    position: relative;
    z-index: 4;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(59, 130, 246, 0.1);
    text-align: center;
    animation: containerSlideDown 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
}

@keyframes containerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        backdrop-filter: blur(15px);
    }
}

/* Location label di bawah tagline */
.hero-location-label {
    display: none;
}
    50% {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(96, 165, 250, 0.35) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0.5) 100%);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    }
}

/* ===================================
   UNIVERSAL LUXURIOUS PAGE STYLING
   =================================== */

/* Page Section Header - untuk semua halaman */
.page-section-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.page-section-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
    border-radius: 50%;
}

.page-header-title {
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-header-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* Page Content Container */
.page-content-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.page-content-section.light-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.page-content-section.white-bg {
    background: white;
    position: relative;
}

.page-content-section.white-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Cards Grid Styling */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.luxury-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59,130,246,0.1);
    position: relative;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    z-index: 2;
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.2);
    border-color: rgba(59,130,246,0.3);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.luxury-card:hover .card-title {
    color: #3b82f6;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6b7280;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta-item i {
    color: #3b82f6;
    font-weight: bold;
}

.card-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Button Styling */
.btn-primary-luxury {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.4);
    color: white;
    text-decoration: none;
}

/* Section Title dengan Underline */
.section-title-luxury {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-luxury::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Responsive */
/* ===================================
   PENGURUS PAGE PREMIUM STYLING
   =================================== */

.pengurus-header-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #0ea5e9 75%, #3b82f6 100%);
    background-size: 400% 400%;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pengurus-header-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
    animation: float-animation 8s ease-in-out infinite;
}

.pengurus-header-premium::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    animation: float-animation 10s ease-in-out infinite reverse;
}

@keyframes float-animation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.pengurus-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pengurus-header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fade-in-down 0.8s ease-out;
}

.pengurus-header-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pengurus Premium Card - BEST DESIGN */
.pengurus-premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30,58,138,0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(59,130,246,0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Top border gradient animation */
.pengurus-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #0ea5e9, #3b82f6);
    background-size: 300% 100%;
    animation: gradient-flow 4s linear infinite;
    z-index: 10;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* Hover effect */
.pengurus-premium-card:hover {
    transform: translateY(-18px) scale(1.01);
    box-shadow: 0 25px 50px rgba(30,58,138,0.2);
    border-color: rgba(59,130,246,0.2);
}

/* Image Container */
.pengurus-image-container {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    flex-shrink: 0;
}

.pengurus-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(96,165,250,0.05));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pengurus-image-container .pengurus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.pengurus-premium-card:hover .pengurus-image-container .pengurus-img {
    transform: scale(1.08);
}

.pengurus-premium-card:hover .pengurus-image-container::before {
    opacity: 1;
}

/* Info Section */
.pengurus-info {
    padding: 32px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pengurus-nama {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.pengurus-jabatan {
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    display: block;
}

.pengurus-deskripsi {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0 0 20px 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Buttons */
.pengurus-action {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.pengurus-btn {
    flex: 1;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.pengurus-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.pengurus-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,130,246,0.4);
    color: white;
    text-decoration: none;
}

.pengurus-btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.pengurus-btn-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Pengurus Grid Section */
.pengurus-grid-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 50%, white 100%);
    position: relative;
    overflow: hidden;
}

.pengurus-grid-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.pengurus-grid-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96,165,250,0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.pengurus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .pengurus-header-premium {
        padding: 60px 0;
    }
    
    .pengurus-header-title {
        font-size: 2.2rem;
    }
    
    .pengurus-header-subtitle {
        font-size: 1rem;
    }
    
    .pengurus-image-container {
        height: 280px;
    }
    
    .pengurus-premium-card:hover {
        transform: translateY(-12px) scale(1.01);
    }
    
    .pengurus-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ===================================
   HOMEPAGE PREMIUM HERO SECTION
   =================================== */

.hero-section-new {
    background: linear-gradient(135deg, 
        #0f1c3f 0%, 
        #1a2f4d 12%,
        #2d4a6f 28%,
        #4a90c9 45%,
        #5ba5d9 60%, 
        #7eb3e0 75%,
        #92c5e6 100%);
    background-size: 400% 400%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: gradient-animate 20s ease infinite;
    padding: 80px 20px;
}

@keyframes gradient-animate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 40%, rgba(74,144,201,0.35), transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(91,165,217,0.3), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(123,180,230,0.15), transparent 80%),
        radial-gradient(circle at 30% 80%, rgba(146,197,230,0.2), transparent 50%);
    z-index: 0;
}

@keyframes overlay-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-40px) scale(1.05);
        opacity: 0.7;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-logo-left, .hero-logo-right {
    flex: 0 0 420px;
    display: none;
    align-items: center;
    justify-content: center;
}

.hero-logo-box {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 
        0 25px 70px rgba(0,0,0,0.25),
        0 0 120px rgba(59,130,246,0.15),
        inset 0 1px 1px rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 98px;
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.hero-logo-box:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 
        0 30px 90px rgba(0,0,0,0.3),
        0 0 150px rgba(59,130,246,0.35),
        inset 0 1px 1px rgba(255,255,255,0.4);
}

.hero-logo-box:hover img {
    filter: brightness(1.08) contrast(1.05);
}

.hero-logo-box:hover::before {
    opacity: 1;
}

.hero-center {
    flex: 1;
    max-width: 800px;
    color: white;
    padding: 0 20px;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0px;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    color: #ffffff;
    animation: titleSlideDown 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    word-spacing: 0.1em;
    font-family: 'Poppins', 'Georgia', serif;
    text-rendering: optimizeLegibility;
    text-align: center;
    display: block;
    max-width: 100%;
    padding: 0 10px;
}

@keyframes titleSlideDown {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-new {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    text-shadow: 
        0 2px 8px rgba(0,0,0,0.3),
        0 6px 16px rgba(0,0,0,0.3);
    line-height: 1.6;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.92);
    animation: subtitleSlideUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
    max-width: 700px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    text-align: center;
    font-style: normal;
}

@keyframes subtitleSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-down {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image Styling - untuk gambar yang akan ditambahkan */
.hero-logo-left img,
.hero-logo-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Features Section Premium */
.features-section-new {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #f8fafc 50%, #f0f9ff 100%);
    position: relative;
}

.features-section-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.1), transparent);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(59,130,246,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    color: #60a5fa;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-link {
    color: #60a5fa;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-section-new {
        min-height: 500px;
        height: auto;
        max-height: none;
        padding: 40px 0;
    }
    
    .hero-content-wrapper {
        width: 100%;
        padding: 0;
    }
    
    .hero-center-content {
        max-width: 100%;
        width: 85%;
        padding: 40px 25px;
        border-radius: 18px;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 1px rgba(255, 255, 255, 0.15),
            0 0 20px rgba(59, 130, 246, 0.08);
    }
    
    .hero-title-new {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
        letter-spacing: 0px;
    }
    
    .hero-subtitle-new {
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.4px;
    }
    
    .hero-location-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section-new {
        min-height: 450px;
        padding: 30px 0;
    }
    
    .hero-center-content {
        max-width: 100%;
        width: 90%;
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .hero-title-new {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle-new {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
}

    .hero-video-bg {
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay-layer {
        background: linear-gradient(
            180deg,
            rgba(15, 40, 72, 0.50) 0%,
            rgba(26, 58, 99, 0.60) 50%,
            rgba(15, 40, 72, 0.60) 100%
        );
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        min-height: 65vh;
        height: 65vh;
        max-height: 550px;
        padding: 0;
    }
    
    .hero-content-wrapper {
        gap: 15px;
        padding: 25px 12px;
        flex-direction: column-reverse;
    }
    
    .hero-center-content {
        gap: 10px;
        padding: 30px 18px;
        border-radius: 14px;
    }

    .hero-title-new {
        font-size: 1.65rem;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-subtitle-new {
        font-size: 0.9rem;
        font-weight: 400;
        margin-top: 6px;
        line-height: 1.4;
    }
    
    .hero-location-label {
        display: none;
    }
    
    .hero-logo-left,
    .hero-logo-right {
        flex: 0 0 110px;
        width: 110px;
        height: 110px;
    }
    
    .hero-logo-section img {
        max-width: 110px;
    }
    
    .hero-center-content {
        gap: 12px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.hero-logo-left, .hero-logo-right {
    flex: 0 0 auto;
    min-width: 100px;
}

.hero-center {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.hero-logo-box {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #1e3a8a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    word-wrap: break-word;
}

.hero-subtitle-new {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .hero-section-new {
        padding: 60px 0;
    }
    
    .hero-content-wrapper {
        gap: 20px;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 50px 0;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-logo-left, .hero-logo-right {
        display: none;
    }
    
    .hero-logo-box {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .hero-title-new {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 0.9rem;
    }
}

/* ===================================
   FEATURES SECTION (NEW)
   =================================== */

.features-section-new {
    padding: 80px 0;
    background-color: var(--light-bg);
    width: 100%;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom-color: #3b82f6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateZ(10deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
    word-wrap: break-word;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.feature-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    word-wrap: break-word;
}

.feature-link:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PARTNERSHIP SECTION
   =================================== */

.partnership-section {
    padding: 80px 0;
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.partnership-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    flex-shrink: 0;
    overflow: hidden;
}

.partnership-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.partnership-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 600;
    word-wrap: break-word;
}

.partnership-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 0;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partnership-card {
        padding: 30px 20px;
    }
    
    .partnership-logo {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .partnership-card h3 {
        font-size: 1.1rem;
    }
    
    .partnership-card p {
        font-size: 0.9rem;
    }
}

/* ===================================
   STATISTIK NEW SECTION
   =================================== */

/* Animasi untuk stats section - ULTRA LUXURY */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.93);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sophisticatedFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(-1deg);
    }
    25% {
        transform: translateY(-8px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-12px) rotateZ(1deg);
    }
    75% {
        transform: translateY(-8px) rotateZ(0deg);
    }
}

@keyframes premiumGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
    }
}

@keyframes hoverElevate {
    from {
        transform: translateY(0px) scale(1);
    }
    to {
        transform: translateY(-16px) scale(1.015);
    }
}

@keyframes smoothExpand {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.statistik-new-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 50%, #e8ecf1 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Dekorasi background dengan gradien elegan */
.statistik-new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.statistik-new-section > .container-lg {
    position: relative;
    z-index: 1;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card-new {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e8f2fc 100%);
    border: 2.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 28px;
    padding: 60px 45px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.12), 
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 30px rgba(59, 130, 246, 0.15);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.95s ease-out forwards;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* Efek border gradient pada hover */
.stat-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.stat-card-new:hover::before {
    left: 100%;
}

.stat-card-new:nth-child(1) {
    animation-delay: 0.12s;
    --card-color: #3b82f6;
}

.stat-card-new:nth-child(2) {
    animation-delay: 0.25s;
    --card-color: #1d4ed8;
}

.stat-card-new:nth-child(3) {
    animation-delay: 0.38s;
    --card-color: #0ea5e9;
}

.stat-card-new:hover {
    transform: translateY(-16px) scale(1.012);
    box-shadow: 0 25px 65px rgba(59, 130, 246, 0.18),
                0 0 50px rgba(59, 130, 246, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 50%, #eff6ff 100%);
}

/* Background icon area dengan efek glow */
.stat-card-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color, #3b82f6) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.stat-card-new:hover::after {
    opacity: 0.08;
}

.stat-icon {
    font-size: 4rem;
    color: var(--card-color, #3b82f6);
    margin-bottom: 18px;
    display: inline-block;
    animation: sophisticatedFloat 5s ease-in-out infinite;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.35));
}

.stat-card-new:hover .stat-icon {
    transform: scale(1.22) rotateZ(4deg);
    animation: premiumGlow 2.5s ease-in-out infinite;
    color: var(--card-color, #3b82f6);
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.5));
}

.stat-number {
    font-size: 4.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--card-color, #3b82f6) 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    word-wrap: break-word;
    animation: smoothExpand 0.9s ease-out 0.35s backwards;
    letter-spacing: -1.2px;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-name {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0 0 12px 0;
    font-weight: 800;
    word-wrap: break-word;
    letter-spacing: 0.4px;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card-new:hover .stat-name {
    color: var(--card-color, #3b82f6);
    transform: scale(1.02);
}

.stat-name i {
    margin-right: 10px;
    transition: all 0.3s ease;
}

.stat-card-new:hover .stat-name i {
    transform: rotate(10deg) scale(1.1);
}

.stat-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.55;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card-new:hover .stat-desc {
    color: #475569;
}

/* Media Queries untuk Responsive */
@media (max-width: 1200px) {
    .stats-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }
    
    .stat-card-new {
        padding: 45px 30px;
    }
}

@media (max-width: 1024px) {
    .stats-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .stat-card-new {
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .statistik-new-section {
        padding: 70px 0;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .stat-card-new {
        padding: 40px 25px;
        animation: slideInUp 0.6s ease-out forwards;
    }
    
    .stat-icon {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-name {
        font-size: 1.15rem;
    }
    
    .stat-desc {
        font-size: 0.9rem;
    }
    
    .stat-card-new:hover {
        transform: translateY(-12px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .statistik-new-section {
        padding: 60px 0;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .stat-card-new {
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 2.3rem;
        margin-bottom: 8px;
    }
    
    .stat-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .stat-desc {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

/* ===================================
   RESPONSIVE NAVBAR & LOGIN BUTTON
   =================================== */

@media (max-width: 1200px) {
    .navbar-nav {
        gap: 0px;
    }
    
    .nav-link {
        margin: 0 2px;
        padding: 8px 8px !important;
        font-size: 0.85rem;
    }
    
    .btn-login {
        padding: 9px 18px !important;
        font-size: 0.9rem !important;
        margin-left: 2px !important;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        gap: 0px;
    }
    
    .nav-link {
        margin: 0 2px;
        padding: 8px 8px !important;
        font-size: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-logo {
        height: 40px;
        width: 40px;
    }
    
    .btn-login {
        padding: 9px 18px !important;
        font-size: 0.85rem !important;
        margin-left: 2px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 18px;
        gap: 8px;
    }
    
    .navbar-logo {
        height: 36px;
        width: 36px;
    }
    
    .navbar-nav {
        gap: 0;
        flex-direction: column;
        padding: 15px 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 0;
    }
    
    .nav-link {
        margin: 0 !important;
        padding: 12px 20px !important;
        font-size: 0.95rem;
        border-radius: 0;
    }
    
    .btn-login {
        width: 100%;
        margin: 10px 0 0 0 !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        justify-content: center;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 16px;
        gap: 6px;
    }
    
    .navbar-logo {
        height: 32px;
        width: 32px;
    }
    
    .container-lg {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 0.9rem;
    }
    
    .btn-login {
        width: 100%;
        padding: 11px 16px !important;
        font-size: 0.9rem !important;
    }
    
    .navbar-toggler {
        border: 1.5px solid rgba(255, 255, 255, 0.5);
    }
}