.page-about { background: #011E3E; }

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 5% 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #00102A 0%, #011E3E 100%);
}

#about3dCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.about-hero-content .section-tag { margin-bottom: 20px; }
.about-hero-content .page-title { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 20px; }
.about-hero-content .page-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-dim); line-height: 1.7; }

.about-lomba {
  padding: 100px 5%;
  background: linear-gradient(180deg, #011E3E 0%, #00102A 100%);
  position: relative;
}

.about-lomba::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(55, 158, 245, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(10, 46, 90, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-lomba-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lomba-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.lomba-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lomba-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lomba-text strong { color: var(--text); font-weight: 600; }

.lomba-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.highlight-box:hover {
  border-color: var(--primary-light);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(55, 158, 245, 0.2);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(55, 158, 245, 0.4);
}

.highlight-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.highlight-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.about-lokasi {
  padding: 100px 5%;
  background: linear-gradient(180deg, #00102A 0%, #011E3E 100%);
  position: relative;
}

.about-lokasi-container { max-width: 1200px; margin: 0 auto; }

.lokasi-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.maps-wrapper {
  margin-top: 50px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.maps-link {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.maps-link iframe {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(30%) brightness(0.9);
  transition: all 0.4s ease;
}

.maps-link:hover iframe { filter: grayscale(0%) brightness(1); }

.maps-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 30, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.maps-link:hover .maps-overlay { opacity: 1; }

.maps-overlay-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(55, 158, 245, 0.5);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.maps-link:hover .maps-overlay-content { transform: translateY(0); }
.maps-overlay-content i { font-size: 1.3rem; }

.lokasi-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.lokasi-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.lokasi-detail:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.lokasi-detail i { font-size: 1.5rem; color: var(--primary-light); flex-shrink: 0; }
.lokasi-detail > div { display: flex; flex-direction: column; gap: 4px; }
.lokasi-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.lokasi-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }

@media (max-width: 900px) {
  .lomba-content { grid-template-columns: 1fr; gap: 40px; }
  .lokasi-info { grid-template-columns: 1fr; }
  .maps-link iframe { height: 350px; }
}

@media (max-width: 640px) {
  .about-hero { min-height: 60vh; padding: 120px 5% 60px; }
  .about-lomba, .about-lokasi { padding: 80px 5%; }
  .highlight-box { padding: 20px; }
  .highlight-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .maps-link iframe { height: 300px; }
  .maps-overlay-content { padding: 14px 24px; font-size: 1rem; }
  .lokasi-detail { padding: 20px; }
}

.maps-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #379EF5, #E5E0C3);
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(55, 158, 245, 0.4);
}

.maps-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(55, 158, 245, 0.6);
}

@media (max-width: 640px) {
  .maps-button {
    bottom: 15px;
    right: 15px;
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}