* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.navbar {
  background-color: white !important;
  border-bottom: 1px solid #e5e7eb;
}
.navbar-brand,
.nav-link {
  color: #2563eb !important; /* blue tech color */
  font-weight: 600;
}

.nav-link {
  font-weight: 200;
  color: #2563eb !important;
}

.nav-link.active {
  border-bottom: 2px solid #2563eb;
  font-weight: 300;
  color: #2563eb !important;
}

.btn-outline-tech {
  color: #2563eb;
  border-color: #2563eb;
  font-weight: 600;
}

.btn-outline-tech:hover {
  background-color: #2563eb;
  color: white;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column !important;
  }

  .hero-section .col-md-8,
  .hero-section .col-md-4 {
    width: auto !important;
    position: static !important;
  }

  .hero-text {
    position: center;
    margin-top: 5rem;
    text-align: center;
    max-width: auto;
  }

  .hero-text h1 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-top: 1rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
  }

  .features-container {
    padding: 1rem 1rem;
    background-color: #0f172a;
  }
    .features-container h2 {
        font-size: 1.5rem;
        color: white;
    }

  .feature-card {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .feature-icon {
    font-size: 20px;
  }
}

.btn-tech {
  background-color: #2563eb;
  color: white;
  font-weight: 600;
}

.btn-tech:hover {
  background-color: #1e40af;
  color: white;
}

.feature-card {
  background-color: rgba(37, 99, 235, 0.3);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  color: white;
}

.feature-card:hover {
  background-color: rgba(37, 99, 235, 0.25);
}

.feature-icon {
  background-color: #2563eb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.section-title {
  border-left: 4px solid #2563eb;
  padding-left: 0.75rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.hero-text {
  position: absolute;
  top: 30%;
  left: 1rem;
    right: 1rem;
  z-index: 2;
  color: white;
}

.hero-text .badge {
  background-color: #2563eb;
  font-weight: 600;
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  letter-spacing: 0.05em;
}

.hero-text p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-buttons .btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
}

.btn-info {
  background-color: #2563eb;
  border: none;
  color: white;
}

.btn-info:hover {
  background-color: #1e40af;
  color: white;
}

