/* Font global */
body, h1, h2, h3, h4, h5, h6, p, a, li {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Section Integrasi Logo */
.logo-wrapper {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  width: 100%;           /* ✅ lebar penuh parent */
  max-width: 100%;       /* ✅ pastikan tidak ke-cut */
  margin: 0;             /* ✅ reset margin auto container */
  padding: 30px 0;
  position: relative;
  z-index: 70;
  overflow: hidden;
  border-radius: 0;
}


/* Wrapper untuk marquee agar bisa overflow scroll */
.logo-marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Kontainer animasi marquee */
.logo-marquee {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

/* Logo di dalam marquee */
.logo-marquee img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-marquee img:hover {
  transform: scale(1.05);
}

/* Animasi berjalan dari kanan ke kiri */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FOOTER UTAMA */
.footer {
  width: 100vw; /* Pastikan selebar viewport */
  margin-left: calc(-50vw + 50%); /* Trik agar tetap rata tengah dan full */
  background: linear-gradient(#0155c4, #0f376b);
  color: white;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-top: 2px solid rgb(255, 255, 255);
  box-sizing: border-box;
}

/* CONTAINER DALAM FOOTER */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  gap: 40px; /* Geser lebih renggang antar kolom */
  padding: 30px 40px; /* Tambah padding kiri-kanan */
}

/* KOLOM FOOTER UMUM */
.footer-col {
  flex: 1;
  min-width: 160px;
  max-width: 180px;
}

.footer-col h4 {
  color: #fdd835;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fdd835;
}


/* KOLOM ALAMAT */
.footer-alamat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1.5px solid #ffffff;
  padding-right: 25px;
  max-width: 270px; /* Ditambah agar tidak cepat turun baris */
}

.footer-alamat .alamat-info p {
  margin: 6px 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* SOSIAL MEDIA */
.footer-alamat .socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-alamat .socials a {
  color: #ffffff;
  font-size: 20px;
  transition: 0.3s;
}

.footer-alamat .socials a:hover {
  color: #fdd835;
}

/* AREA BAWAH FOOTER */
.footer-bottom {
  border-top: 1.5px solid rgb(255, 255, 255);
  margin-top: 30px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.footer-bottom p {
  margin: 0;
  padding: 15px 0 0; /* Tambah padding atas */
  font-size: 13px;
  line-height: 1;
}

/* GOOGLE MAPS RESPONSIVE */
.maps-container {
  padding-left: 20px; /* agar maps tidak mepet garis kanan */
  flex: 1;
  max-width: 300px; /* supaya tidak terlalu besar */
}

.maps-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* Tombol WhatsApp Mengambang (🔼 Sekarang di atas Admin) */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 115px; /* 🔼 dinaikkan */
  right: 35px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Tombol Admin Mengambang (🔽 Sekarang di bawah WA) */
.admin-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 35px; /* 🔽 sekarang di paling bawah */
  right: 35px;
  background-color: #0077ff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

.admin-float i {
  font-size: 28px;
}

.admin-float:hover {
  transform: scale(1.1);
  background-color: #0077ff;
}

/* Tombol Gebyar Mengambang (KIRI) */
.gebyar-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 35px;      /* sejajar admin */
  left: 35px;        /* KIRI */
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.gebyar-float img {
  width: 38px;
  height: auto;
}

.gebyar-float:hover {
  transform: scale(1.1);
}

/* Tombol Reuni Alumni Mengambang (KIRI - di atas Gebyar) */
.reunialumni-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 115px;   /* LEBIH TINGGI dari Gebyar (35px) */
  left: 35px;      /* Sama seperti Gebyar */
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.reunialumni-float img {
  width: 38px;
  height: auto;
}

.reunialumni-float:hover {
  transform: scale(1.1);
}

/* 🔽 LOGO BERJALAN FULL WIDTH DI MOBILE */
@media screen and (max-width: 768px) {
  .logo-wrapper {
    width: 100vw;              /* ✅ penuh selebar layar */
    margin-left: calc(-50vw + 50%); /* trik agar benar-benar full */
    padding: 15px 0;           /* hanya atas-bawah */
    border-radius: 0;           /* sudut rata */
  }

  .logo-marquee {
    gap: 18px;                 /* jarak antar logo */
  }

  .logo-marquee img {
    height: 30px;               /* ukuran pas di HP */
  }
}


/* FOOTER RESPONSIVE 768px */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 15px;
    padding: 18px;
  }

  .footer-col,
  .footer-alamat,
  .maps-container {
    max-width: 100%;
    border-right: none;
    padding: 0;
  }

  .maps-container iframe {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .footer-bottom p {
    padding: 10px 0 0;
    font-size: 12px;
  }
}

  /* ✅ Responsif Mobile */
@media (max-width: 400px) {

  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 25px;
  }

  .admin-float {
    width: 40px;
    height: 40px;
    bottom: 25px;
    right: 25px;
  }

  .gebyar-float {
    width: 40px;
    height: 40px;
    bottom: 25px;
    left: 25px;
  }

  .reunialumni-float {
    width: 40px;
    height: 40px;
    bottom: 80px;
    left: 25px;
  }

}