body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }
    /* ===== TOPBAR ===== */
    .topbar {
      background: #1abc9c;
      color: #fff;
      font-size: 14px;
      padding: 8px 0;
    }
    .topbar i {
      margin-right: 6px;
    }
    .topbar .social a {
      color: #fff;
      margin-left: 12px;
      font-size: 14px;
      transition: 0.3s;
    }
    .topbar .social a:hover {
      color: #2c3e50;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: #fff;
      padding: 15px 0;
    }
    .navbar-brand img {
      height: 40px;
      margin-right: 8px;
    }
    .navbar-nav .nav-link {
      color: #2c3e50 !important;
      margin: 0 6px;
      font-weight: 500;
    }
    
    /* Base style */
    .btn-circle {
      border: 2px solid #1abc9c;
      border-radius: 25px;
      color: #1abc9c !important;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
      text-align: center;
      background: transparent;
    }

    /* Hover */
    .btn-circle:hover {
      background: #1abc9c;
      color: #fff !important;
    }

    /* === Size Variants (samain dengan btn-circle-secondary) === */
    .btn-circle-sm {
      padding: 6px 16px;
      font-size: 0.85rem;
    }

    .btn-circle-md {
      padding: 10px 24px;
      font-size: 1rem;
    }

    .btn-circle-lg {
      padding: 14px 32px;
      font-size: 1.15rem;
    }

    /* Base style */
    .btn-circle-secondary {
      border-radius: 30px;
      background: #34495e;
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
      text-align: center;
    }

    /* Hover */
    .btn-circle-secondary:hover {
      background: #1abc9c;
      border-color: #1abc9c;
      color: #fff !important;
    }

    /* === Size Variants === */
    .btn-circle-secondary-sm {
      padding: 6px 18px;
      font-size: 0.85rem;
    }

    .btn-circle-secondary-md {
      padding: 12px 30px;
      font-size: 1rem;
    }

    .btn-circle-secondary-lg {
      padding: 16px 40px;
      font-size: 1.2rem;
    }

    /* ============================= */
    /* HERO CAROUSEL BASE            */
    /* ============================= */
    #heroCarousel {
        max-height: 520px;
        overflow: hidden;
        position: relative;
        background: #0f172a;
    }

    #heroCarousel .carousel-item {
        position: relative;
        height: 520px;
        min-height: 320px;
        background: #0f172a;
    }

    /* .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    } */

    #heroCarousel .carousel-item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: #0f172a;
    }



    /* ============================= */
    /* BOX PUTIH KECIL DI KANAN BAWAH */
    /* ============================= */
    /* .carousel-caption-box {
        position: absolute;
        bottom: 30px;
        right: 30px;
        width: 280px;
        background: #fff;
        padding: 20px 25px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        text-align: left;
    } */

    /* Default: kanan bawah (yang sudah ada) */
  #heroCarousel .carousel-caption-box {
      position: absolute;
      bottom: 24px;
      right: 24px;
      width: min(90%, 320px);
      max-width: 320px;
      background: rgba(255,255,255,0.95);
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      text-align: left;
      z-index: 2;
  }

  /* Caption di kiri bawah */
  .carousel-caption-box.left {
      left: 60px;
      right: auto;
      text-align: left;
  }

  /* Caption di tengah bawah */
  .carousel-caption-box.center {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      text-align: center;
  }

    #heroCarousel .carousel-caption-box h2 {
        font-weight: 700;
        color: #2c3e50;
        font-size: 1.25rem;
        margin: 0;
        line-height: 1.3;
    }

    #heroCarousel .carousel-caption-box p {
        color: #555;
        margin-top: 8px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ============================= */
    /* TOMBOL NEXT/PREV CUSTOM        */
    /* ============================= */
    .carousel-control-prev,
    .carousel-control-next {
        width: 65px;   
        height: 65px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(26, 188, 156, 0.2); /* hijau 20% transparan */
        border-radius: 50%;
        backdrop-filter: blur(6px);    
        opacity: 0 !important;         
        pointer-events: none;          
        transition: opacity 0.3s ease, transform 0.25s ease, background 0.25s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    }

    /* Jangan terlalu kepinggir */
    /* .carousel-control-prev {
        left: 30px;
    }
    .carousel-control-next {
        right: 30px;
    } */

    /* tombol next tengah */
    .carousel-control-prev {
        left: 24px;
    }
    .carousel-control-next {
        right: 24px;
    }

    /* Muncul saat hover carousel (desktop) */

    /* Saat carousel di-hover tombol muncul */
    #heroCarousel:hover .carousel-control-prev,
    #heroCarousel:hover .carousel-control-next {
        opacity: 1 !important;
        pointer-events: auto;
        background: rgba(128, 128, 128, 0.6); /* abu-abu saat tombol muncul */
    }

    /* Saat tombol langsung disentuh kursor */
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(26, 188, 156, 0.8) !important; /* hijau soft template */
        transform: translateY(-50%) scale(1.15);
    }


    /* #heroCarousel:hover .carousel-control-prev,
    #heroCarousel:hover .carousel-control-next {
        opacity: 1 !important;
        pointer-events: auto;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(26, 188, 156, 0.8); 
        transform: translateY(-50%) scale(1.15);
    } */

    /* Ikon panah custom */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-image: none;
        width: 18px;
        height: 18px;
        border: solid rgba(255, 255, 255, 0.7); /* 70% transparan default */
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 5px;
        transition: border-color 0.25s ease;
    }

    /* Ikon lebih solid saat hover */
    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
        border-color: #fff;
    }

    .carousel-control-prev-icon {
        transform: rotate(135deg);
    }
    .carousel-control-next-icon {
        transform: rotate(-45deg);
    }

    /* ==========================================================================
   Modernized Landing Page Styles
   ========================================================================== */

:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Poppins', var(--font-sans);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,.05);
  --shadow: 0 4px 6px rgba(0,0,0,.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.1);
  --shadow-hover: 0 15px 35px rgba(0,0,0,.15);
  
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

body {
  font-family: var(--font-sans);
  color: #333;
  line-height: 1.6;
  background-color: #fbfdff;
}

h1, h2, h3, h4, h5, h6, .display-4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   Topbar (Marquee)
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-text {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 24px;
}

.topbar-marquee-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.topbar-marquee-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  white-space: nowrap;
}

.topbar-marquee-item.active {
  opacity: 1;
}

.topbar-marquee-item span,
.topbar-marquee-single span {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scrollText 20s linear infinite;
  padding-right: 2rem;
}

.topbar-marquee-item.active span {
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-120%); }
}

.topbar-marquee-single {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.topbar i {
  color: #ffd700;
  margin-right: 5px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.navbar-brand img {
  height: 45px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  padding: 10px 15px !important;
  margin: 0 5px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
  background-color: rgba(0, 123, 255, 0.05);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-circle {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #ffffff !important;
}

.btn-circle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
  color: #ffffff !important;
}

.btn-circle-secondary {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-circle-secondary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.cta-btn {
  background: var(--btn-bg, linear-gradient(135deg, var(--primary), var(--secondary))) !important;
  color: var(--btn-text-color, #ffffff) !important;
  border-color: var(--btn-border-color, var(--btn-bg, var(--primary))) !important;
}

.cta-btn:hover {
  background: var(--btn-hover-bg, linear-gradient(135deg, var(--primary-hover), var(--secondary-hover))) !important;
  color: var(--btn-text-color, #ffffff) !important;
  border-color: var(--btn-hover-bg, var(--btn-border-color, var(--primary))) !important;
}

.cta-btn-secondary {
  background: var(--btn-bg, #ffffff) !important;
  color: var(--btn-text-color, var(--primary)) !important;
  border: 2px solid var(--btn-border-color, var(--primary)) !important;
}

.cta-btn-secondary:hover {
  background: var(--btn-hover-bg, linear-gradient(135deg, var(--primary-hover), var(--secondary-hover))) !important;
  color: var(--btn-text-color, #ffffff) !important;
  border-color: var(--btn-hover-bg, var(--primary)) !important;
}

/* ==========================================================================
   Carousel Header
   ========================================================================== */
.carousel-item {
  height: 80vh;
  min-height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  text-align: left;
}

.carousel-caption h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .carousel-item { height: 60vh; }
  .carousel-caption h2 { font-size: 2rem; }
  .carousel-caption p { font-size: 1rem; }

  #heroCarousel {
    max-height: 70vh;
  }

  #heroCarousel .carousel-item {
    height: 70vh;
    min-height: 320px;
  }

  #heroCarousel .carousel-caption-box {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 16px 18px;
  }

  #heroCarousel .carousel-caption-box h2 {
    font-size: 1.05rem;
  }

  #heroCarousel .carousel-caption-box p {
    font-size: 0.85rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 46px;
    height: 46px;
    left: 12px;
    right: 12px;
  }

  .carousel-control-next {
    left: auto;
    right: 12px;
  }
}

/* ==========================================================================
   Charity / Program Box
   ========================================================================== */
.charity-box {
  background: white;
  padding: 40px 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.charity-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(0,123,255,0.02), rgba(0,123,255,0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.charity-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.charity-box:hover::before {
  opacity: 1;
}

.charity-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.charity-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

/* ==========================================================================
   Profil Pimpinan & Sambutan
   ========================================================================== */
.contact-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-box h3 {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.contact-box h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

/* ==========================================================================
   Cards (Berita, UMKM)
   ========================================================================== */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  background: white;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
}

.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--dark);
  line-height: 1.4;
}

.card-text {
  color: var(--secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #004085, var(--primary));
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=') repeat;
  opacity: 0.5;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #1a1e24;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
  font-size: 0.95rem;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer a:hover {
  color: white;
  padding-left: 5px;
}

.footer-social-wrapper {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-social-wrapper {
    justify-content: flex-end;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white !important;
  transition: all 0.3s ease !important;
}

.footer-social:hover {
  background: var(--primary);
  transform: translateY(-3px);
  padding-left: 0 !important;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}
    .carousel-item {
            height: auto;
        }

        .carousel-item img {
        }

        /* Box putih jadi full width di HP */
        .carousel-caption-box {
            position: relative;
            width: 100%;
            border-radius: 0;
            bottom: 0;
            right: 0;
            box-shadow: none;
            text-align: center;
            padding: 15px;
        }

        .carousel-caption-box h2 {
            font-size: 1.2rem;
        }
        .carousel-caption-box p {
            font-size: 0.85rem;
        }

        /* Tombol selalu tampil di mobile */
        .carousel-control-prev,
        .carousel-control-next {
            opacity: 0.9 !important;
            pointer-events: auto;
            background: rgba(26, 188, 156, 0.6);
        }
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #2c3e50;
      color: #ecf0f1;
      padding: 40px 0;
    }
    .footer a {
      color: #ecf0f1;
      text-decoration: none;
    }

    /* Dropdown navbar */
    .navbar .dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    }

    .navbar .dropdown-item {
    font-size: 15px;
    padding: 6px 20px;
    color: #2c3e50;
    transition: background 0.3s, color 0.3s;
    }

    .navbar .dropdown-item:hover {
    background: #f1f1f1;
    color: #1abc9c;
    }


    /* Carity */

    .charity-box {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
      cursor: pointer; 
    }
    .charity-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 -2px 6px rgba(0,0,0,0.05), 
                  0 12px 20px rgba(0,0,0,0.15); 
    }
    .charity-box img {
      width: 100px;
      margin-bottom: 15px;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    }
    .charity-box h2 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 10px;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    }

    /* Efek lucu saat hover */
    .charity-box:hover img {
      transform: scale(0.7);
    }
    .charity-box:hover h2 {
      transform: translateY(-5px) scale(1.2);
    }

    /* cta */

    .cta-section {
      background: linear-gradient(135deg, #f0f7ff, #e6f9f4);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Dekorasi lingkaran */
    .cta-section::before {
      content: "";
      position: absolute;
      top: -50px;
      left: -50px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(0, 150, 136, 0.15);
    }

    .cta-section::after {
      content: "";
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(33, 150, 243, 0.12);
    }

    .cta-text h2 {
      font-weight: 700;
      color: #34495e;
    }

    .cta-text p {
      font-size: 1.2rem;
      color: #555;
    }

    /* Contact Section */

    .contact-section {
      padding: 80px 0;
      background: #fff;
    }

    .contact-info h3 {
      font-weight: 700;
      color: #34495e;
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 8px;
      color: #555;
    }

    .contact-box {
      background: #f5fbff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .contact-box h3 {
      font-weight: 700;
      color: #34495e;
      margin-bottom: 15px;
    }

    .form-control {
      border-radius: 8px;
      box-shadow: none;
      border: 1px solid #ddd;
      margin-bottom: 15px;
    }

    .contact-person {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .contact-person img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 15px;
    }

    .contact-person h5 {
      margin: 0;
      font-weight: 600;
    }

    .contact-person span {
      font-size: 0.9rem;
      color: #777;
    }

    /* Style tombol */
  .btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #1abc9c; /* hijau soft */
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none; /* awalnya tidak tampil */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
    z-index: 1000;
  }

  .btn-back-to-top:hover {
    background: #16a085; /* hijau lebih gelap */
    transform: translateY(-3px);
  }

   /* =========================
      CARD BERITA IMAGE
    ========================= */
    .berita-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    /* HP */
    @media (max-width: 576px) {
        .berita-img {
            height: 160px;
        }
    }
/* =========================
   TOPBAR MARQUEE
========================= */
.topbar-text {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.topbar-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Desktop: gak usah jalan */
@media (min-width: 768px) {
    .topbar-marquee span {
        animation: none;
        padding-left: 0;
    }
}
@media (max-width: 576px) {
    .topbar .social {
        display: none;
    }
}
