:root {
  --pr-color: #285dc0;
}

/* Fix semua box model */
*,
*::before,
*::after {
  box-sizing: border-box;
  z-index: 1;
}

html {
  overflow-y: scroll;
  /* Paksa scrollbar selalu muncul */
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1B1B1B, #121212, #0A0A0A);
  color: white;
  overflow-x: hidden;
  /* Hindari geseran horizontal */
}


#globalLogoutSpinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
}

/* === ABOUT SECTION === */
#about-section {
  font-family: 'Inter', sans-serif;
  color: #212529;
  padding: 80px 20px;
  background: 
    linear-gradient(rgba(242, 245, 250, 0.85), rgba(255, 255, 255, 0.95)),
    url("../../Assets2/BG2.png") no-repeat center center/cover;
  position: relative;
}

/* Container */
.container-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

/* Bottom Content: tagline + banner + narasi */
.bottom-content {
  background: #fff;
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 50px 40px 70px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  text-align: justify;
  transition: transform 0.3s ease;
}

.bottom-content:hover {
  transform: translateY(-3px);
}

/* Tagline */
.bottom-content .about-tagline {
  max-width: 700px;
  margin: 0 auto 20px;
}

.bottom-content .about-tagline h4 {
  color: #000;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
}

/* Tag khusus (italic tagline) */
.bottom-content .tag {
  display: block;
  width: 100%;
  margin: 5px 0 15px;
  color: #000;
  text-align: center;
  font-size: 19px;   
  font-weight: 700;
  line-height: 1.6;
}

/* Banner */
.bottom-content .about-banner {
  text-align: center;
  margin-bottom: 10px;
}

.bottom-content .about-banner .banner {
  width: 90%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* Paragraf */
.bottom-content p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: #333;
}

/* Link pesan lift */
.bottom-content a span.text-danger {
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  color: #ff4d4f;
  transition: color 0.3s ease;
}

.bottom-content a span.text-danger:hover {
  color: #d9363e;
}

/* Logo inline */
.logo-inline {
  max-height: 27px;
  vertical-align: middle;
  margin: 0 6px;
  border-radius: 5px;
}

/* Tombol "Hubungi Kami" */
.btn-hubungi-kami {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.bottom-content a.btn:hover {
  background: linear-gradient(135deg, #00c6ff, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.6);
}

/* =========================
   Responsive: Mobile Max–480px
   ========================= */
@media (max-width: 480px) {

  #about-section {
    padding: 40px 15px;
  }


  .bottom-content {
    padding: 30px 20px 50px 20px;
    border-radius: 15px;
  }

  .bottom-content .about-tagline h4 {
    font-size: 20px;
  }

  .bottom-content .tag {
    font-size: 13px;
    margin: 3px 0 12px;
  }

  .bottom-content .about-banner .banner {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }

  .bottom-content p {
    font-size: 12px;
    line-height: 1.6;
  }

  .btn-hubungi-kami {
    font-size: 12px;
    padding: 0.6rem 1.2rem;
    bottom: 20px;
    right: 15px;
  }

  .logo-inline {
    max-height: 25px;
    margin: 0 4px;
  }
}
