/* ==========================================================================
   9. ABOUT PAGE - ARCHITECTURAL STYLE (ULTRA MONOCHROME)
   ========================================================================== */

/* Base Wrapper */
.about-page-wrapper {
  background-color: var(--pure-white);
  overflow-x: hidden;
}

/* --- SECTION HERO (Header About) --- */
.about-hero {
  padding: 80px 0 100px;
  background-color: #fcfcfc;
  text-align: center;
}

.about-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem); /* Ukuran font adaptif */
  font-weight: 900;
  color: var(--primary-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 20px 0;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  animation: fadeInUp 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- SPLIT SECTION (Content & Profile Image) --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--primary-black);
}

.about-text-left p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
}

/* Image Wrapper dengan Dekorasi */
.about-media-wrapper {
  position: relative;
  padding: 30px;
}

.about-image-right img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 1s ease;
  position: relative;
  z-index: 2;
}

.about-image-right:hover img {
  filter: grayscale(0%);
  transform: translateY(-10px);
}

.about-decorative-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background-color: var(--soft-gray);
  z-index: 1;
}

/* --- SKILLS GRID (The 3 Pillars) --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.skill-card {
  padding: 50px 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
}

.skill-card:hover {
  background-color: var(--primary-black);
  border-color: var(--primary-black);
}

.skill-card:hover h3,
.skill-card:hover p,
.skill-card:hover .skill-icon-box i {
  color: var(--pure-white) !important;
}

.skill-icon-box i {
  font-size: 30px;
  color: var(--primary-black);
  margin-bottom: 20px;
  display: inline-block;
}

.skill-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* --- PROJECTS MINI CARDS --- */
.about-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.project-mini-card {
  background: #000;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  transition: transform 0.4s ease;
}

.project-mini-card:hover {
  transform: scale(1.02);
}

.p-number {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.5;
}

.p-location {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- CALL TO ACTION --- */
.about-cta {
  background-color: var(--primary-black);
  color: var(--pure-white);
  padding: 100px 0;
  text-align: center;
}

.about-cta h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
  .grid-2-col,
  .skills-grid,
  .about-projects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero {
    padding: 120px 0 60px;
  }
  .about-title {
    font-size: 3rem;
  }

  .about-text-left {
    order: 2;
  }
  .about-image-right {
    order: 1;
  }

  .about-cta h2 {
    font-size: 2rem;
  }
}
