/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
  padding-top: 0px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: small;
}

section {
  padding: 60px 0;
}

.alt-bg {
  background-color: #eef1f4;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  margin: 40px 0 20px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; /*rgba(255, 255, 255, 0.1);putih dengan 70% opasitas */
  z-index: 20;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
}


.logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2px;
  background-color: white;
  padding: 4px;
  animation: fadeIn 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* Zoom-in sedikit */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Bayangan saat hover */
}

.hero {
  background: white;
  color: #063970;
  text-align: center;
  padding: 0px 5px;
  animation: fadeIn 1s ease;
  padding-top: 120px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.logo img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}


  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.hero .cta-button {
  background: #007BFF;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .cta-button:hover {
  background: #0056b3;
}

/* ===== ABOUT ===== */
.about-hero {
    background-color: white;
    padding: 100px 20px 0 20px;
  }

  .about-hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }

  .about-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-bottom: 50px;
  }

  .about-text {
    flex: 1 1 500px;
  }

  .about-text h1 {
    font-size: 2rem;
    color: #002b7f;
    margin-bottom: 0px;
  }

  .about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
  }

  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

.wave-bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -50px;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 200px;
}



/* ===== GRID/KARTU BISNIS ===== */
.business-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding-bottom: 10px;
}

.business-card {
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease;
  transition: transform 0.3s;
  max-width: 500px;
  color: #063970;
}

.business-card:hover {
  transform: translateY(-5px);
}

.business-card img {
  max-width: 100px;
  margin-bottom: 5px;
}

.business-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.business-card h3 a.plain-link {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  text-decoration: none;
  display: inline;
}

.business-card h3 a.plain-link:hover {
  color: #007BFF;
  text-decoration: underline;
}

.business-card p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.business-card a {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.business-card a:hover {
  background: #1e7e34;
}

/* ===== GRID/KARTU BISNIS ALONE ===== */
.bisnis-grid {
  display: grid;
  gap: 10px;
  padding-bottom: 10px;
  max-width: 100%;
  justify-items: center;
}

.bisnis-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease;
  transition: transform 0.3s;
  max-width: 500px;
  margin: auto;
  color: #063970;
}

.bisnis-card:hover {
  transform: translateY(-5px);
}

.bisnis-card img {
  max-width: 100px;
  margin-bottom: 5px;
}

.bisnis-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.bisnis-card h3 a.plain-link {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  text-decoration: none;
  display: inline;
}

.bisnis-card h3 a.plain-link:hover {
  color: #007BFF;
  text-decoration: underline;
}

.bisnis-card p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.bisnis-card a {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.bisnis-card a:hover {
  background: #1e7e34;
}

/* ===== STATS ===== */
.stats-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  animation: fadeInUp 0.8s ease-in-out;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 0.95rem;
  color: #555;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MEDIA ===== */
.media-coverage {
  text-align: center;
  padding: 60px 20px;
}

.media-coverage h2 {
  font-size: 1.7rem;
  margin-bottom: 30px;
}

.media-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logos img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s;
}

.media-logos img:hover {
  transform: scale(1.1);
}


/* ===== TESTIMONI ===== */
.testimonial-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-left: 5px solid #007BFF;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  animation: fadeIn 1s ease;
}

.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
}

/* ===== GALERI BUKTI TRANSFER ===== */
.proof-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 20px;
}

.proof-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

/* ===== KONTAK ===== */
.contact-section {
  padding: 60px 20px;
  background-color: #EEF1F4;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-item {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.contact-item a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  font-size: 0.95rem;
}

.contact-item a:hover {
  text-decoration: underline;
}


/* ===== FOOTER ===== */
.footer-section {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px 10px;
}

.footer-section .footer-links {
  margin-top: 10px;
}

.footer-section a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007BFF;
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background 0.3s, transform 0.3s;
}

.back-to-top:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.back-to-top {
  display: none; /* default hidden */
}

#scrollToTopBtn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 9999;
  background-color: #002b7f;
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #0044aa;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}



/* ===== ANIMASI ===== */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .business-card img {
    max-width: 80px;
  }
}
