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

:root {
    --primary: #facc15;
    /* Yellow Logo */
    --primary-dark: #eab308;
    /* Darker Yellow */
    --primary-light: #fef08a;
    /* Light Yellow */
    --secondary: #0f172a;
    /* Dark Navy for contrast */
    --dark: #0f172a;
    /* Navy Blueish Dark */
    --light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--dark) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.navbar {
    background: white !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    padding: 18px 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    mix-blend-mode: multiply;
    /* Menghilangkan kotak putih */
}

.navbar-brand:hover img {
    transform: rotate(5deg) scale(1.1);
}

.brand-text h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin-bottom: -2px;
    color: var(--primary);
    text-transform: uppercase;
}

.brand-text small {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    color: #64748b;
    font-size: 0.65rem;
    text-transform: uppercase;
}

/* Hero Slider */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    padding: 0 15px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Social Media Colors */
.fab.fa-facebook-f {
    color: #1877F2;
    transition: transform 0.3s ease;
}

.fab.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.fab.fa-youtube {
    color: #FF0000;
    transition: transform 0.3s ease;
}

.topbar a:hover i {
    transform: scale(1.3);
}

/* Navbar White Style - Refined from Gambar 2 */
.navbar {
    background-color: var(--white) !important;
    padding: 15px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.brand-text h5 {
    color: var(--primary);
    font-size: 1.6rem;
}

.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Single Yellow Underline from Gambar 2 */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 20px;
    right: 20px;
    background-color: var(--secondary) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

/* Beautiful Dropdown Upgrade */
.dropdown-toggle::after {
    display: none !important;
    /* Hilangkan panah bawaan yang bikin berantakan */
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 15px !important;
    animation: slideDown 0.3s ease;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s;
    color: #475569;
}

.dropdown-item:hover {
    background-color: rgba(251, 191, 36, 0.1);
    /* Kuning lembut */
    color: var(--secondary);
    /* Teks Kuning */
    transform: translateX(5px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Badge & Button Colors (Matching Logo) */
.hero-content .badge {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    padding: 10px 20px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3);
    animation: pulse-yellow 2s infinite;
}

.hero-content .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    color: var(--dark) !important;
    font-weight: 800;
    padding: 12px 30px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-content .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.hero-content .btn-outline-light {
    border-width: 2px !important;
    padding: 10px 28px !important;
    border-radius: 10px !important;
    /* Tidak terlalu bulat */
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-content .btn-outline-light:hover {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulse-yellow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(250, 204, 21, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
    }
}

.hero-content h1,
.hero-content p,
.hero-content .d-flex {
    animation: fadeInUp 1s ease-out both;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-content .d-flex {
    animation-delay: 0.6s;
}

/* Fix Desktop Styles (Ensure these are NOT inside media queries) */
.hero-content {
    text-align: left; /* Desktop tetap kiri */
}

.hero-content .btn {
    width: auto !important; /* Tombol desktop kembali kecil/otomatis */
    display: inline-block;
}

/* Vertical Separator for Desktop */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child):not(.no-sep)::after {
        content: "|";
        color: rgba(0,0,0,0.06);
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Principal Tag Mobile Adjustment */
@media (max-width: 768px) {
    .principal-tag-premium {
        padding: 12px 20px !important;
        font-size: 0.8rem;
        bottom: 20px !important;
        border-radius: 0 10px 10px 0 !important;
    }

    .principal-tag-premium h6 {
        font-size: 0.9rem;
    }

    .principal-tag-premium small {
        font-size: 0.65rem;
    }

    .principal-img-container {
        padding: 10px !important;
    }

    .principal-img-container::before {
        margin-top: 10px !important;
        margin-left: 10px !important;
    }

    .sambutan-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .quote-icon {
        font-size: 2rem !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .hero-content .btn {
        width: 75% !important; /* Tombol dibuat tidak terlalu panjang (75% saja) */
        padding: 10px 15px !important; /* Dirampingkan */
        font-size: 0.85rem !important; /* Ukuran teks proporsional HP */
    }

    .hero-section {
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-slider, .carousel-item {
        height: 100vh !important; /* Satu Layar Penuh di HP */
        min-height: 100vh !important;
    }

    .hero-content {
        text-align: center !important;
        padding: 0 15px;
        margin-top: -40px; /* Angkat konten sedikit ke atas agar tidak mendelep */
    }

    .hero-content h1 {
        font-size: 1.8rem !important; /* Dirampingkan lagi */
        margin-bottom: 10px !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
        line-height: 1.4;
    }

    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .hero-content .btn {
        width: 70% !important; /* Lebih ramping lagi */
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }
}

/* Admin Pill Button - Yellow Accent Style */
.btn-admin {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--dark) !important;
    border-radius: 50px;
    padding: 6px 22px !important;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

/* Initial fadeInUp fix */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Sambutan Section Premium Style */
.sambutan-section {
    background: radial-gradient(circle at 10% 10%, rgba(250, 204, 21, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(250, 204, 21, 0.03) 0%, transparent 40%),
                #ffffff;
    position: relative;
    overflow: hidden;
}

.decor-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#facc15 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 0;
}

.decor-dots-1 { top: 50px; left: 50px; }
.decor-dots-2 { bottom: 50px; right: 50px; }

.sambutan-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.principal-img-container {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.principal-img-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
    margin-top: 15px;
    margin-left: 15px;
    opacity: 0.3;
}

.principal-img-container img {
    transition: var(--transition);
    border: 8px solid white;
}

.principal-img-container:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.principal-tag-premium {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: rgba(250, 204, 21, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 25px 35px;
    border-radius: 0 20px 20px 0;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-left: 8px solid var(--dark);
    transition: var(--transition);
}

.principal-img-container:hover .principal-tag-premium {
    transform: translateX(10px);
}

.principal-tag-premium h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.principal-tag-premium small {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.sambutan-content h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.quote-wrapper {
    position: relative;
    padding-top: 40px;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.2;
}

.sambutan-text {
    font-style: italic;
    color: #475569;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.school-info-mini {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.school-info-mini img {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* Footer Premium Dark Theme */
.footer {
    background-color: #0c1222; /* Slightly darker navy */
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(250, 204, 21, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    padding: 80px 0 30px;
    color: #94a3b8;
    border-top: 4px solid var(--primary);
    position: relative;
}

/* Gaya Minimalis: Ikon Berwarna Tanpa Background Bulat */
.footer .social-links {
    display: flex !important;
    gap: 30px !important; /* Jarak yang sangat lega */
    margin-top: 20px !important;
    align-items: center;
}

.footer .social-links a {
    font-size: 2rem !important; /* Ukuran Logo Besar & Jelas */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.footer .social-links a:hover {
    transform: translateY(-8px) scale(1.2) !important;
    filter: brightness(1.2) !important;
}

.footer .social-links a:active {
    transform: scale(0.9) !important;
}

/* Warna Langsung ke Ikon */
.footer .social-links a.facebook { color: #1877f2 !important; }
.footer .social-links a.instagram { 
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer .social-links a.youtube { color: #ff0000 !important; }

.footer h5 {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .footer h5::after {
        left: 0;
        transform: none;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links .btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    transition: var(--transition);
}

.footer .brand-text {
    text-align: left;
}

@media (max-width: 767px) {
    .footer .d-flex.align-items-center.mb-4 {
        justify-content: center;
    }
    .footer .social-links {
        justify-content: center;
        display: flex;
    }
    .footer-links li {
        text-align: center;
        font-size: 0.85rem; /* Slightly smaller for mobile side-by-side */
    }
    .footer .brand-text {
        text-align: center;
    }
    .footer ul.footer-links li.d-flex {
        justify-content: center;
    }
    /* Adjust h5 spacing for side-by-side */
    .footer h5 {
        font-size: 1.1rem;
    }
}

.social-links .btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Page Headers Premium */
.page-header-premium {
    position: relative;
    padding: 70px 0 50px;
    background-color: #0c1222;
    overflow: hidden;
}

.page-header-premium h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.page-header-premium .header-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

.breadcrumb-premium .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-premium .breadcrumb-item + .breadcrumb-item::before {
    content: "\2022";
    color: var(--primary);
    padding: 0 15px;
}

/* Section Headings */
.section-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

/* Custom Badges */
.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
}

/* News Card Premium Animations */
.card-news-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--white);
    position: relative;
    z-index: 1;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* --- PPDB REDESIGN UTILITIES --- */

.glass-hero {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(15, 23, 42, 0.05));
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.glass-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float-slow 10s infinite alternate;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px; /* Tidak terlalu bulat sosis */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.15);
}

.icon-box-premium {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white), var(--light));
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.glass-card:hover .icon-box-premium {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: var(--dark) !important;
}

/* Process Flow Connectors */
.process-wrapper {
    position: relative;
}

@media (min-width: 992px) {
    .process-connector {
        position: absolute;
        top: 40px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e2e8f0 0, #e2e8f0 10px, transparent 10px, transparent 20px);
        z-index: -1;
    }
}

/* Redesign Alur Proses (Fix Gambar Terakhir) */
.process-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.process-icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-wrapper {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(10deg) scale(1.1);
}

.process-step-label {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    color: rgba(250, 204, 21, 0.4);
    font-family: 'Outfit', sans-serif;
}

.animated-bg-text {
    background: linear-gradient(to right, var(--primary) 20%, var(--primary-dark) 40%, var(--primary-dark) 60%, var(--primary) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes float-slow {
    from { transform: translate(0, 0); }
    to { transform: translate(10%, 10%); }
}

.stat-card-premium {
    padding: 30px;
    text-align: center;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-card-premium:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.badge-news {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

.news-title {
    transition: color 0.3s ease;
}

/* Hover Effects */
.card-news-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-news-premium:hover .news-img {
    transform: scale(1.1);
}

.card-news-premium:hover .news-title {
    color: var(--primary) !important;
}
/* Hover Lift & Click Animations */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.teacher-card-img img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover .teacher-card-img img {
    transform: scale(1.08);
}

.hover-lift:active {
    transform: scale(0.96) translateY(2px) !important;
    transition: transform 0.1s ease !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Responsive Vision Text */
@media (max-width: 768px) {
    .vision-text-mobile {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
}

.gallery-img-full {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-news-premium:hover .gallery-img-full {
    transform: scale(1.1);
}

/* Floating Animations for PPDB Hero */
@keyframes float-hero-card {
    0% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(3deg); }
}

@keyframes float-badge-card {
    0% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(-5deg); }
}

.float-img-card {
    animation: float-hero-card 6s ease-in-out infinite;
}

.float-badge-card {
    animation: float-badge-card 5s ease-in-out infinite;
}

.btn-primary, .btn-dark {
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-primary:active, .btn-dark:active {
    transform: scale(0.94);
}
