:root {
            --primary-gradient: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
            --secondary-gradient: linear-gradient(135deg, #20B2AA 0%, #3CB371 100%);
            --accent-gradient: linear-gradient(135deg, #00CED1 0%, #48D1CC 100%);
            --success-gradient: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
            --info-gradient: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
        }

        html {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .navbar-brand {
            font-family: 'Instrument Sans', sans-serif;
            color: #2E8B57 !important;
            font-weight: 700;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand svg {
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(46, 139, 87, 0.3));
        }

        .navbar-brand:hover svg {
            transform: rotate(5deg) scale(1.1);
        }

        .nav-link {
            color: #495057 !important;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #2E8B57 !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: #2E8B57 !important;
            background: rgba(46, 139, 87, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-link.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
            height: 100vh;
            min-height: 500px;
            margin-top: 0;
        }

        .hero-slide {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .carousel-item {
            position: relative;
            height: 100vh;
            min-height: 500px;
        }

        .carousel-caption {
            bottom: 20%;
            text-align: left;
            left: 10%;
            right: 50%;
            z-index: 2;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 100%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 20px !important;
            border-radius: 15px;
            border-left: 5px solid #32CD32;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 20px rgba(255, 255, 255, 0.08),
                0 0 30px rgba(50, 205, 50, 0.2);
            animation: slideInLeft 0.8s ease-out;
        }

        .carousel-caption .hero-title {
            font-size: 2rem !important;
        }

        .carousel-caption .hero-subtitle {
            font-size: 0.9rem !important;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .carousel-indicators {
            bottom: 20px;
            z-index: 3;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .carousel-indicators button:hover {
            background-color: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .carousel-indicators .active {
            background-color: white;
            border-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            width: 28px;
            border-radius: 6px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 1;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-control-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            color: #2E8B57;
            font-size: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-control-prev:hover .carousel-control-icon,
        .carousel-control-next:hover .carousel-control-icon {
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .carousel-control-prev:active .carousel-control-icon,
        .carousel-control-next:active .carousel-control-icon {
            transform: scale(0.95);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(5px) rotate(-1deg); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInUp 1s ease-out, glow 2s ease-in-out infinite alternate;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            color: rgba(255,255,255,0.9) !important;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-btn {
            animation: slideInUp 1s ease-out 0.4s both;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
            color: #2E8B57 !important;
            border: 2px solid rgba(46, 139, 87, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .hero-btn:hover {
            background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.98) 100%);
            color: #2E8B57 !important;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 
                0 20px 50px rgba(46, 139, 87, 0.35),
                0 0 25px rgba(50, 205, 50, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(46, 139, 87, 0.5);
        }

        .hero-btn:active {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 
                0 10px 30px rgba(46, 139, 87, 0.25),
                0 0 15px rgba(50, 205, 50, 0.2);
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
            to { text-shadow: 0 0 30px rgba(255,255,255,0.8); }
        }

        /* Cards */
        .card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .card-icon {
            transition: all 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* About Section */
        #about {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(46, 139, 87, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 80% 80%, rgba(50, 205, 50, 0.05) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        #about .container {
            position: relative;
            z-index: 1;
        }

        /* Section Headers */
        .section-icon {
            animation: bounce 2s ease-in-out infinite;
        }

        .about-section-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 84px;
            height: 84px;
            font-size: 2.4rem;
            color: #ffffff;
            background: linear-gradient(135deg, #1f7a5a 0%, #d64545 100%);
            border-radius: 50%;
            box-shadow:
                0 18px 35px rgba(46, 139, 87, 0.28),
                0 0 0 10px rgba(50, 205, 50, 0.08);
        }

        .feature-section-icon {
            width: 62px;
            height: 62px;
            font-size: 1.45rem;
            vertical-align: middle;
            margin-right: 0.9rem !important;
            box-shadow:
                0 14px 28px rgba(46, 139, 87, 0.22),
                0 0 0 8px rgba(214, 69, 69, 0.06);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
            animation: slideInUp 0.8s ease-out;
        }

        /* Statistics Section */
        .stat-row {
            margin-top: 3rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.95) 50%, rgba(255,255,255,0.90) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(46, 139, 87, 0.15);
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(46, 139, 87, 0.08),
                0 0 20px rgba(50, 205, 50, 0.05),
                inset 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
            animation: shine 3s ease-in-out infinite;
            z-index: 0;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, #2E8B57 25%, #32CD32 50%, #2E8B57 75%, transparent 100%);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .stat-card:hover::after {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 60px rgba(46, 139, 87, 0.18),
                0 0 40px rgba(50, 205, 50, 0.12),
                0 8px 24px rgba(46, 139, 87, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 1);
            border-color: rgba(46, 139, 87, 0.3);
        }

        @keyframes shine {
            0%, 100% { transform: rotate(0deg) translateX(0); }
            50% { transform: rotate(180deg) translateX(10px); }
        }

        .stat-icon {
            font-size: 2.5rem;
            animation: slideInUp 0.8s ease-out;
        }

        .stat-icon i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-number {
            font-weight: 800;
            animation: slideInUp 0.8s ease-out 0.1s both;
        }

        .stat-label {
            color: #6c757d;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .stat-card-modern {
            padding-top: 3.4rem !important;
            background:
                linear-gradient(180deg, rgba(252,255,253,0.99) 0%, rgba(241, 251, 245, 0.98) 100%);
            border: 2px solid rgba(46, 139, 87, 0.22);
            box-shadow:
                0 10px 28px rgba(46, 139, 87, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.7) inset;
        }

        .stat-card-chip {
            position: absolute;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: inline-block;
            color: #2E8B57;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            z-index: 1;
        }

        .stat-icon-modern {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 82px;
            height: 82px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(46, 139, 87, 0.12), rgba(50, 205, 50, 0.05));
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
        }

        .stat-number-modern {
            font-size: 3rem;
            margin-bottom: 0.4rem;
            color: #2E8B57;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .stat-label-modern {
            font-size: 1rem;
            color: #243b30;
            font-weight: 700;
            margin-bottom: 0.65rem;
        }

        .stat-caption {
            margin: 0;
            color: #6a7c73;
            font-size: 0.82rem;
            line-height: 1.45;
        }

        /* Content Cards */
        .content-title {
            color: #2c3e50;
            font-weight: 800;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .content-title i {
            transition: all 0.3s ease;
        }

        .content-title:hover i {
            transform: scale(1.1) rotate(10deg);
        }

        .about-card-large {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(46, 139, 87, 0.15);
            border-radius: 16px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .about-card-large::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 16px 16px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-card-large:hover::before {
            transform: scaleX(1);
        }

        .about-card-large:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 25px 60px rgba(46, 139, 87, 0.15),
                0 0 40px rgba(50, 205, 50, 0.1);
            border-color: rgba(46, 139, 87, 0.25);
        }

        /* Visi Misi Boxes */
        .visi-misi-box {
            transition: all 0.3s ease;
        }

        .visi-misi-box:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(46, 139, 87, 0.1);
        }

        /* Features Section */
        .feature-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.97) 0%, rgba(243, 251, 246, 0.92) 100%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(46, 139, 87, 0.14);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-align: center;
            overflow: hidden;
            box-shadow:
                0 18px 40px rgba(46, 139, 87, 0.08),
                inset 0 1px 0 rgba(255,255,255,0.95);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
            transform: translateX(-50%) scaleX(0);
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: 23px;
            border: 1px solid rgba(255,255,255,0.65);
            pointer-events: none;
        }

        .feature-card:hover::before {
            transform: translateX(-50%) scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 
                0 28px 65px rgba(46, 139, 87, 0.16),
                0 0 35px rgba(50, 205, 50, 0.08);
            border-color: rgba(46, 139, 87, 0.24);
        }

        .feature-icon {
            font-size: 2.8rem;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
            color: #2E8B57;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(46, 139, 87, 0.15) 0%, rgba(50, 205, 50, 0.1) 100%);
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-title {
            color: #2c3e50;
            font-weight: 700;
            font-size: 1.15rem;
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-title {
            color: #2E8B57;
        }

        .feature-card-modern {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-card-glow {
            position: absolute;
            top: -60px;
            right: -30px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(50, 205, 50, 0.16) 0%, rgba(50, 205, 50, 0) 70%);
            pointer-events: none;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            background: rgba(46, 139, 87, 0.08);
            color: #2E8B57;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .feature-icon-modern {
            width: 84px;
            height: 84px;
            border-radius: 26px;
            background:
                linear-gradient(145deg, rgba(46, 139, 87, 0.18), rgba(50, 205, 50, 0.06));
            box-shadow:
                0 18px 30px rgba(46, 139, 87, 0.12),
                inset 0 1px 0 rgba(255,255,255,0.85);
        }

        .feature-description {
            color: #63756c;
            font-size: 0.98rem;
            line-height: 1.75;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .feature-meta {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.65rem;
            position: relative;
            z-index: 1;
        }

        .feature-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.65rem 0.9rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.78);
            border: 1px solid rgba(46, 139, 87, 0.1);
            color: #395446;
            font-size: 0.82rem;
            font-weight: 600;
        }

        .feature-meta i {
            color: #2E8B57;
        }

        /* Text Animations */
        .about-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(46, 139, 87, 0.15);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            position: relative;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #2E8B57 0%, #32CD32 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-card:hover::before {
            transform: scaleX(1);
        }

        .about-card:hover {
            transform: translateY(-15px);
            box-shadow: 
                0 20px 60px rgba(46, 139, 87, 0.15),
                0 0 40px rgba(50, 205, 50, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            border-color: rgba(46, 139, 87, 0.3);
        }

        .col-lg-6 h3 {
            background: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            animation: fadeInDown 0.8s ease-out;
        }

        .col-lg-6 p {
            animation: fadeInUp 0.8s ease-out 0.1s both;
            transition: all 0.3s ease;
        }

        .col-lg-6:hover p {
            color: #2E8B57 !important;
        }

        .text-center h2 {
            background: linear-gradient(135deg, #2E8B57 0%, #32CD32 50%, #2E8B57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInDown 0.8s ease-out;
        }

        .text-center > p {
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* News Cards */
        .news-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(46, 139, 87, 0.12);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .news-card:hover::before {
            transform: scaleX(1);
        }

        .news-card:hover {
            transform: translateY(-12px);
            box-shadow: 
                0 20px 50px rgba(46, 139, 87, 0.12),
                0 0 30px rgba(50, 205, 50, 0.08);
            border-color: rgba(46, 139, 87, 0.2);
        }

        .news-card-header {
            height: 160px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .news-card-header::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 30, 20, 0.08) 0%, rgba(11, 30, 20, 0.38) 100%);
        }

        .news-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }

        .news-card:hover .news-card-header {
            transform: scale(1.05);
        }

        .news-card:hover .news-thumbnail {
            transform: scale(1.08);
        }

        .news-card-body {
            padding: 1.5rem 1.4rem 1.6rem;
            display: flex;
            flex-direction: column;
            min-height: 220px;
        }

        .news-date {
            width: fit-content;
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            background: rgba(46, 139, 87, 0.08);
            font-size: 0.8rem;
            color: #2E8B57;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            letter-spacing: 0.01em;
        }

        .news-title {
            font-size: 1.08rem;
            line-height: 1.45;
            font-weight: 700;
            color: #1f3329;
            margin-bottom: 0.85rem;
            min-height: 3.1rem;
        }

        .news-excerpt {
            font-size: 0.92rem;
            color: #66756d !important;
            line-height: 1.55;
            margin-bottom: 1.2rem;
            flex-grow: 1;
        }

        .news-link {
            color: #2E8B57;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .news-link:hover {
            color: #32CD32;
            transform: translateX(3px);
        }

        /* Admission Section */
        .admission-section {
            background: var(--secondary-gradient);
            position: relative;
            overflow: hidden;
        }

        .admission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q5 0 10 10 T20 10 V20 H0 Z" fill="rgba(255,255,255,0.07)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
            opacity: 0.8;
            animation: wave 10s ease-in-out infinite;
            z-index: 0;
        }

        .admission-section .z-1 {
            position: relative;
            z-index: 1;
        }

        .admission-divider {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            animation: slideInUp 0.8s ease-out;
        }

        .admission-title {
            display: inline-block;
            font-size: 2.9rem;
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: #ffffff !important;
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            text-shadow:
                0 4px 10px rgba(0, 0, 0, 0.42),
                0 10px 24px rgba(0, 0, 0, 0.28),
                0 16px 36px rgba(0, 0, 0, 0.16);
            -webkit-text-fill-color: #ffffff !important;
        }

        .admission-perks {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
            color: white;
        }

        .admission-perks:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .admission-perks i {
            transition: all 0.3s ease;
        }

        .admission-perks:hover i {
            transform: scale(1.15) rotate(-15deg);
            color: #FFD700;
        }

        .admission-perks:hover h6,
        .admission-perks:hover p {
            text-shadow:
                0 2px 8px rgba(0, 0, 0, 0.22),
                0 6px 18px rgba(0, 0, 0, 0.14);
        }


        .admission-perks h6 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .admission-perks p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin: 0;
        }

        @keyframes wave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-10px); }
        }

        .admission-btn {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid white;
            color: #20B2AA !important;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .admission-btn:hover {
            background: white;
            transform: scale(1.05) translateY(-3px);
            box-shadow: 
                0 12px 35px rgba(0,0,0,0.2),
                0 0 25px rgba(255,255,255,0.3);
            color: #20B2AA !important;
        }

        .admission-btn:active {
            transform: scale(0.98);
        }

        /* Footer */
        .footer-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-top: 1px solid rgba(46, 139, 87, 0.2);
            position: relative;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.5), transparent);
        }

        .footer-title {
            color: white;
            font-weight: 700;
            position: relative;
            display: inline-block;
            animation: slideInUp 0.8s ease-out;
        }

        .footer-title i {
            transition: all 0.3s ease;
        }

        .footer-title:hover i {
            transform: scale(1.1);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(46, 139, 87, 0.15);
            border-radius: 50%;
            color: #32CD32;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(46, 139, 87, 0.3);
        }

        .social-link:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(46, 139, 87, 0.3);
            border-color: rgba(46, 139, 87, 0.6);
        }

        .social-link i {
            font-size: 0.9rem;
        }

        /* Footer Links */
        .footer-link {
            color: #adb5bd !important;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .footer-link:hover {
            color: #32CD32 !important;
            transform: translateX(5px);
        }

        .footer-icon {
            font-size: 0.7rem;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .footer-link:hover .footer-icon {
            opacity: 1;
            transform: translateX(2px);
        }

        /* Footer Contact */
        .footer-contact {
            animation: slideInUp 0.8s ease-out 0.1s both;
        }

        .footer-contact-icon {
            color: #32CD32;
            margin-right: 0.5rem;
            width: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .footer-contact p:hover .footer-contact-icon {
            transform: scale(1.15);
        }

        .footer-contact a {
            transition: all 0.3s ease;
        }

        .footer-contact a:hover {
            color: #32CD32 !important;
        }

        /* Footer Link Animation */
        .footer-link {
            animation: slideInUp 0.8s ease-out;
        }

        .footer-link:nth-child(1) {
            animation-delay: 0.1s;
        }

        .footer-link:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-link:nth-child(3) {
            animation-delay: 0.3s;
        }

        .footer-link:nth-child(4) {
            animation-delay: 0.4s;
        }

        /* Scroll Animations */
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive improvements */
        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }

            .hero-section {
                height: auto;
                min-height: 60vh;
            }

            .hero-slide {
                height: 60vh;
                min-height: 400px;
            }

            .carousel-item {
                height: 60vh;
                min-height: 400px;
            }

            .hero-title {
                font-size: 2.8rem !important;
            }

            .carousel-caption {
                display: none !important;
            }

            .navbar-brand {
                font-size: 1.3rem !important;
            }

            .card:hover {
                transform: none;
            }

            /* Section headers responsive */
            .display-4 {
                font-size: 2rem !important;
            }

            .section-divider {
                margin: 1rem auto !important;
            }

            /* Stats responsive */
            .stat-card {
                padding: 2rem 1rem !important;
            }

            .stat-card-modern {
                padding-top: 3rem !important;
            }

            .stat-number {
                font-size: 2rem !important;
            }

            .stat-number-modern {
                font-size: 2.4rem !important;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .stat-caption {
                font-size: 0.8rem;
                line-height: 1.4;
            }

            /* News cards responsive */
            .news-card-header {
                height: 140px;
                font-size: 2.5rem;
            }

            /* Admission section responsive */
            .admission-perks {
                margin-bottom: 1rem;
            }

            .admission-btn {
                width: 100%;
                margin-top: 1.5rem;
            }

            /* Footer responsive */
            .footer-title {
                font-size: 1.1rem !important;
            }

            .footer-contact-icon {
                display: inline-block;
            }

            .social-links {
                justify-content: flex-start;
                margin-bottom: 1rem;
            }

            /* Disable hover effects on mobile for dropdown items */
            .dropdown-item:hover {
                color: #495057;
                transform: none;
                text-shadow: none;
            }

            .dropdown-item:hover::before {
                left: -100%;
            }

            /* Add active state for touch devices */
            .dropdown-item:active {
                background: var(--primary-gradient);
                color: white;
                transform: scale(0.98);
            }

            .dropdown-item.touch-active {
                background: var(--primary-gradient);
                color: white;
                transform: scale(0.98);
            }

            /* Feature cards responsive */
            .feature-card {
                margin-bottom: 1.5rem;
            }

            /* About section responsive */
            .about-card-large {
                margin-top: 2rem;
            }

            .visi-misi-box {
                margin-bottom: 1rem;
            }

            .content-title {
                font-size: 1.4rem !important;
            }

            /* Hide some elements on very small screens */
            @media (max-width: 480px) {
                .section-icon {
                    font-size: 2rem !important;
                }

                .stat-card {
                    padding: 1.5rem 1rem !important;
                }

                .news-date {
                    font-size: 0.8rem;
                }

                .footer-contact {
                    font-size: 0.9rem;
                }
            }
        }

        /* Dropdown Menu Styling */
        .dropdown-menu {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            margin-top: 8px;
            animation: dropdownSlideIn 0.3s ease-out;
        }

        @keyframes dropdownSlideIn {
            from {
                opacity: 0;
                transform: translateY(-10px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .dropdown-item {
            color: #495057;
            font-weight: 500;
            padding: 12px 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .dropdown-item:hover::before {
            left: 0;
        }

        .dropdown-item:hover {
            color: white;
            transform: translateX(5px);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .dropdown-divider {
            border-top: 1px solid rgba(0,0,0,0.1);
            margin: 8px 0;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, #000000 0%, #444444 100%);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .social-icons a {
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            color: white !important;
        }

        .top-bar .fas.fa-clock {
            color: #32CD32;
        }

        /* Responsive Top Bar */
        @media (max-width: 768px) {
            .top-bar .row {
                flex-direction: column;
                text-align: center;
            }

            .top-bar .col-md-6 {
                margin-bottom: 0.5rem;
            }

            .social-media {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                margin-bottom: 0.5rem;
            }

            .social-media span {
                display: none;
            }

            .social-icons {
                justify-content: center;
                margin-top: 0.5rem;
            }
        }

        .campus-highlight-title {
            font-size: 18px;
            line-height: 1.45;
            letter-spacing: 0.12em;
            color: #2fb14f;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
        }

        .campus-highlight-text {
            color: #2fb14f;
            font-size: 12px;
            letter-spacing: 0.12em;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .campus-highlight-meta {
            color: #2fb14f;
            font-size: 12px;
            line-height: 1.25;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .campus-highlight-divider {
            height: 3px;
            width: 100%;
            border-radius: 99px;
            background: linear-gradient(90deg, #1ea34a 0%, #e03b3b 100%);
        }
        .campus-highlight-title {
            color: #000000;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .campus-highlight-text,
        .campus-highlight-meta {
            color: #000000;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
        }

        .campus-highlight-divider {
            height: 3px;
            width: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, #1ea34a 0%, #e03b3b 100%);
            transform: scaleX(0);
            transform-origin: center;
            opacity: 0;
            transition: transform 0.45s ease, opacity 0.3s ease;
        }

        .campus-profile-highlight:hover .campus-highlight-divider,
        .campus-profile-highlight:focus-within .campus-highlight-divider {
            transform: scaleX(1);
            opacity: 1;
        }

        /* Rich content safety styles: keep editor output inside container */
        .rich-content {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .rich-content img,
        .rich-content video,
        .rich-content canvas,
        .rich-content svg {
            max-width: 100% !important;
            height: auto !important;
            display: block;
        }

        .rich-content figure {
            max-width: 100% !important;
            margin: 1rem 0;
        }

        .rich-content figure img {
            width: 100%;
            max-width: 100% !important;
        }

        .rich-content iframe,
        .rich-content embed,
        .rich-content object {
            max-width: 100% !important;
        }

        .rich-content table {
            display: block;
            width: 100%;
            max-width: 100% !important;
            overflow-x: auto;
            border-collapse: collapse;
        }

        .rich-content pre {
            max-width: 100%;
            overflow-x: auto;
        }