.carousel-indicators [data-bs-target] {
  background-color: #6b7280;
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 9999px;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: #1f2937;
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 9999px;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(31, 41, 55, 0.9), transparent);
  z-index: 1;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem 0 0 0.5rem;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features-container {
  background: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 2rem;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card {
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .hero-text {
    padding: 1rem 1rem;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .features-container {
    padding: 1rem 1rem;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .overlay-gradient {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

.badge-custom {
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.text-green {
  color: #1d20dd;
  background-color: #e2dcfc;
}

.text-blue {
  color: #2563eb;
  background-color: #dbeafe;
}

.text-yellow {
  color: #d97706;
  background-color: #fef3c7;
}

.text-purple {
  color: #8b5cf6;
  background-color: #ede9fe;
}

.underline-bar {
  height: 2px;
  border-radius: 9999px;
  margin-top: 0.75rem;
  width: 3rem;
}

.underline-green {
  background-color: #4ade80;
}

.underline-blue {
  background-color: #60a5fa;
}

.underline-yellow {
  background-color: #facc15;
}

.underline-purple {
  background-color: #c4b5fd;
}

.icon-opacity {
  opacity: 0.1;
  width: 32px;
  height: 32px;
}

.number-large {
  font-weight: 800;
  font-size: 1.875rem;
  /* 3xl */
  line-height: 2.25rem;
  color: #111827;
  /* Tailwind gray-900 */
}

.number-unit {
  font-weight: 600;
  font-size: 1.125rem;
  /* lg */
}

.header-badge {
  font-size: 0.75rem;
  /* xs */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-card {
  background-color: rgba(37, 99, 235, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(3px);
}

.stats-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-color: rgba(37, 99, 235, 0.1);
}

.badge-custom {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.header-badge {
  font-size: 0.9rem;
  background-color: rgba(22, 163, 74, 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.number-large {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}

.number-unit {
  font-size: 1rem;
  font-weight: 500;
}

.underline-bar {
  height: 3px;
  width: 40px;
  margin-top: 10px;
  border-radius: 999px;
}

.underline-green {
  background-color: #16a34a;
}

.underline-blue {
  background-color: #2563eb;
}

.underline-yellow {
  background-color: #f59e0b;
}

.underline-purple {
  background-color: #8b5cf6;
}

.icon-opacity {
  width: 32px;
  height: 32px;
  opacity: 0.7;
}

/* === Styling untuk Bagian Informasi Terkini yang Lebih Konsisten dan Interaktif (Warna Biru) === */

.line-emerald {
  width: 4px;
  height: 24px;
  background-color: #2563eb;
  /* Blue 600 */
  border-radius: 2px;
}

.info-terkini-text {
  color: #1e40af;
  /* Blue 700 */
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.animated-icon {
  animation: pulse 1.5s infinite alternate;
  color: #2563eb;
  /* Warna ikon menjadi biru */
}

.btn-outline-emerald {
  color: #2563eb;
  border-color: #2563eb;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: transparent;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.btn-outline-emerald:hover {
  background-color: #dbeafe;
  /* Blue 100 */
  color: #1e40af;
  /* Blue 700 */
  border-color: #1e40af;
  text-decoration: none;
}

.badge-emerald {
  background-color: #2563eb;
  /* Blue 600 */
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
}

.badge-emerald-light {
  background-color: #dbeafe;
  /* Blue 100 */
  color: #2563eb;
  /* Blue 600 */
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  min-width: 36px;
  text-align: center;
}

.card-title-dark {
  color: #111827;
  /* Gray 900 - tetap gelap untuk kontras */
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
}

.card-text-truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.875rem;
  color: #4a5568;
  /* Gray 600 - lebih lembut */
}

.card-wrapper {
  transition: transform 0.2s ease-in-out;
}

.card-wrapper:hover {
  transform: translateY(-5px);
  /* Efek slide up saat hover */
}

.card-hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease-in-out;
}

.card-hover:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.subtle-text {
  color: #4a5568;
  /* Gray 600 */
  font-style: italic;
  font-size: 0.875rem;
}

.date-number {
  font-weight: 700;
  color: #111827;
  /* Gray 900 */
  line-height: 1;
}

.date-day {
  color: #6b7280;
  /* Gray 500 */
  font-size: 0.75rem;
  line-height: 1;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.ingin-tahu-section {
  position: relative;
  background: linear-gradient(to bottom right, #2563eb, rgb(93, 34, 232));
  padding: 100px 20px 60px;
  color: #fff;
  overflow: hidden;
}

.ingin-tahu-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ingin-tahu-badge-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
}

.ingin-tahu-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.ingin-tahu-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
  opacity: 0.9;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #2563eb;
}

.btn-solid-custom {
  background: #fff;
  color: #2563eb;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-solid-custom:hover {
  background: #e0e0e0;
  color: #2563eb;
}

.decorative-circle {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

/* Section wrapper */
.kontak-kami-section {
  padding: 3rem 1rem;
}

.gallery-img-wrapper {
    height: 250px;
    overflow: hidden;
}
.gallery-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}


/* Badge (LOKASI & KONTAK) */
.kontak-kami-badge {
  display: inline-flex;
  align-items: center;
  background-color: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kontak-kami-badge-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
}

/* Card general */
.kontak-kami-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontak-kami-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon circle style */
.kontak-kami-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e8f5e9;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.kontak-kami-card:hover .kontak-kami-icon-circle {
  background-color: #2563eb;
  color: #fff;
}

/* Text utilities */
.text-xs {
  font-size: 0.875rem;
}

.text-gray-500 {
  color: #6c757d;
}

.text-gray-400 {
  color: #9e9e9e;
}

.text-gray-700 {
  color: #495057;
}

.text-dark {
  color: #212529;
}

/* Footer Container */
footer {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  font-family: "Inter", sans-serif;
  color: #343a40;
  padding-bottom: 2rem;
}

/* Footer Section Titles */
.footer-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
  position: relative;
}

.footer-section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #2563eb;
  margin-top: 6px;
  border-radius: 2px;
}

/* Footer Contact Icons */
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background-color: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.footer-contact-icon:hover {
  background-color: #1e40af;
}

/* Contact Link Styles */
.footer-phone,
.footer-email {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s;
  
}

.footer-phone:hover,
.footer-email:hover {
  color: #2563eb;
}

/* Footer Links */
ul.list-unstyled li {
  position: relative;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
}

ul.list-unstyled li:hover {
  color: #2563eb;
  transform: translateX(5px);
}

/* Dot before each link */
.footer-link-dot {
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}

/* Social Icons */
.footer-social a {
  color: #212529;
  margin-right: 16px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #2563eb;
}

/* Style untuk seluruh bagian produk */
.products-section {
  padding: 4rem 2rem;
  background-color: #f7fafc; /* Light gray background */
  border-radius: 0.75rem;
  margin-top: 2rem;
}

/* Style untuk judul utama */
.products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748; /* Dark gray */
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Style untuk sub-judul */
.products-subtitle {
  font-size: 1.125rem;
  color: #718096; /* Medium gray */
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Style untuk container kartu produk */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Style untuk setiap kartu produk */
.product-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15);
}

/* Style untuk badge produk */
.product-badge {
  background-color: #4299e1; /* Blue 500 */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.product-badge.unggulan {
  background-color: /* Blue 600 */ #2b6cb0;
}

.product-badge.baru {
  background-color: #ed8936; /* Orange 400 */
}

/* Style untuk nama produk */
.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

/* Style untuk harga produk */
.product-price {
  font-size: 1.25rem;
  color: #a0aec0; /* Gray 400 */
  margin-bottom: 1rem;
}

.product-price .price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2d3748;
}

/* Style untuk deskripsi singkat produk */
.product-description {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.product-description li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #4a5568; /* Gray 600 */
  font-size: 0.9rem;
  justify-content: center;
}

.product-description li i {
  color: #4299e1; /* Blue 500 */
  margin-right: 0.5rem;
}

/* Style untuk tombol lihat detail */
.view-detail-button {
  background-color: #4299e1; /* Blue 500 */
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
}

.view-detail-button:hover {
  background-color: #2b6cb0; /* Blue 700 */
}

.btn-category {
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.25rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.btn-category svg,
.btn-category i {
  font-size: 0.625rem;
}
.badge-category {
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.15rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.badge-category i {
  font-size: 0.625rem;
}
.verified-badge {
  font-size: 0.625rem;
  color: #3b82f6;
  border: 1px solid #3b82f6;
  border-radius: 50rem;
  padding: 0.15rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-title-custom {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
}
.card-text-custom {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1rem;
  margin-bottom: 0.75rem;
}
.location-text {
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.btn-whatsapp {
  background-color: #3b82f6;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #2563eb;
  color: white;
}
.link-detail {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.link-detail:hover,
.link-detail:focus {
  text-decoration: underline;
  color: #1e40af;
}
.badge-kuliner {
  background-color: #e6f4f1;
  color: #10b981;
}
.badge-kerajinan {
  background-color: #e6f0fa;
  color: #3b82f6;
}
.badge-fashion {
  background-color: #fff4db;
  color: #d97706;
}
.badge-pertanian {
  background-color: #e0e7ff;
  color: #6366f1;
}
.card-title-fashion {
  color: #d97706;
}

.category-btn {
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.category-btn.active {
  background-color: #047857;
  color: #fff;
  border: none;
}
.category-btn:not(.active) {
  background-color: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
}
.card-category-label {
  font-size: 0.625rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-category-label.surat {
  color: #2563eb;
}
.card-category-label.kesehatan {
  color: #16a34a;
}
.card-category-label.pendidikan {
  color: #fbbf24;
}
.card-category-label.sosial {
  color: #8b5cf6;
}
.card-category-label.infrastruktur {
  color: #ef4444;
}
.tag-gratis {
  font-size: 0.625rem;
  font-weight: 600;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.btn-detail {
  background-color: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  border: none;
}
.btn-detail:hover,
.btn-detail:focus {
  background-color: #1e40af;
  color: #fff;
}
.btn-hubungi {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
}
.btn-hubungi:hover,
.btn-hubungi:focus {
  text-decoration: underline;
  color: #1e40af;
}
.icon-xs {
  font-size: 0.625rem;
}
.icon-sm {
  font-size: 0.75rem;
}
.icon-green {
  color: #16a34a;
}
.text-xs {
  font-size: 0.75rem;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-500 {
  color: #6b7280;
}
.card-text-small {
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.card-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.25rem;
}
.card-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}
.card-body ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.75rem;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;

  }

  footer .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-icon {
    margin-bottom: 1rem;
  }
}
