html {
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    color: #333333;
    
}

.search-container {
    position: relative;
}

.search-input {
    padding-left: 45px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.no-results {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 2rem 0;
}

.scroll-text {
    animation: fadeMove 2s infinite;
}

.scroll-down-btn i {
    animation: bounce 1.5s infinite;
    transition: transform 0.3s ease;
}

.scroll-down-btn i:hover {
    transform: scale(1.2);
}

/* Animasi teks */
@keyframes fadeMove {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* Animasi icon */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}


.search-box {
    position: relative;
    width: 200px;
    transition: all 0.4s ease;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}

.search-box input {
    border-radius: 50px;
    padding: 10px 15px;
    padding-left: 40px;
    /* biar gak nabrak icon */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Animasi saat fokus */
.search-box input:focus {
    border-color: #54BCBD;
    box-shadow: 0 0 12px rgba(84, 188, 189, 0.5);
    outline: none;
}

.search-box input:focus+.search-icon,
.search-box:focus-within .search-icon {
    color: #54BCBD;
    transform: translateY(-50%) scale(1.2);
}



/* SECTION HERO INDEX */
.tag-hero {
    font-size: 4.5rem;
    /* default untuk layar besar */
}

/* Tablet */
@media (max-width: 1440px) {
    .tag-hero {
        font-size: 3.8rem;
    }
}

@media (max-width: 1024px) {
    .tag-hero {
        font-size: 3.3rem;
    }
}

/* HP sedang */
@media (max-width: 768px) {
    .tag-hero {
        font-size: 2.5rem;
    }
}

/* HP kecil */
@media (max-width: 576px) {
    .tag-hero {
        font-size: 2rem;
    }
}


.tag-hero-big {
    font-size: 6rem;
    /* default untuk layar besar */
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
}

/* Hilangkan caret default */
.no-caret::after {
    display: none !important;
}

/* Dropdown muncul saat hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* biar nempel */
}


/* Tablet */
@media (max-width: 1440px) {

    .tag-hero-big {
        font-size: 5.5rem;
    }
}

@media (max-width: 1024px) {
    .tag-hero-big {
        font-size: 5rem;
    }
}

/* HP sedang */
@media (max-width: 768px) {
    .tag-hero-big {
        font-size: 4rem;
    }
}

/* HP kecil */
@media (max-width: 576px) {
    .tag-hero-big {
        font-size: 3rem;
        margin-left: 5rem;
    }
}


.custom-navbar .nav-link {
    position: relative;
    color: white;
    transition: all 0.4s ease;
    letter-spacing: 0px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.custom-navbar .nav-link:hover {
    color: #573f38 !important;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.411);
    backdrop-filter: blur(10px);
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #3C2C27, #97766b, #3C2C27);
    transition: width 0.6s ease-in-out;
}

.custom-navbar .nav-link:hover::after {
    width: 100%;
}

/* Enhanced Button Magazine dengan slide effect */
.custom-navbar .btn-outline-light {
    border-color: white;
    color: white;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.custom-navbar .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #97766b, #3C2C27);
    transition: left 0.5s ease;
    z-index: -1;
}

.custom-navbar .btn-outline-light:hover {
    color: white !important;
    border-color: #97766b;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(151, 118, 107, 0.6);
}

.custom-navbar .btn-outline-light:hover::before {
    left: 0;
}

/* Enhanced Icons - Simple & Clean */
.custom-navbar .fa-user,
.custom-navbar .fa-bars {
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    padding: 8px;
    border-radius: 50%;
}

.custom-navbar .fa-user:hover,
.custom-navbar .fa-bars:hover {
    color: #3C2C27;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.9);
}

/* Tombol utama floating */
.socmed-floating {
    position: fixed;
    bottom: 50px;
    left: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    transition: background 0.3s ease, color 0.3s ease;
}

.socmed-floating:hover {
    background: #333;
    color: #54BCBD;
}

/* Default state tombol sosmed */
.socmed-floating a {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    /* biar ga bisa di klik sebelum animasi */
    transform: scale(0);
    /* start dari kecil */
    opacity: 0;
    /* start transparan */
}

/* GSAP yang bakal ubah ini, jadi hapus opacity di .active */
.socmed-floating.active a {
    pointer-events: auto;
}


/* Hover brand color */
.socmed-floating a.tiktok:hover {
    background: #000;
    color: #fff;
}

.socmed-floating a.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.socmed-floating a.instagram:hover {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
    color: #fff;
}

.socmed-floating a.twitter:hover {
    background: #000;
    color: #fff;
}



/* Default style semua */



.hero-socmed {
    position: absolute;
    top: var(--navbar-height, 100px);
    bottom: 2rem;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: 2rem;
    z-index: 2;
    opacity: 0;
    /* untuk GSAP animation */
}

/* Garis atas dan bawah sebagai elemen real */
.socmed-line {
    flex: 1;
    width: 3px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);

    /* Untuk animasi muncul dari atas ke bawah */
    transform: scaleY(0);
    transform-origin: top;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.socmed-line.bottom {
    transform-origin: bottom;
}

/* Animasi yang lebih smooth saat garis muncul */
.hero-socmed.animate-lines .socmed-line {
    transform: scaleY(1);
}

/* Container untuk icon sosmed */
.socmed-icons {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

/* Enhanced social media icons dengan better hover */
.hero-socmed a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    color: white;

    /* Initial state untuk animasi */
    transform: translateX(-50px);
    opacity: 0;
}

.hero-socmed a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.hero-socmed a:hover {
    transform: scale(1.2) rotate(10deg) translateX(8px);
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-socmed a:hover::before {
    transform: scale(1);
}

/* Warna hover untuk setiap platform */
.hero-socmed a:nth-child(1):hover {
    /* TikTok */
    color: #ff0050 !important;
    filter: drop-shadow(0 0 8px #ff0050);
}

.hero-socmed a:nth-child(2):hover {
    /* Facebook */
    color: #4267B2 !important;
    filter: drop-shadow(0 0 8px #4267B2);
}

.hero-socmed a:nth-child(3):hover {
    /* Instagram */
    color: #ff8844 !important;
    filter: drop-shadow(0 0 8px #ff8844);
}

.hero-socmed a:nth-child(4):hover {
    /* Twitter */
    color: #1a1a1a !important;
    filter: drop-shadow(0 0 8px #333333);
}

/* Efek shimmer pada garis */
.socmed-line.top {
    animation: shimmer-line 3s ease-in-out infinite alternate;
}

.socmed-line.bottom {
    animation: shimmer-line 3s ease-in-out infinite alternate-reverse;
}

@keyframes shimmer-line {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

/* Variasi tanpa garis untuk halaman lain */
.hero-socmed.no-lines .socmed-line {
    display: none;
}

.hero-socmed.no-lines {
    justify-content: center;
}

/* Enhanced button primary - Fixed */
.btn-primary {
    position: relative;
    overflow: hidden;
    --bs-btn-color: #fff;
    --bs-btn-bg: #533F39;
    --bs-btn-border-color: #533F39;

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6b5049;
    /* lebih terang dikit */
    --bs-btn-hover-border-color: #644a44;

    --bs-btn-focus-shadow-rgb: 83, 63, 57;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3e2e29;
    /* lebih gelap */
    --bs-btn-active-border-color: #362824;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #533F39;
    --bs-btn-disabled-border-color: #533F39;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 2;
}

/* Navbar backdrop blur enhancement */
.custom-navbar {
    transition: all 0.5s ease;
    z-index: 1000;
}

/* Hamburger Overlay Styles */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3C2C27 0%, #533F39 50%, #6b5049 100%);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.overlay-content {
    width: 90%;
    max-width: 400px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: white;
    padding: 1rem 0;
    box-sizing: border-box;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.overlay-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
}

.overlay-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-menu li a:hover {
    color: #f0f0f0;
    opacity: 0.8;
}
/* Dropdown style */
.overlay-dropdown {
    position: relative;
  }
  .overlay-dropdown .dropdown-toggle::after {
    display: none !important;
  }
  
  .overlay-dropdown .dropdown-toggle {
    cursor: pointer;
  }
  
  .overlay-submenu {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .overlay-submenu li a {
    font-size: 0.95rem;
    opacity: 0.9;
    justify-content: flex-start;
  }
  
  .overlay-dropdown.open .overlay-submenu {
    display: flex;
  }
  
  .overlay-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  


.overlay-contact {
    flex-shrink: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.overlay-socmed {
    flex-shrink: 0;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.overlay-socmed a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.overlay-socmed a:hover {
    transform: scale(1.1);
    color: #f0f0f0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-height: 600px) {
    .overlay-content {
        justify-content: flex-start;
        gap: .5rem;
    }
    
    .overlay-header {
        margin-bottom: .5rem;
    }
    
    .overlay-nav {
        flex: none;
    }
    
    .overlay-menu {
        gap: 0.1rem;
    }
    
    .overlay-menu li a {
        font-size: 1rem;
    }
    
    .overlay-contact {
        margin-top: .5rem;
        gap: 0.1rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .overlay-socmed {
        margin-top: .5rem;
    }
    
    .overlay-socmed a {
        font-size: 1.3rem;
    }
}

@media (max-height: 500px) {
    .overlay-content {
        padding: 0.1rem 0;
    }
    
    .overlay-header {
        margin-bottom: 0.1rem;
    }
    
    .overlay-logo {
        width: 40px;
        height: 40px;
    }
    
    .overlay-contact {
        margin-top: 0.1rem;
    }
    
    .overlay-socmed {
        margin-top: 0.1rem;
    }
}

/* Very small screens - enable scrolling */
@media (max-height: 400px) {
    .hamburger-overlay {
        align-items: flex-start;
        padding: .5rem 0;
    }
    
    .overlay-content {
        min-height: auto;
        justify-content: flex-start;
    }
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

.close-btn:hover {
    color: #ff6b6b;
    transform: rotate(0deg) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.overlay-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(-100px);
}

.overlay-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    display: block;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.overlay-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.overlay-menu a:hover {
    color: #fff;
    transform: translateX(10px);
    letter-spacing: 1px;
}

.overlay-menu a:hover::before {
    left: 0;
}

.overlay-magazine {
    opacity: 0;
    transform: scale(0.8);
}

.overlay-magazine .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    padding: 12px 30px;
}

.overlay-magazine .btn:hover {
    background: white;
    color: #3C2C27;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.overlay-contact {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #97766b;
    width: 20px;
}

.overlay-socmed {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(50px);
}

.overlay-socmed a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.overlay-socmed a:hover {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlay-menu a {
        font-size: 1.3rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .overlay-socmed a {
        font-size: 1.5rem;
        padding: 12px;
    }
}

/* Hero Section */



















.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    /* selalu bulat */
    background-color: #22789F;
    opacity: 1;
    transition: all 0.4s ease-in-out;
    /* animasi halus untuk width, color, opacity */
    border: none;
    /* hilangkan border default bootstrap */
    margin: 0 5px;
    /* jarak antar indikator */
}

.carousel-indicators .active {
    background-color: #ffffff;
    opacity: 1;
    width: 50px;
    /* melar jadi pill */
    border-radius: 25px;
    /* pill sempurna, bukan cembung */
}



.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(red 50%, color-mix(in srgb, red, transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, red, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid red;
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


.btn-prev-custom,
.btn-next-custom {
    color: #000000;
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: ease 0.8s;
}

.btn-prev-custom {
    left: -50px;
}

.btn-next-custom {
    right: -50px;
}

@media (max-width: 580px) {
    .btn-prev-custom {
        left: 32%;
        top: 105%;
    }

    .btn-next-custom {
        right: 32%;
        top: 105%;
    }
}

.btn-prev-custom:hover,
.btn-next-custom:hover {
    color: #3e2e29;
    transform: translateY(-50%) scale(1.2);
}


/* ===== ANIMASI SECTION LAINNYA ===== */

/* Tentang Kami Section Enhancements */
.tentang-section .btn-light {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border: none;
    transition: all 0.4s ease;
}

.tentang-section .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5B4E49, #3C2C27);
    transition: left 0.4s ease;
    z-index: -1;
}

.tentang-section .btn-light:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 78, 73, 0.3);
}

.tentang-section .btn-light:hover::before {
    left: 0;
}

/* Card Hover Effects untuk Tentang Section */
.tentang-section .card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.tentang-section .card:hover {
    transform: translateY(-15px);
    /* hapus rotateX dan rotateY */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tentang-section .card img {
    transition: all 0.4s ease;
}

.tentang-section .card:hover img {
    transform: scale(1.05);
    /* hapus rotate */
}

/* Program Section Enhancements */
.program-section .btn-info {
    position: relative;
    overflow: hidden;
    background: #17a2b8;
    border: none;
    transition: all 0.4s ease;
}

.program-section .btn-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.program-section .btn-info:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.4);
    background: #138496;
}

.program-section .btn-info:hover::before {
    width: 300px;
    height: 300px;
}

/* Program Cards dengan 3D effect */
.program-section .card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: none;
}

.program-section .card:hover {
    transform: translateY(-20px);
    /* hapus rotateX dan rotateY */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.program-section .card img {
    transition: all 0.5s ease;
}


.program-section .card-body {
    transition: all 0.3s ease;
}

.program-section .card:hover .card-body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Footer Section Enhancements */
.footer-section .btn-light {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
    border: none;
}

.footer-section .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #22789F, #1a5f7a);
    transition: left 0.5s ease;
    z-index: -1;
}

.footer-section .btn-light:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(34, 120, 159, 0.4);
}

.footer-section .btn-light:hover::before {
    left: 0;
}

/* Social Media Icons Enhancement */
.footer-section .overlay-socmed a {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-section .overlay-socmed a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.footer-section .overlay-socmed a:hover {
    transform: translateY(-8px) scale(1.2) rotate(10deg);
}

.footer-section .overlay-socmed a:hover::before {
    width: 100px;
    height: 100px;
}

/* Specific colors untuk social media */
.footer-section .overlay-socmed a:nth-child(1):hover {
    background: #4267B2;
    box-shadow: 0 10px 25px rgba(66, 103, 178, 0.4);
}

.footer-section .overlay-socmed a:nth-child(2):hover {
    background: #ff0050;
    box-shadow: 0 10px 25px rgba(255, 0, 80, 0.4);
}

.footer-section .overlay-socmed a:nth-child(3):hover {
    background: #1a1a1a;
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.4);
}

.footer-section .overlay-socmed a:nth-child(4):hover {
    background: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* Customer Service Button Animation */
.cs-button {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.cs-button:hover {
    transform: translateY(-10px) scale(1.1) rotate(5deg) translateX(-50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}

.cs-button img {
    transition: all 0.3s ease;
}

.cs-button:hover img {
    transform: scale(1.2);
}

/* YouTube Play Button Enhancement */
.pulsating-play-btn {
    transition: all 0.3s ease;
}

.pulsating-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(1.2);
}

/* Counter Animation Enhancement */
.purecounter {
    transition: all 0.3s ease;
}

.footer-section .col-md-2:hover .purecounter,
.footer-section .col-md-4:hover h1 {
    transform: scale(1.05);
    color: #22789F;
}

/* Smooth scroll behavior */
html,
body {
    scroll-behavior: auto !important;
}

/* Loading animation untuk images */
.tentang-section img,
.program-section img {
    transition: opacity 0.3s ease;
}

/* Parallax effect untuk background sections */
.tentang-section,
.program-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}


.isotope-filters {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.isotope-filters li {
    position: relative;
    overflow: hidden;
}

.isotope-filters li button {
    background: transparent;
    color: #705F59;
    box-shadow: none !important;
    border: none;
    padding: 12px 12px;
    border-radius: 25px;
    font-weight: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.isotope-filters li button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.isotope-filters li button:hover::before {
    left: 100%;
}

.isotope-filters li button:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.isotope-filters li.filter-active button {
    font-weight: 500;
    color: #000000;
    transform: translateY(-2px);
    background: #54BCBD;
    /* warna background */
    border-radius: 200px;
    /* biar nggak kaku */
    transition: all 0.3s ease;
    /* animasi halus */
}


/* Counter badge */
.filter-count {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Isotope container */
.isotope-layout {
    position: relative;
}

.isotope-container {
    position: relative;
}

/* Isotope item */
.isotope-item {
    position: relative;
    margin-bottom: 30px;
}

/* Card hover effects dengan GSAP nanti */
.donation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Loading state */
.isotope-layout.loading {
    pointer-events: none;
}

.isotope-layout.loading .isotope-filters li button {
    opacity: 0.7;
}

/* Filter title */
.filter-title {
    color: #5B4E49;
    font-weight: 600;
    margin-right: 20px;
}

/* Hover effect untuk navigation links di footer */
.footer-section .border-start a {
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 5px;
}

.footer-section .border-start a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    border-radius: 5px;
}

.footer-section .border-start a:hover {
    color: #ffffff !important;
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-section .border-start a:hover::before {
    width: 100%;
}

.footer-section .d-flex.py-3 a {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 0, 0, 0.3) !important;
}

.footer-section .d-flex.py-3 a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.footer-section .d-flex.py-3 a:hover {
    transform: translateY(-8px) scale(1.15);
    color: white !important;
}

.footer-section .d-flex.py-3 a:hover::before {
    width: 80px;
    height: 80px;
}

/* Warna spesifik untuk setiap platform */
.footer-section .d-flex.py-3 a:nth-child(1):hover {
    background: #4267B2 !important;
    box-shadow: 0 15px 30px rgba(66, 103, 178, 0.4);
}

.footer-section .d-flex.py-3 a:nth-child(1):hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.footer-section .d-flex.py-3 a:nth-child(2):hover {
    background: #ff0050 !important;
    box-shadow: 0 15px 30px rgba(255, 0, 80, 0.4);
}

.footer-section .d-flex.py-3 a:nth-child(2):hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.footer-section .d-flex.py-3 a:nth-child(3):hover {
    background: #1a1a1a !important;
    box-shadow: 0 15px 30px rgba(26, 26, 26, 0.4);
}

.footer-section .d-flex.py-3 a:nth-child(3):hover::before {
    background: rgba(255, 255, 255, 0.1);
}

.footer-section .d-flex.py-3 a:nth-child(4):hover {
    background: #ff0000 !important;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.footer-section .d-flex.py-3 a:nth-child(4):hover::before {
    background: rgba(255, 255, 255, 0.2);
}



.hero-bg {
            background: linear-gradient(135deg, #22789F 0%, #2e8bb3 50%, #22789F 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255,255,255,0.1) 50%, 
                transparent 70%);
            animation: shine 3s infinite;
            pointer-events: none;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        /* Animasi floating untuk cards */
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        /* Efek hover untuk kartu program terkini */
        .program-card {
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .program-card:hover {
            transform: translateY(-5px);
            border-color: #22789F;
            box-shadow: 0 15px 35px rgba(34, 120, 159, 0.2) !important;
        }
        
        /* Gradient text untuk angka statistik */
        .gradient-number {
            background: linear-gradient(135deg, #22789F, #17a2b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Efek glow untuk tombol */
        .btn-glow {
            box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
            transition: all 0.3s ease;
        }
        
        .btn-glow:hover {
            box-shadow: 0 0 30px rgba(40, 167, 69, 0.6);
            transform: translateY(-2px);
        }
        
        /* Loading animation untuk counter */
        .counter-loading {
            position: relative;
        }
        
        .counter-loading::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #22789F, #17a2b8);
            animation: loadingBar 2s ease-out forwards;
        }
        
        @keyframes loadingBar {
            to { width: 100%; }
        }



        .text-info
        {
            color: #2E91B5 !important;
        }
        .stat-tittle
        {
            color: #185B77 !important;
        }

        .btn-info {
            position: relative;
            overflow: hidden;
        
            --bs-btn-color: #fff;
            --bs-btn-bg: #22789F;              /* warna utama */
            --bs-btn-border-color: #22789F;
        
            --bs-btn-hover-color: #fff;
            --bs-btn-hover-bg: #2E91B5;        /* lebih terang dikit */
            --bs-btn-hover-border-color: #2A89AB;
        
            --bs-btn-focus-shadow-rgb: 34, 120, 159;
        
            --bs-btn-active-color: #fff;
            --bs-btn-active-bg: #185B77;       /* lebih gelap */
            --bs-btn-active-border-color: #154F67;
            --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
        
            --bs-btn-disabled-color: #fff;
            --bs-btn-disabled-bg: #22789F;
            --bs-btn-disabled-border-color: #22789F;
        }



        .ellipsis-1 {
            display: -webkit-box;
            -webkit-line-clamp: 1;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        .ellipsis-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        .ellipsis-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
          .ellipsis-html {
            display: -webkit-box;
            -webkit-line-clamp: 3; /* jumlah baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .ellipsis-4 {
            display: -webkit-box;
            -webkit-line-clamp: 4;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        .ellipsis-5 {
            display: -webkit-box;
            -webkit-line-clamp: 5;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        .ellipsis-6 {
            display: -webkit-box;
            -webkit-line-clamp: 6;   /* maksimal 3 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
          }
          
        