/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --bs-primary: #1e3a8a;   /* biru navy elegan */
    --bs-success: #03994C;   /* hijau */
    --bs-warning: #eab308;   /* gold */
    --bs-danger: #dc2626;    /* merah */
    --bs-info: #0284c7;      /* biru muda */

    --bs-primary-rgb: 30, 58, 138;   /* dari #1e3a8a */
    --bs-success-rgb: 3, 153, 76;   /* dari #16a34a */
    --bs-warning-rgb: 238, 129, 50;   /* dari #eab308 */
    --bs-danger-rgb: 237, 28, 36;   /* dari #eab308 */
  }

 /* === Base kursor === */
.kursor {
    width: 50px;
    height: 50px;
    border: 2px solid #4dff00;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: 
      width 0.25s ease,
      height 0.25s ease,
      background-color 0.25s ease,
      border 0.25s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 0 12px rgba(46, 154, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* === Titik di tengah === */
  .kursor::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #4dff00;
    border-radius: 50%;
    display: block;
  }
  
  /* === Hover effect (penuh warna dengan opacity 20%) === */
  .kursor.hover {
    width: 80px;
    height: 80px;
    background-color: #2f9c0088;
    box-shadow: 0 0 25px #2f9c0088;
    border-color: #2f9c0088;
  }
  
  
  /* === Animasi glow halus === */
  @keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 204, 0.6); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 204, 0.8); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 204, 0.6); }
  }
  /* .kursor {
    animation: pulse .1s infinite;
  } */
  

  .top-0 { top: 0% !important; }
  .top-5 { top: 5% !important; }
  .top-10 { top: 10% !important; }
  .top-15 { top: 15% !important; }
  .top-20 { top: 20% !important; }
  .top-25 { top: 25% !important; }
  .top-30 { top: 30% !important; }
  .top-35 { top: 35% !important; }
  .top-40 { top: 40% !important; }
  .top-45 { top: 45% !important; }
  .top-50 { top: 50% !important; }
  .top-55 { top: 55% !important; }
  .top-60 { top: 60% !important; }
  .top-65 { top: 65% !important; }
  .top-70 { top: 70% !important; }
  .top-75 { top: 75% !important; }
  .top-80 { top: 80% !important; }
  .top-85 { top: 85% !important; }
  .top-90 { top: 90% !important; }
  .top-95 { top: 95% !important; }
  .top-100 { top: 100% !important; }
  
  /* BOTTOM */
  .bottom-0 { bottom: 0% !important; }
  .bottom-5 { bottom: 5% !important; }
  .bottom-10 { bottom: 10% !important; }
  .bottom-15 { bottom: 15% !important; }
  .bottom-20 { bottom: 20% !important; }
  .bottom-25 { bottom: 25% !important; }
  .bottom-30 { bottom: 30% !important; }
  .bottom-35 { bottom: 35% !important; }
  .bottom-40 { bottom: 40% !important; }
  .bottom-45 { bottom: 45% !important; }
  .bottom-50 { bottom: 50% !important; }
  .bottom-55 { bottom: 55% !important; }
  .bottom-60 { bottom: 60% !important; }
  .bottom-65 { bottom: 65% !important; }
  .bottom-70 { bottom: 70% !important; }
  .bottom-75 { bottom: 75% !important; }
  .bottom-80 { bottom: 80% !important; }
  .bottom-85 { bottom: 85% !important; }
  .bottom-90 { bottom: 90% !important; }
  .bottom-95 { bottom: 95% !important; }
  .bottom-100 { bottom: 100% !important; }
  
  /* START (kiri) */
  .start-0 { left: 0% !important; }
  .start-5 { left: 5% !important; }
  .start-10 { left: 10% !important; }
  .start-15 { left: 15% !important; }
  .start-20 { left: 20% !important; }
  .start-25 { left: 25% !important; }
  .start-30 { left: 30% !important; }
  .start-35 { left: 35% !important; }
  .start-40 { left: 40% !important; }
  .start-45 { left: 45% !important; }
  .start-50 { left: 50% !important; }
  .start-55 { left: 55% !important; }
  .start-60 { left: 60% !important; }
  .start-65 { left: 65% !important; }
  .start-70 { left: 70% !important; }
  .start-75 { left: 75% !important; }
  .start-80 { left: 80% !important; }
  .start-85 { left: 85% !important; }
  .start-90 { left: 90% !important; }
  .start-95 { left: 95% !important; }
  .start-100 { left: 100% !important; }
  
  /* END (kanan) */
  .end-0 { right: 0% !important; }
  .end-5 { right: 5% !important; }
  .end-10 { right: 10% !important; }
  .end-15 { right: 15% !important; }
  .end-20 { right: 20% !important; }
  .end-25 { right: 25% !important; }
  .end-30 { right: 30% !important; }
  .end-35 { right: 35% !important; }
  .end-40 { right: 40% !important; }
  .end-45 { right: 45% !important; }
  .end-50 { right: 50% !important; }
  .end-55 { right: 55% !important; }
  .end-60 { right: 60% !important; }
  .end-65 { right: 65% !important; }
  .end-70 { right: 70% !important; }
  .end-75 { right: 75% !important; }
  .end-80 { right: 80% !important; }
  .end-85 { right: 85% !important; }
  .end-90 { right: 90% !important; }
  .end-95 { right: 95% !important; }
  .end-100 { right: 100% !important; }




