/* === Gaya Ikon Media Sosial Fixed === */
.social-fixed {
  position: fixed;
  top: 150px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed a img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-fixed a img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* === Contoh Penyesuaian Font (Opsional) === */
body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
}

/* === Contoh Perbaikan Footer (Opsional) === */
footer {
  background-color: #006633;
  color: #fff;
  padding: 20px;
  text-align: center;
}
/* === TAMBAHKAN DI BAWAH KODE YANG SUDAH ADA === */

/* Perbaikan Social Media Fixed */
.social-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  margin-right: 10px;
}

.social-fixed a {
  display: block;
  line-height: 0;
}

.social-fixed a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.social-fixed a img:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Warna Platform */
.social-fixed a[href*="facebook.com"] img:hover { background: #3b5998; }
.social-fixed a[href*="twitter.com"] img:hover { background: #1da1f2; }
.social-fixed a[href*="instagram.com"] img:hover { background: #e1306c; }
.social-fixed a[href*="youtube.com"] img:hover { background: #ff0000; }

/* Hapus border merah jika tidak perlu */
body { border: none !important; }

/* PERBESAR UKURAN SEMUA IKON MEDIA SOSIAL */
.social-fixed a img {
  width: 60px !important;       /* Ukuran lebar */
  height: 60px !important;      /* Ukuran tinggi */
  padding: 8px !important;      /* Ruang di dalam ikon */
  transition: all 0.3s ease;    /* Efek animasi */
}

/* KHUSUS UNTUK IKON CCTV (LEBIH BESAR LAGI) */
.social-fixed a[href*="badilag.net"] img {
  width: 100px !important;       /* Ukuran lebih besar untuk CCTV */
  height: 100px !important;
  background: #f5f5f5;          /* Warna latar belakang khusus */
  border-radius: 12px !important; /* Sudut lebih melengkung */
}

/* EFEK HOVER */
.social-fixed a img:hover {
  transform: scale(1.15);       /* Membesar 15% saat hover */
  opacity: 0.9;
}
/* ANIMASI KHUSUS CCTV */
.social-fixed a[href*="badilag.net"] img {
  border: 2px solid #e74c3c !important;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.social-fixed a[href*="badilag.net"] {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0.7; }
}