/* ===== Back Button ===== */
.au-back-btn {
  display: inline-block;
  margin: 16px 0 0 24px;
  padding: 7px 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.au-back-btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===== Base ===== */
.au-section {
  padding: 56px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.au-section:last-of-type {
  border-bottom: none;
}

.au-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Badge */
.au-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  margin-bottom: 14px;
}

/* Title */
.au-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

/* Tagline */
.au-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Body text */
.au-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  text-align: justify;
}

.au-closing-line {
  font-weight: 700;
  color: #fff;
}

/* ===== WHO WE ARE — Hero Logo ===== */
.au-hero-logo-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.au-hero-logo {
  width: 90px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  animation: floatSlow 4s ease-in-out infinite;
}

/* Pills */
.au-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.au-pill {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

/* ===== Moments Gallery ===== */
.au-moments-wrap {
  margin: 24px 0;
}

.au-moments-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.au-moments {
  display: flex;
  flex-direction: row;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.au-moments::-webkit-scrollbar {
  height: 4px;
}

.au-moments::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.au-moments::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}

.au-moment-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 180px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: transform 0.2s;
}

.au-moment-item:hover {
  transform: scale(1.03);
}

.au-moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.au-moment-item {
  position: relative;
}

/* ===== OUR STORY ===== */
.au-founded-grid {
  display: block;
}

.au-founded-top {
  margin-bottom: 4px;
}

.au-year {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-top: 4px;
}

.au-quote {
  border-left: 3px solid rgba(255,255,255,0.45);
  padding: 12px 18px;
  margin: 18px 0;
  font-style: italic;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  background: rgba(255,255,255,0.07);
  border-radius: 0 10px 10px 0;
}

.au-milestones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 20px;
}

.au-milestone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

.au-milestone-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* Desktop: kanan column */
.au-founded-img-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}

/* Mobile inline: hidden di desktop */
.au-founded-img-mobile {
  display: none;
}

.au-story-img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.2));
  animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ===== Vision & Mission ===== */
.au-vismis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}

.au-vismis-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 26px 22px;
}

.au-vismis-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.au-vismis-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.au-vismis-card p,
.au-vismis-card li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.au-vismis-card ul {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== Wrapsgang ===== */
.au-wg-def {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 26px 24px;
  margin-top: 12px;
}

.au-wg-word {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
}

.au-wg-word em {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.65;
}

/* ===== Testimonial Screenshot Gallery ===== */
.au-testi-hint {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.au-testi-scroll {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  cursor: grab;
}

.au-testi-scroll:active {
  cursor: grabbing;
}

.au-testi-scroll::-webkit-scrollbar {
  height: 4px;
}

.au-testi-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.au-testi-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}

.au-testi-img {
  scroll-snap-align: start;
  width: 160px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  /* pop-up animation initial state */
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s;
}

.au-testi-img.testi-pop-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.au-testi-img:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transform: translateY(-3px) scale(1.02);
}

.au-testi-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Placeholder ketika foto belum ada */
.au-testi-img img[src$="testi1.jpg"],
.au-testi-img img[src$="testi2.jpg"],
.au-testi-img img[src$="testi3.jpg"],
.au-testi-img img[src$="testi4.jpg"],
.au-testi-img img[src$="testi5.jpg"],
.au-testi-img img[src$="testi6.jpg"],
.au-testi-img img[src$="testi7.jpg"],
.au-testi-img img[src$="testi8.jpg"],
.au-testi-img img[src$="testi9.jpg"],
.au-testi-img img[src$="testi10.jpg"] {
  min-height: 200px;
  background: rgba(255,255,255,0.08);
}

/* ===== CTA Ending ===== */
.au-cta {
  border-bottom: none;
}

.au-cta-inner {
  text-align: center;
}

.au-cta-inner .au-title {
  font-size: 2rem;
}

.au-cta-inner .au-body {
  max-width: 540px;
  margin: 0 auto 14px;
}

.au-cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 44px;
  background: #fff;
  color: #ed0100;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.au-cta-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

  .au-section {
    padding: 44px 20px;
  }

  .au-title {
    font-size: 1.55rem;
  }

  .au-year {
    font-size: 3rem;
  }

  .au-body {
    font-size: 0.95rem;
  }

  .au-hero-logo {
    width: 80px;
  }

  /* OUR STORY: 1 kolom, gambar muncul inline */
  .au-founded-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .au-founded-img-desktop {
    display: none;
  }

  .au-founded-img-mobile {
    display: flex;
    justify-content: center;
    margin: 20px 0 24px;
  }

  .au-founded-img-mobile .au-story-img {
    max-width: 130px;
  }

  /* Vismis: 1 kolom */
  .au-vismis-grid {
    grid-template-columns: 1fr;
  }

  .au-cta-inner .au-title {
    font-size: 1.55rem;
  }

  .au-pills {
    gap: 8px;
  }

  .au-pill {
    font-size: 0.78rem;
    padding: 5px 13px;
  }

  .au-wg-def {
    padding: 20px 18px;
  }
}