body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb; 
    color: #1a1a1a;
    overflow-x: hidden;
}

.about-us {
    background-image: url('../img/bg1.png'); /* ganti dengan URL gambarmu */
    background-size: cover;       /* supaya gambar menutupi seluruh area */
    background-position: center;  /* posisikan gambar di tengah */
    background-repeat: no-repeat; /* jangan ulangi gambar */
    height: 100%;
    position: relative;                /* tinggi section */
}

.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;
    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;
}

/* 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;
    }
}

.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;
}

/* ===== NAVBAR STYLES ===== */
.custom-navbar {
    transition: all 0.5s ease;
    z-index: 1000;
}

.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;
}

/* Simple & Elegant Hover Effect */
.custom-navbar .nav-link {
    position: relative;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.custom-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

.custom-navbar .nav-link:hover::before {
    width: 80%;
}

/* Navbar Glassmorphism */
.navbar-glass {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Icons Hover */
.custom-navbar .fa-user,
.custom-navbar .fa-bars {
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.custom-navbar .fa-user:hover,
.custom-navbar .fa-bars:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* ===== RESPONSIVE FIX ===== */
/* Container navbar hijau yang overflow */
.custom-navbar .bg-success {
    width: 100%;
    max-width: 100%;
}

.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    /* selalu bulat */
    background-color: #2E9A00;
    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 */
}

/* bagian sosmed */
.socmed-link-hero {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  
  /* Hover efek */
  .socmed-link-hero:hover {
    color: #EE8132; /* warna ikon berubah jadi oren */
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(238, 129, 50, 0.9), 0 0 30px rgba(238, 129, 50, 0.6);
  }
  
  /* Garis bawah glowing */
  .socmed-link-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EE8132, #ffb366);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .socmed-link-hero:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(238, 129, 50, 0.8), 0 0 20px rgba(238, 129, 50, 0.5);
  }
.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    color: white !important;
}

/* Perbaikan bagian sosmed */
#socmed-wrapper {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.socmed-link-hero {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

/* Hover efek */
.socmed-link-hero:hover {
    color: #EE8132;
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(238, 129, 50, 0.9), 0 0 30px rgba(238, 129, 50, 0.6);
}

/* Garis bawah glowing */
.socmed-link-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EE8132, #ffb366);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 2px;
}

.socmed-link-hero:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(238, 129, 50, 0.8), 0 0 20px rgba(238, 129, 50, 0.5);
}

.socmed-text {
    color: #ffffff;
}

/* Pastikan image sosmed terlihat */
#socmed-img {
    cursor: pointer;
    transition: all 0.3s ease;
}



