/* ========== FONT SETUP ========== */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
}

h1,
h2,
h3,
h4,
.highlight,
.badge {
  font-family: "League Spartan", sans-serif;
}

/* ========== SECTION TENTANG KAMI ========== */
#tentang-kami {
  padding: 120px 48px 80px;
  background: linear-gradient(135deg, #fff 0%, #faf9f5 100%);
}

#tentang-kami .container {
  max-width: 1400px;
  margin: 0 auto;
}

#tentang-kami .tentang-header {
  text-align: center;
  margin-bottom: 60px;
}

#tentang-kami .badge {
  display: inline-block;
  background: rgba(240, 173, 33, 0.1);
  color: #f0ad21;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

#tentang-kami .tentang-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

#tentang-kami .tentang-header h1 .highlight {
  color: #f0ad21;
  font-weight: 800;
}

#tentang-kami .tentang-header .divider {
  width: 60px;
  height: 2px;
  background: #f0ad21;
  margin: 0 auto;
  border-radius: 2px;
}

#tentang-kami .tentang-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#tentang-kami .tentang-text .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: "League Spartan", sans-serif;
}

#tentang-kami .tentang-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
}

#tentang-kami .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

#tentang-kami .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

#tentang-kami .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #f0ad21;
}

#tentang-kami .feature-icon span {
  font-size: 28px;
  color: #f0ad21;
}

#tentang-kami .feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

#tentang-kami .feature-text p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

#tentang-kami .tentang-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#tentang-kami .btn-primary,
#tentang-kami .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

#tentang-kami .btn-primary {
  background: #1a1a1a;
  color: white;
  border: 1px solid #1a1a1a;
}

#tentang-kami .btn-primary:hover {
  background: #f0ad21;
  border-color: #f0ad21;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(240, 173, 33, 0.25);
}

#tentang-kami .btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

#tentang-kami .btn-outline:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

#tentang-kami .tentang-image {
  position: relative;
}

#tentang-kami .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

#tentang-kami .grid-img {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#tentang-kami .grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#tentang-kami .grid-img:hover img {
  transform: scale(1.05);
}

#tentang-kami .img1 {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

#tentang-kami .img2 {
  aspect-ratio: 1 / 1;
}

#tentang-kami .img3 {
  aspect-ratio: 1 / 1;
}

#tentang-kami .img4 {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

#tentang-kami .image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
}

#tentang-kami .years {
  background: #f0ad21;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#tentang-kami .years .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  font-family: "League Spartan", sans-serif;
}

#tentang-kami .years .label {
  font-size: 0.7rem;
  color: white;
  opacity: 0.9;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

/* ========== SECTION LOKASI ========== */
#lokasi {
  padding: 80px 48px;
  background: #111;
}

#lokasi .container {
  max-width: 1400px;
  margin: 0 auto;
}

#lokasi .lokasi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#lokasi .badge {
  display: inline-block;
  background: rgba(240, 173, 33, 0.12);
  color: #f0ad21;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

#lokasi h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-family: "League Spartan", sans-serif;
}

#lokasi .lokasi-info > p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

#lokasi .alamat-box,
#lokasi .jam-box,
#lokasi .kontak-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#lokasi .alamat-box:last-child,
#lokasi .jam-box:last-child,
#lokasi .kontak-box:last-child {
  border-bottom: none;
}

#lokasi .alamat-icon span,
#lokasi .jam-icon span,
#lokasi .kontak-icon span {
  font-size: 24px;
  color: #f0ad21;
}

#lokasi .alamat-text h4,
#lokasi .jam-text h4,
#lokasi .kontak-text h4 {
  color: white;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "League Spartan", sans-serif;
}

#lokasi .alamat-text p,
#lokasi .jam-text p,
#lokasi .kontak-text p {
  color: #aaa;
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

#lokasi .lokasi-map {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

#lokasi .lokasi-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
  #tentang-kami {
    padding: 100px 32px 60px;
  }

  #tentang-kami .tentang-content {
    gap: 40px;
  }

  #lokasi {
    padding: 60px 32px;
  }

  #lokasi .lokasi-wrapper {
    gap: 40px;
  }

  #lokasi .lokasi-map {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  #tentang-kami {
    padding: 80px 24px 50px;
  }

  #tentang-kami .tentang-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #tentang-kami .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #tentang-kami .tentang-buttons {
    justify-content: center;
  }

  #tentang-kami .image-badge {
    bottom: -10px;
    right: -10px;
  }

  #tentang-kami .years {
    padding: 12px 20px;
  }

  #tentang-kami .years .number {
    font-size: 1.5rem;
  }

  #lokasi {
    padding: 50px 24px;
  }

  #lokasi .lokasi-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #lokasi .lokasi-map {
    height: 280px;
  }
}

@media screen and (max-width: 480px) {
  #tentang-kami {
    padding: 60px 16px 40px;
  }

  #tentang-kami .tentang-buttons {
    flex-direction: column;
    align-items: center;
  }

  #tentang-kami .btn-primary,
  #tentang-kami .btn-outline {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  #tentang-kami .image-grid {
    gap: 8px;
  }

  #lokasi {
    padding: 40px 16px;
  }
}
