
/* Navbar Resets */
.navbar { background-color: #6ee7b7; padding: 0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background-color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; padding: 8px; box-sizing: border-box; }
.logo-text { display: flex; flex-direction: column; }
.logo-text h1 { font-size: 1.2rem; color: #064e3b; font-weight: 700; line-height: 1.2; margin: 0; }
.logo-text p { font-size: 0.75rem; color: #064e3b; font-weight: 500; margin: 0; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; }
.nav-links li { position: relative; }
.nav-links a { text-decoration: none; color: #064e3b; font-weight: 600; font-size: 0.95rem; padding: 8px 12px; border-radius: 8px; transition: all 0.3s ease; position: relative; }
.nav-links a:hover { background-color: rgba(6, 78, 59, 0.1); }
.nav-links a.active { background-color: transparent; border-bottom: 2px solid #064e3b; border-radius: 0; padding-bottom: 5px; }

.btn-bubble { border: 1px solid #064e3b !important; color: #064e3b !important; background-color: transparent !important; padding: 8px 24px !important; border-radius: 20px !important; font-weight: 600 !important; cursor: pointer; transition: all 0.3s ease; display: inline-block; text-decoration: none; }
.btn-bubble:hover { background-color: #064e3b !important; color: #ffffff !important; }

/* ==========================================================================
   DESIGN VARIABLES & SYSTEM
   ========================================================================== */
:root {
    --primary: #127142;           /* Grass Green */
    --primary-light: #168a51;     /* Lighter Grass Green */
    --primary-rgb: 18, 113, 66;
    --accent: #f59e0b;            /* Soft Amber Gold Accent */
    --accent-glow: rgba(245, 158, 11, 0.15);
    --bg-gradient: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); /* Clean Clinical Slate-White */
    --text-main: #0f172a;         /* Deep Slate Dark */
    --text-muted: #475569;        /* Cool Slate Gray */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    overflow-y:scroll;
    width:100%;
}

body{
    font-family: var(--font-body);
    background: var(--bg-gradient);
    color: var(--text-main);
    overflow-x:hidden;
    position: relative;
    min-height: 100vh;
    width:100%;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    min-height: 100vh;
}

.bg-blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Background Blur Blobs */
.blur-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
    animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
    background: rgba(16, 185, 129, 0.25); /* Mint green */
    top: -150px;
    left: -150px;
}

.blob-2 {
    background: rgba(245, 158, 11, 0.12); /* Gold */
    top: 30%;
    right: -200px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.blob-3 {
    background: rgba(6, 78, 59, 0.15); /* Deep emerald */
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

img{
    width:100%;
    display:block;
    border-radius: 12px;
}

a{
    text-decoration:none;
    color: inherit;
    transition: all 0.3s ease;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================================================================
   NAVBAR (GLASSMORPHISM & CAPSULE HOVER SYSTEM)
   ========================================================================== */
/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    max-width:100%;
    z-index:999;
    background: rgba(var(--primary-rgb), 0.85);
    color:white;
    box-shadow:0 8px 32px rgba(var(--primary-rgb), 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled{
    background: rgba(110, 231, 183, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:65px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    background:white;
    color:#064e3b;
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    transition:all .3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
}

.logo h2{
    font-size:18px;
    font-weight:700;
    line-height:1;
    margin:0;
}

.logo span{
    font-size:11px;
    font-weight:300;
    opacity:.9;
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:white;
    font-weight:500;
    position:relative;
    padding:6px 0;
    opacity:0.95;
    transition: opacity 0.3s;
}

.nav-menu a:hover{
    opacity:1;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:3px;
    background:white;
    transition:.3s;
    border-radius:2px;
}

/* --- EDIT POTONGAN KODE KHUSUS ACTIVE & HOVER INI --- */

.nav-menu a.active::after,
.nav-menu a:hover::after,
.nav-menu a:active::after,
.nav-menu a:focus::after,
.dropdown.active-dropdown > a::after {
    /* Menjalankan animasi bernama 'garisJalan Terus' secara berulang tanpa henti */
    animation: garisJalanTerus 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* --- LOGIKA ANIMASI BERULANG --- */
@keyframes garisJalanTerus {
    0% {
        left: 0;
        width: 0;
    }
    50% {
        left: 0;
        width: 100%; /* Melebar penuh */
    }
    100% {
        left: 100%;   /* Bergeser hilang ke kanan */
        width: 0;
    }
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color: white;
}

/* ==========================================================================
   HERO (GRADIENTS & FLOAT ANIMATION)
   ========================================================================== */
.hero{
    padding-top:150px;
    padding-bottom:60px;
    background: transparent;
    position: relative;
}

.hero-content{
    display:grid;
    grid-template-columns:1.35fr 0.95fr;
    align-items:center;
    gap:40px;
}

.hero-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    width: 100%;
    max-width: 100%;
    font-family: Arial, Helvetica, sans-serif !important;
}

.hero-text h1,
.hero-text h2,
.hero-text h3 {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text h2{
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hero-text h1{
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-text h3{
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero-text h4{
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    line-height: 1.5;
    padding-left: 0;
    white-space: nowrap;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.slider-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    border-radius: 36px;
}

.slider-container img.active {
    opacity: 1;
    z-index: 2;
}

/* ==========================================================================
   SEARCH BAR (GLASS CAPSULE & FOCUS GLOW)
   ========================================================================== */
.search-section{
    padding:40px 0;
    position: relative;
    z-index: 10;
}

.search-box{
    display:flex;
    align-items:center;
    background: rgba(255, 255, 255, 0.65);
    border-radius:50px;
    border:1.5px solid rgba(6, 78, 59, 0.08);
    padding:0 28px;
    box-shadow:0 8px 30px rgba(6, 78, 59, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-box:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 12px 30px rgba(6, 78, 59, 0.08), 0 0 0 4px rgba(16, 185, 129, 0.15);
    background: #ffffff;
}

.search-box .search-icon-left{
    color: var(--text-muted);
    font-size:18px;
}

.search-box .search-icon-right{
    color: var(--primary);
    font-size:18px;
    cursor:pointer;
    transition: transform 0.2s;
}

.search-box .search-icon-right:hover {
    transform: scale(1.1);
}

.search-box input{
    flex:1;
    border:none;
    padding:18px 16px;
    font-size:16px;
    outline:none;
    color: var(--text-main);
    background: transparent;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
}

.section-title p{
    color:#777;
    margin-top:10px;
}

.section-title-left{
    text-align:left;
    margin-bottom:40px;
}

.section-title-left h2{
    font-size:34px;
    font-weight:700;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-title-left h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 4px;
    animation: garisJalanTerus 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ==========================================================================
   CARDS (GLASSMORPHISM, HOVER LIFTS, CAPSULE BUTTONS)
   ========================================================================== */
.kategori,
.edukasi{
    padding:60px 0;
    position: relative;
    z-index: 10;
    scroll-margin-top: 100px; /* Offset for fixed navbar */
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background: rgba(255, 255, 255, 0.7);
    border-radius:24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow:hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:0 10px 30px rgba(6, 78, 59, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    display:flex;
    align-items:center;
    padding:30px;
    gap:20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(6, 78, 59, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.card-left{
    flex:1.4;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.card-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card-right img{
    width:100%;
    max-width:170px;
    height:auto;
    object-fit:contain;
    transition: transform 0.4s;
}

.card:hover .card-right img {
    transform: scale(1.05);
}

.card h3{
    color: var(--primary);
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.card p{
    margin-bottom:24px;
    color: var(--text-muted);
    line-height:1.5;
    font-size:15px;
}

.card-btn{
    display:inline-block;
    background: var(--primary);
    color:white;
    padding:10px 28px;
    border-radius:50px;
    font-weight:600;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-btn:hover{
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.card-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   EDUKASI CARDS
   ========================================================================== */
.edu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.edu-card{
    background: rgba(255, 255, 255, 0.7);
    border-radius:20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding:24px;
    display:flex;
    align-items:center;
    gap:20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:0 10px 30px rgba(6, 78, 59, 0.03);
    text-align:left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.edu-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(6, 78, 59, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
}

.edu-card-left{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.edu-card-left img{
    width:100%;
    max-width:110px;
    height:auto;
    object-fit:contain;
    transition: transform 0.4s;
}

.edu-card:hover .edu-card-left img {
    transform: scale(1.05) rotate(2deg);
}

.edu-card-right{
    flex:1.6;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.edu-card-right h3{
    color: var(--primary);
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.3;
}

.edu-card-right p{
    color: var(--text-muted);
    font-size:14px;
    line-height:1.4;
    margin-bottom:16px;
}

.edu-btn{
    display:inline-block;
    background: var(--primary);
    color:white;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.edu-btn:hover{
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25);
}

.edu-btn:active {
    transform: translateY(0);
}

/* =========================
FOOTER
========================= */

/* Premium Footer Styling */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 30px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    max-width: 750px;
    margin: 0 auto;
    gap: 60px;
    align-items: start;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-info .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info .logo-icon {
    background: white;
    color: #095230;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-info .logo h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.footer-info .logo h3 span {
    font-size: 10px;
    font-weight: 300;
    opacity: 0.8;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #2dd4bf; /* Mint highlight */
    border-radius: 2px;
    animation: moveLine 2s infinite ease-in-out;
}

@keyframes moveLine {
    0% { transform: translateX(0); width: 30px; }
    50% { transform: translateX(10px); width: 45px; }
    100% { transform: translateX(0); width: 30px; }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: 'â€º';
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    transform: translateX(2px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;

}



.footer-bottom p {

    margin: 0;

}



.text-center{

    text-align:center;

}







/* Navbar */

.nav-menu {

    display: flex;

    list-style: none;

    gap: 30px;

    align-items: center;

}



.nav-menu li {

    position: relative;

}



.nav-menu a {

    text-decoration: none;

    color: #333;

    padding: 10px 0;

    display: block;

}



/* Dropdown */

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,.1);

    list-style: none;

    padding: 8px 0;



    /* Sembunyikan */

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 100;

}



.dropdown-menu li a {

    padding: 10px 20px;

    color: #333;

}



.dropdown-menu li a:hover {

    background: #f3f4f6;

    color: #2e7d32;

}



/* Tampilkan saat hover */

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

/* ==========================================================================

   NAVBAR (MODERN & MINIMALIS - TEKS PUTIH)

   ========================================================================== */

.nav-menu {

    display: flex;

    list-style: none;

    gap: 15px; 

    align-items: center;

    font-family: 'Poppins', sans-serif;

}



.nav-menu li {

    position: relative;

}



/* Link Menu Utama (Teks Putih) */

.nav-menu > li > a {

    text-decoration: none;

    color: #ffffff; /* Mengubah warna default menjadi putih */

    padding: 10px 18px;

    display: flex;

    align-items: center;

    gap: 6px;

    font-weight: 500;

    font-size: 15px;

    border-radius: 8px;

    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

}



/* Hover Menu Utama (Teks tetap putih, background menggelap/terang transparan) */

.nav-menu > li:hover > a {

    color: #ffffff; 

    background: rgba(255, 255, 255, 0.15); /* Efek glass transparan saat di-hover */

}



/* ==========================================================================

   DROPDOWN (DARK GLASSMORPHISM / MENYESUAIKAN TEKS PUTIH)

   ========================================================================== */

.dropdown-menu {

    position: absolute;

    top: 115%; 

    left: 0;

    min-width: 200px;

    

    /* Mengubah background dropdown menjadi agak gelap agar teks putih terlihat kontras */

    background: rgba(30, 30, 30, 0.9); 

    backdrop-filter: blur(10px); 

    -webkit-backdrop-filter: blur(10px);

    

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px; 

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

    list-style: none;

    padding: 8px; 



    /* Animasi Keluar/Sembunyi */

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px) scale(0.95); 

    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s; 

    z-index: 100;

}



/* Item di Dalam Dropdown */

.dropdown-menu li {

    margin-bottom: 2px;

}



.dropdown-menu li:last-child {

    margin-bottom: 0;

}



/* Link di dalam Dropdown (Teks Putih) */

.dropdown-menu li a {

    padding: 10px 16px;

    color: rgba(255, 255, 255, 0.85); /* Putih sedikit soft agar elegan */

    font-size: 14px;

    font-weight: 400;

    border-radius: 10px; 

    display: block;

    text-decoration: none;

    transition: all 0.25s ease;

}



/* Hover Item Dropdown (Efek Hijau Khas Anda) */

.dropdown-menu li a:hover {

    background: #2e7d32; /* Background berubah hijau saat di-hover */

    color: #ffffff; /* Teks tetap putih solid */

    transform: translateX(6px); 

    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4); 

}



/* ==========================================================================

   TRIGGER & MICRO-INTERACTIONS

   ========================================================================== */

/* Tampilkan saat hover */

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0) scale(1);

}



/* Otomatis memutar tanda panah (â–¾) */

.dropdown:hover > a span,

.dropdown:hover > a i {

    transform: rotate(180deg);

    color: #ffffff;

}



/* Animasi transisi untuk panah */

.nav-menu a span, 

.nav-menu a i {

    display: inline-block;

    transition: transform 0.3s ease;

}

/* ==========================================================================

   STYLE KHUSUS UNTUK TOMBOL LOGIN KEKINIAN

   ========================================================================== */



/* 1. Mengubah list item terakhir (Login) menjadi pembungkus tombol */

.nav-menu > li.action-item {

    margin-left: 10px; /* Memberikan jarak pemisah dari menu reguler */

}



/* 2. Mengubah tampilan link login menjadi sebuah tombol */

.nav-menu > li.action-item > a {

    background: rgba(255, 255, 255, 0.15); /* Efek transparan modern */

    color: #ffffff !important;

    padding: 8px 24px;                     /* Membuat ukurannya proporsional seperti tombol */

    border: 1.5px solid rgba(255, 255, 255, 0.4);

    border-radius: 50px;                   /* Membuat sudut membulat sempurna (pill shape) */

    font-weight: 600;

    letter-spacing: 0.5px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

}



/* 3. Efek interaksi ketika tombol Login di-hover */

.nav-menu > li.action-item > a:hover {

    background: #ffffff;                  /* Berubah menjadi putih padat */

    color: #064e3b !important;            /* Warna teks berubah menjadi hijau gelap navbar */

    transform: translateY(-2px);          /* Efek sedikit terangkat ke atas */

    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3); /* Efek cahaya (glow) putih */

}



/* 4. Efek ketika tombol Login diklik (Active press) */

.nav-menu > li.action-item > a:active {

    transform: translateY(0);             /* Kembali ke posisi semula saat ditekan */

    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);

}



/* 5. Mematikan fungsi animasi garis bawah (::after) khusus untuk tombol Login */

.nav-menu > li.action-item > a::after {

    display: none !important;

}



/* ==========================================================================

   MOBILE DROPDOWN OVERRIDES (APPENDED AT END FOR MAXIMUM PRIORITY)

   ========================================================================== */

@media(max-width:768px){

    .nav-menu {

        gap: 16px !important;

    }

    

    .nav-menu > li.action-item {

        margin-left: 0 !important;

        margin-top: 10px;

    }



    .nav-menu > li.action-item > a {

        border-radius: 8px !important;

        text-align: center;

        justify-content: center;

    }



    .dropdown-menu {

        position: static !important;

        opacity: 0 !important;

        visibility: hidden !important;

        max-height: 0 !important;

        overflow: hidden !important;

        transform: none !important;

        box-shadow: none !important;

        background: rgba(255, 255, 255, 0.08) !important;

        border: none !important;

        border-radius: 10px !important;

        margin-top: 5px !important;

        padding: 0 10px !important;

        width: 100% !important;

        min-width: 100% !important;

        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease !important;

    }

    

    .dropdown-menu.show-mobile {

        opacity: 1 !important;

        visibility: visible !important;

        max-height: 250px !important;

        padding: 8px 10px !important;

    }



    .dropdown-menu li a {

        padding: 10px 16px !important;

        color: rgba(255, 255, 255, 0.9) !important;

        text-align: left !important;

    }

    

    .dropdown-menu li a:hover {

        transform: none !important;

        background: rgba(255, 255, 255, 0.15) !important;

        box-shadow: none !important;

    }



    /* Rotate arrow icon on active mobile dropdown */

    .dropdown.active-dropdown > a span,

    .dropdown.active-dropdown > a i {

        transform: rotate(180deg) !important;

        color: #ffffff !important;

    }

    

    /* Ensure the mobile triggers are flex containers for icon alignment */

    .nav-menu > li > a {

        justify-content: space-between;

        width: 100%;

    }

}



/* ==========================================================================

   MODAL & ADMIN COMPONENT STYLES

   ========================================================================== */

.modal {

    display: none;

    position: fixed;

    z-index: 10000;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    overflow-y: auto;

    background-color: rgba(6, 78, 59, 0.45);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

}



.modal.show {

    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding: 40px 10px;

}



.modal-content {

    background-color: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.5);

    padding: 35px;

    border-radius: 28px;

    width: 90%;

    max-width: 500px;

    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.25);

    position: relative;

    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    margin: auto;

}



.trimester-content-modal {

    max-width: 650px;

}



@keyframes modalSlideIn {

    from {

        transform: translateY(-30px) scale(0.95);

        opacity: 0;

    }

    to {

        transform: translateY(0) scale(1);

        opacity: 1;

    }

}



.close-modal {

    position: absolute;

    right: 24px;

    top: 20px;

    font-size: 30px;

    font-weight: bold;

    color: var(--text-muted);

    cursor: pointer;

    transition: color 0.2s, transform 0.2s;

}



.close-modal:hover {

    color: var(--text-main);

    transform: scale(1.1);

}



.form-group {

    margin-bottom: 24px;

    text-align: left;

}



.form-group label {

    display: block;

    font-weight: 600;

    margin-bottom: 8px;

    color: var(--text-muted);

    font-size: 14px;

}



.form-group input {

    width: 100%;

    padding: 14px;

    border: 1.5px solid #e5e7eb;

    border-radius: 12px;

    font-size: 15px;

    outline: none;

    transition: all 0.3s ease;

}



.form-group input:focus {

    border-color: var(--primary-light);

    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);

    background: white;

}



.editable-content {

    text-align: left;

    margin-top: 20px;

    line-height: 1.6;

    color: var(--text-main);

}



.editable-content[contenteditable="true"] {

    border: 2.5px dashed var(--primary-light);

    padding: 20px;

    border-radius: 16px;

    background-color: rgba(16, 185, 129, 0.04);

    outline: none;

    box-shadow: inset 0 2px 8px rgba(6, 78, 59, 0.02);

}



.editable-content h4 {

    color: var(--primary);

    font-size: 18px;

    margin-bottom: 12px;

    font-weight: 700;

}



.editable-content p {

    margin-bottom: 14px;

}



.editable-content ul {

    list-style-type: disc;

    margin-left: 20px;

    margin-top: 10px;

    margin-bottom: 15px;

}



.editable-content li {

    margin-bottom: 8px;

}



.admin-badge {

    position: fixed;

    bottom: 24px;

    right: 24px;

    background: var(--primary);

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    z-index: 99999;

    box-shadow: 0 10px 25px rgba(6, 78, 59, 0.2);

    display: flex;

    align-items: center;

    gap: 15px;

    font-weight: 600;

    font-size: 14px;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.admin-badge button {

    background: white;

    color: var(--primary);

    border: none;

    padding: 6px 14px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 700;

    font-size: 12px;

    transition: all 0.3s;

    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}



.admin-badge button:hover {

    background: #f3f4f6;

    transform: translateY(-1px);

}



/* ==========================================================================

   CONSOLIDATED MOBILE RESPONSIVE MEDIA QUERIES (APPENDED AT VERY END)

   ========================================================================== */

@media(max-width:992px){

    .hero{

        padding-top:120px;

        padding-bottom:40px;

    }



    .hero-content{

        grid-template-columns:1fr;

        text-align:center;

        gap:30px;

    }



    .hero-text{

        align-items:center;

        text-align:center;

    }



    .hero-text h2{

        font-size:30px;

    }



    .hero-text h1{

        font-size:44px;

        margin-bottom:20px;

    }



    .hero-text h3{

        font-size:20px;

    }



    .hero-text h4{

        font-size:16px;

        white-space: normal;

    }



    .card-grid{

        grid-template-columns:1fr;

        gap:24px;

    }



    .pilar-grid{

        grid-template-columns:1fr !important;

        gap:20px !important;

    }



    .edu-grid{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }



    .edu-card{

        flex-direction:column !important;

        text-align:center !important;

        align-items:center !important;

        padding:20px !important;

    }



    .edu-card-right{

        align-items:center !important;

        text-align:center !important;

    }

}



@media(max-width:768px){

    .blur-blob {

        display: none !important;

    }



    .navbar{

        background: rgba(110, 231, 183, 0.95) !important;

        backdrop-filter: blur(10px) !important;

        -webkit-backdrop-filter: blur(10px) !important;

    }



    .navbar.scrolled{

        background: rgba(110, 231, 183, 0.98) !important;

    }



    .navbar .container{

        height:70px;

    }



    .nav-menu{

        position:absolute !important;

        top:70px !important;

        left:-100% !important;

        width:100% !important;

        background: rgba(var(--primary-rgb), 0.95) !important;

        backdrop-filter: blur(12px) !important;

        -webkit-backdrop-filter: blur(12px) !important;

        flex-direction:column !important;

        padding:30px 40px !important;

        transition:.3s ease-in-out !important;

        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;

        gap:16px !important;

        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;

        display: flex !important;

        align-items: flex-start !important;

    }



    .nav-menu.active{

        left:0 !important;

    }



    .nav-menu li {

        width: 100% !important;

    }



    .nav-menu a {

        padding: 10px 18px !important;

        text-align: left !important;

        display: flex !important;

        justify-content: space-between !important;

        width: 100% !important;

        border-radius: 8px !important;

        color: #ffffff !important;

    }



    .nav-menu a:hover,

    .nav-menu a.active {

        background: rgba(255, 255, 255, 0.15) !important;

    }



    .nav-menu > li.action-item {

        margin-left: 0 !important;

        margin-top: 10px !important;

    }



    .nav-menu > li.action-item > a {

        justify-content: center !important;

        border-radius: 50px !important;

    }



    .menu-toggle{

        display:block !important;

        color: white !important;

    }



    .hero-text h2{

        font-size:28px !important;

    }



    .hero-text h1{

        font-size:40px !important;

        margin-bottom:20px !important;

    }



    .hero-text h3{

        font-size:18px !important;

    }



    .hero-text h4{

        font-size:18px !important;

    }



    .search-section{

        padding:20px 0 !important;

    }



    .search-box{

        padding:0 16px !important;

    }



    .search-box input{

        padding:16px 10px !important;

        font-size:15px !important;

    }



    .card{

        flex-direction:column-reverse !important;

        text-align:center !important;

        align-items:center !important;

        padding:24px !important;

    }



    .card-left{

        align-items:center !important;

        text-align:center !important;

    }



    .edu-grid{

        grid-template-columns:1fr !important;

        gap:20px !important;

    }



    .section-title-left{

        text-align:center !important;

        margin-bottom:24px !important;

    }



    .section-title-left h2{

        font-size:28px !important;

    }



    /* mobile dropdown menu system */

    .dropdown-menu {

        position: static !important;

        opacity: 0 !important;

        visibility: hidden !important;

        max-height: 0 !important;

        overflow: hidden !important;

        transform: none !important;

        box-shadow: none !important;

        background: rgba(255, 255, 255, 0.08) !important;

        border: none !important;

        border-radius: 10px !important;

        margin-top: 5px !important;

        padding: 0 10px !important;

        width: 100% !important;

        min-width: 100% !important;

        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease !important;

    }

    

    .dropdown-menu.show-mobile {

        opacity: 1 !important;

        visibility: visible !important;

        max-height: 250px !important;

        padding: 8px 10px !important;

    }



    .dropdown-menu li a {

        padding: 10px 16px !important;

        color: rgba(255, 255, 255, 0.9) !important;

        text-align: left !important;

    }

    

    .dropdown-menu li a:hover {

        transform: none !important;

        background: rgba(255, 255, 255, 0.15) !important;

        box-shadow: none !important;

    }



    /* Rotate arrow icon on active mobile dropdown */

    .dropdown.active-dropdown > a span,

    .dropdown.active-dropdown > a i {

        transform: rotate(180deg) !important;

        color: #ffffff !important;

    }

}



@media(max-width:500px){

    .hero{

        padding-top:100px !important;

    }



    .hero-text h2{

        font-size:24px !important;

    }



    .hero-text h1{

        font-size:32px !important;

        margin-bottom:16px !important;

    }



    .hero-text h3{

        font-size:16px !important;

    }



    .hero-text h4{

        font-size:16px !important;

    }



    .logo h2{

        font-size:18px !important;

    }



    .logo span{

        display:none !important;

    }

}



@media(max-width:480px){

    .admin-badge {

        bottom: 16px !important;

        right: 16px !important;

        padding: 8px 16px !important;

        font-size: 12px !important;

        gap: 10px !important;

    }

    .admin-badge button {

        padding: 4px 10px !important;

        font-size: 11px !important;

    }

}



/* Pilar Kesehatan - Clinic Style Section */

.pilar-card {

    transition: all 0.3s ease !important;

}

.pilar-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08) !important;

    border-color: rgba(20, 184, 166, 0.3) !important;

}

.pilar-card:hover .pilar-icon {

    transform: scale(1.05);

    background: var(--primary) !important;

    color: white !important;

}

.pilar-icon {

    transition: all 0.3s ease !important;

}



/* Responsive Footer Grid */

@media(max-width:768px){

    footer .footer-content {

        grid-template-columns: 1fr !important;

        gap: 25px !important;

        text-align: center !important;

    }

    footer .footer-info,

    footer .footer-links {

        align-items: center !important;

        text-align: center !important;

    }

    footer .logo {

        justify-content: center !important;

    }

}

/* Scroll to Top Button */

#scrollToTopBtn {

    display: none;

    position: fixed;

    bottom: 30px;

    right: 30px;

    z-index: 9999;

    font-size: 18px;

    border: none;

    outline: none;

    background-color: #eab308;

    color: white;

    cursor: pointer;

    padding: 10px 14px;

    border-radius: 8px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

    opacity: 0;

    pointer-events: none;

}



#scrollToTopBtn.show {

    display: block;

    opacity: 1;

    pointer-events: auto;

}



#scrollToTopBtn:hover {

    background-color: #ca8a04;

    transform: translateY(-5px);

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

}

/* Search Dropdown Styles */

.search-results-dropdown {

    position: absolute;

    top: calc(100% + 10px);

    left: 0;

    right: 0;

    background: white;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    max-height: 350px;

    overflow-y: auto;

    z-index: 1000;

    display: none;

    text-align: left;

    border: 1px solid #e5e7eb;

}

.search-results-dropdown.show {

    display: block;

}

.search-result-item {

    padding: 15px 20px;

    border-bottom: 1px solid #e5e7eb;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: var(--text-color);

    text-decoration: none;

    transition: background 0.2s;

}

.search-result-item:last-child {

    border-bottom: none;

}

.search-result-item:hover {

    background: #f9fafb;

}

.search-result-title {

    font-weight: 600;

    font-size: 15px;

    color: var(--primary);

}

.search-result-type {

    font-size: 12px;

    color: var(--text-muted);

}

.search-no-results {

    padding: 20px;

    text-align: center;

    color: var(--text-muted);

    font-style: italic;

}



/* Scroll Animations */

@keyframes slideInFromRight {

    0% {

        opacity: 0;

        transform: translateX(80px);

    }

    100% {

        opacity: 1;

        transform: translateX(0);

    }

}



.animate-from-right {

    opacity: 0;

}

.animate-from-right.show-animate {

    animation: slideInFromRight 0.8s ease-out forwards;

}



@keyframes blurFadeIn {

    0% {

        opacity: 0;

        filter: blur(15px);

    }

    100% {

        opacity: 1;

        filter: blur(0);

    }

}



.animate-blur-fade {

    opacity: 0;

    filter: blur(15px);

}

.animate-blur-fade.show-animate {

    animation: blurFadeIn 1.2s ease-out forwards;

}



@keyframes slideUpFadeIn {

    0% {

        opacity: 0;

        transform: translateY(60px);

    }

    100% {

        opacity: 1;

        transform: translateY(0);

    }

}



.animate-slide-up {

    opacity: 0;

}

.animate-slide-up.show-animate {

    animation: slideUpFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;

}



/* Cool Pop-In Animation for Edukasi Gizi */

@keyframes popInFade {

    0% {

        opacity: 0;

        transform: scale(0.85) translateY(50px) rotateX(15deg);

    }

    100% {

        opacity: 1;

        transform: scale(1) translateY(0) rotateX(0);

    }

}



.animate-pop-in {

    opacity: 0;

    perspective: 1000px;

    transform-style: preserve-3d;

}

.animate-pop-in.show-animate {

    animation: popInFade 0.9s cubic-bezier(0.2, 0.8, 0.2, 1.1) forwards;

}



/* ==========================================

   IMAGE LIGHTBOX

   ========================================== */

.image-lightbox-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    background: rgba(0, 0, 0, 0.85);

    z-index: 9999;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: opacity 0.3s ease;

    cursor: zoom-out;

}

.image-lightbox-overlay.show {

    opacity: 1;

}

.image-lightbox-img {

    max-width: 90%;

    max-height: 90%;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.5);

    transform: scale(0.9);

    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1.1);

}

.image-lightbox-overlay.show .image-lightbox-img {

    transform: scale(1);

}

.lightbox-close {

    position: absolute;

    top: 30px;

    right: 40px;

    color: white;

    font-size: 30px;

    cursor: pointer;

    transition: transform 0.2s ease;

}

.lightbox-close:hover {

    transform: scale(1.2);

}

.recipe-title-img {

    cursor: zoom-in;

}



/* === Scroll to Top Button v2 === */

.scroll-to-top {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 45px;

    height: 45px;

    background-color: #f6c015 !important;

    color: white !important;

    border-radius: 8px !important;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    z-index: 10000;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    border: none;

    outline: none;

}


.scroll-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-to-top:hover {
    background-color: #dfac10 !important;
    transform: translateY(-3px);
}

/* Enhanced Card Hover Effect */
.card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.27) !important;
}
.card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15), 0 0 20px rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}

/* Enhanced Hover Effect for Edukasi Cards */
.edu-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.27) !important;
}
.edu-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15), 0 0 20px rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}

/* Outline Blue Button for Login */
.btn-outline-blue {
    display: inline-block;
    padding: 8px 32px;
    background-color: transparent !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-blue:hover {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Outline White Button for Login (Better Contrast) */
.btn-outline-white {
    display: inline-block;
    padding: 8px 32px;
    background-color: transparent !important;
    border: 2px solid #ffffff !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* ================= FIX SCROLL TOP BUTTON ================= */
.footer-bottom p {
    padding: 0 50px !important;
}
.scroll-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #f59e0b !important;
    color: white !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    box-shadow: none !important; 
    cursor: pointer !important;
    z-index: 10000 !important;
}

/* ================= HIDE GARBLED FOOTER ICONS ================= */
.footer-links a::before {
    display: none !important;
    content: '' !important;
}

/* Global Pagination Styling */
.ih-page-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.ih-page-btn:hover {
    background: #f1f5f9;
}

.ih-page-btn.active {
    background: #5ba84a;
    color: #fff;
    border-color: #5ba84a;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,0.2);
}

/* ================= GOOEY FOOTER ================= */
.gooey-footer-container {
    position: relative;
    width: 100%;
    margin-top: 100px;
    background: transparent;
    overflow: hidden; /* To ensure particles don't spill horizontally */
}

.goo-svg {
    position: absolute;
    width: 0;
    height: 0;
}

.goo-footer {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: #6ee7b7;
    filter: url('#goo');
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
    margin-top: 100px;
}

.goo-footer-content {
    position: relative;
    z-index: 10;
    padding: 0 5%;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    bottom: 100%; /* Important: start at the top edge of the green block */
    left: var(--pos-x, 50%);
    width: var(--dim, 2rem);
    height: var(--dim, 2rem);
    background: #6ee7b7;
    border-radius: 50%;
    animation: liquidUp var(--dur, 3s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
}

@keyframes liquidUp {
    0% {
        transform: translateY(100%) scale(1.2);
    }
    100% {
        transform: translateY(calc(-1 * var(--uplift, 10rem))) scale(0.5);
    }
}

.goo-footer .footer-links a, 
.goo-footer .footer-info p,
.goo-footer .footer-info h3,
.goo-footer .footer-info h3 span,
.goo-footer h4,
.goo-footer .footer-bottom p {
    color: #064e3b !important;
}

.goo-footer .footer-info .logo-icon {
    background: rgba(255, 255, 255, 0.9);
}