.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(rgb(0, 255, 42) 50%, color-mix(in srgb, rgb(0, 255, 34), 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, rgb(0, 255, 0), 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 rgb(0, 255, 13);
    transform: scale(20);
}




/* ABOUT US SECTION */
.garis {
    width: 3px;
    height: 150px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.garis::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Initial states untuk animasi - semua dari atas */
.about-title {
    opacity: 0;
    transform: translateY(-50px);
}

.garis-top {
    opacity: 0;
    transform: translateY(-30px) scaleX(0);
}

.about-text {
    opacity: 0;
    transform: translateY(-50px);
}

.garis-bottom {
    opacity: 0;
    transform: translateY(-30px) scaleX(0);
}

.gallery-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

/* Circle container */
.circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Outer circle with pulse animation */
.circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Middle circle */
.circle-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Inner circle with icon */
.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon */
.icon {
    width: 40px;
    height: 40px;
    background: white;
    mask: url('../img/ic1.svg') no-repeat center;
    mask-size: contain;
}

.icon2 {
    width: 40px;
    height: 40px;
    background: white;
    mask: url('../img/ic3.svg') no-repeat center;
    mask-size: contain;
}

.icon3 {
    width: 40px;
    height: 40px;
    background: white;
    mask: url('../img/ic2.svg') no-repeat center;
    mask-size: contain;
}

/* Card */
.gallery-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.4s ease;
}

.gallery-card .card-icon {
    width: 35px;
    height: 35px;
    background: white;
    mask: url('../img/icon.svg') no-repeat center;
    mask-size: contain;
    margin-bottom: 10px;
}

.gallery-card .card-icon2 {
    width: 35px;
    height: 35px;
    background: white;
    mask: url('../img/icon2.svg') no-repeat center;
    mask-size: contain;
    margin-bottom: 10px;
}
.gallery-card .card-icon3 {
    width: 35px;
    height: 35px;
    background: white;
    mask: url('../img/icon3.svg') no-repeat center;
    mask-size: contain;
    margin-bottom: 10px;
}

.gallery-card h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

/* Hover effects */
.gallery-wrapper:hover .circle-container {
    transform: translate(-50%, -50%) scale(1.05);
}

.gallery-wrapper:hover .circle-inner {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.gallery-wrapper:hover .gallery-card {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Pulse animation keyframes */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}


/* SECTION CAROUSEL PERTAMA ( ABOUT US) */
.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 216, 29, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Tombol kiri dan kanan */
.btn-prev {
    left: -20px;
}

.btn-next {
    right: -20px;
}

/* Hover efek */
.custom-nav:hover {
    background: #0d7200;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.custom-nav i {
    font-size: 20px;
}



/* SECTION DOWNLOAD 5 ICON */

.animation-container {
    position: relative;
    width: clamp(200px, 50vw, 400px); /* max 400px, tapi bisa kecil di HP */
    height: clamp(200px, 50vw, 400px);
  }
  
  /* SVG lingkaran */
  .circle-border {
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Gambar tengah */
  .center-image {
    width: 65%;
    height: 65%;
    z-index: 2;
  }
  
  /* Ikon melingkar */
  .icon-circle {
    position: absolute;
    width: 15%;
    height: 15%;
    z-index: 3;
  }
  
  /* Posisi masing-masing ikon */
  .icon-1 { top: 5%; left: 50%; transform: translate(-50%, -50%); }
  .icon-2 { top: 25%; right: 0%; transform: translate(50%, 0); }
  .icon-3 { bottom: 0%; left: 50%; transform: translate(-50%, 50%); }
  .icon-4 { top: 25%; left: 0%; transform: translate(-50%, 0); }
  .icon-5 { bottom: 15%; right: 15%; }
  
  /* Responsive tweak untuk layar kecil */
  @media (max-width: 576px) {
    .icon-circle {
      width: 18%;
      height: 18%;
    }
    .center-image {
      width: 70%;
      height: 70%;
    }
  }


  /* NAVBAR SECTION */

  /* Navbar Glassmorphism */
  .navbar-glass {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(40, 167, 69, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.hamburger-menu.active {
    right: 0;
}

.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.hamburger-overlay.active {
    display: block;
}

.close-hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
  







  /* Untuk Chrome, Edge, dan Safari */
div[style*="overflow-y: auto"]::-webkit-scrollbar {
    width: 8px; /* lebar scroll */
  }
  
  div[style*="overflow-y: auto"]::-webkit-scrollbar-track {
    background: #f1f1f1; /* warna area belakang */
    border-radius: 10px;
  }
  
  div[style*="overflow-y: auto"]::-webkit-scrollbar-thumb {
    background-color: #28a745; /* warna scroll-nya */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* biar kelihatan ada jarak */
  }
  
  div[style*="overflow-y: auto"]::-webkit-scrollbar-thumb:hover {
    background-color: #218838; /* warna saat hover */
  }





  .nav-foot ul {
    margin:0;
    padding:0;
    display:flex;
    position: relative;
  }
  
  .nav-foot ul li {
    list-style:none;
    margin:0 8px;
    position: relative;
    transition:0.5s;
  }
  
  .nav-foot ul li a {
    display: block;
    position:relative;
    text-decoration:none;
    padding:5px;
    font-size:13px;
    font-family: sans-serif;
    color:#ffffff;
    text-transform:uppercase;
    transition:0.5s;
  }
  
  /* Hover effect utama */
  .nav-foot ul:hover li a {
    transform:scale(1.2);
    opacity:0.2;
    filter:blur(3px);
  }
  
  .nav-foot ul li a:hover {
    transform:scale(1.6);
    opacity:1;
    filter:blur(0);
    text-decoration:none;
    color:#333333;
  }
  
  .nav-foot ul li a:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#D9d9d9;
    transition:0.5s;
    transform-origin:right;
    transform:scaleX(0);
    z-index:-1;
  }
  
  .nav-foot ul li a:hover:before {
    transition:transform 0.5s;
    transform-origin:left;
    transform:scaleX(1);
  }
  
  /* ===== Dropdown Style ===== */
.nav-foot ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    min-width: 160px;
    display: none;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-foot ul li.show .dropdown-menu {
    display: flex;
  }
  
  /* Responsif: di layar kecil jadikan menu vertikal */
  @media (max-width: 768px) {
    .nav-foot ul {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-foot ul li {
      margin: 5px 0;
    }
  
    .nav-foot ul li .dropdown-menu {
      position: relative;
      box-shadow: none;
    }
  }
  
  
  .nav-foot ul li .dropdown-menu li {
    margin: 0;
  }
  
  .nav-foot ul li .dropdown-menu li a {
    font-size: 12px;
    padding: 8px 15px;
    text-transform: capitalize;
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: none !important;
  }
  



  /* CHAT BOT CSS */

  .chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 420px;
    max-width: calc(100vw - 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    z-index: 1000;
}

.chat-body {
    height: 450px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding: 30px 25px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f5f5f5" width="100" height="100"/></svg>');
    background-size: cover;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 10px;
}

.message {
    margin-bottom: 20px;
    display: flex;
    opacity: 0;
    transform: translateY(20px);
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 20px;
    word-wrap: break-word;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.message.bot .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 6px;
}

.message.user .message-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-bottom-right-radius: 6px;
}

.chat-input {
    padding: 20px 25px 25px 25px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-input-field {
    flex: 1;
    border: none;
    background: #f5f5f5;
    padding: 16px 20px;
    border-radius: 25px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.message-input-field:focus {
    background: #ebebeb;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.message-input-field::placeholder {
    color: #999;
}

.btn-send {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-send:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-send i {
    font-size: 18px;
}

.btn-close-chat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.1);
    border: none;
    color: #666;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.btn-close-chat:hover {
    background: rgba(0,0,0,0.15);
    transform: rotate(90deg);
}

.typing-indicator {
    display: none;
    padding: 16px 20px;
    background: white;
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.typing-indicator span {
    height: 10px;
    width: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.time-stamp {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

.message.bot .time-stamp {
    text-align: left;
}