.work-container {
  max-width: 1280px;
  margin: 60px auto 90px;
  padding: 0 25px;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading .subtitle {
  color: var(--royal-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
}

/* PROJECT TITLE */
.project-group {
  margin-bottom: 50px;
}

.project-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.project-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--royal-blue);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* BEFORE & AFTER ROW */
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* RECENT WORK GRID */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* STANDARD WORK CARD (Sama untuk Before/After & Recent Work) */
.work-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* ANIMASI FLOAT & SHADOW BILA HOVER */
.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(3, 37, 108, 0.15);
  border-color: var(--accent);
}

/* BEKAS GAMBAR STANDARD (FIXED ASPECT RATIO 16:9) */
.card-img-box {
  width: 100%;
  aspect-ratio: 16 / 10; /* Menetapkan nisbah saiz gambar standard */
  position: relative;
  overflow: hidden;
  background-color: #e2e8f0;
}

.card-img-box img {
  width: 100%;
  height: 112%; /* Sengaja dilebihkan tinggi sedikit untuk kesan skrol */
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ANIMASI GAMBAR TERSKROL KE ATAS BILA HOVER KAD */
.work-card:hover .card-img-box img {
  transform: translateY(-8%);
}

/* TAG BEFORE & AFTER */
.ba-badge {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  color: white;
  letter-spacing: 0.5px;
  z-index: 5;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tag-before {
  left: 14px;
  background: rgba(3, 37, 108, 0.85);
}

.tag-after {
  right: 14px;
  background: rgba(0, 168, 255, 0.9);
}

/* LABEL TAJUK DI BAWAH GAMBAR */
.card-footer-title {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  text-align: center;
  background: white;
  border-top: 1px solid #f1f5f9;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .recent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ba-row, .recent-grid {
    grid-template-columns: 1fr;
  }
}
