/* ==========================================================================
   3. HERO SECTION (ULTRA MONOCHROME VERSION)
   ========================================================================== */
.re-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/hero-bg-2.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed; /* Parallax effect tetap dipertahankan */
  overflow: hidden;
}

/* Vignette overlay: Dibuat lebih dramatis dengan warna hitam murni */
.re-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.re-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.re-hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Badge Dekorasi Atas */
.hero-action-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-action-badge .badge-line {
  width: 30px;
  height: 1px;
  background-color: var(--pure-white);
}

.hero-action-badge .badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--pure-white);
}

/* Judul Utama: Lebih Masif & Arsitektural */
.hero-title {
  font-size: 6rem;
  font-weight: 900;
  color: var(--pure-white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Titik Aksen: Menjadi putih pekat atau abu-abu gelap sesuai tema monochrome */
.hero-title .hero-dot {
  color: var(--pure-white) !important;
}

/* Sub-judul: Lebih minimalis */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 50px 0;
  max-width: 550px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* --- KELOMPOK TOMBOL (CTA GROUP) --- */
.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Tombol Utama (Putih) */
.btn-primary-fieldo {
  background-color: var(--pure-white);
  color: var(--primary-black) !important;
  border: 1px solid var(--pure-white);
  padding: 18px 40px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-fieldo:hover {
  background-color: transparent;
  color: var(--pure-white) !important;
  transform: translateY(-3px);
}

/* Tombol Kedua (Outline) */
.btn-secondary-fieldo {
  background-color: transparent;
  color: var(--pure-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px 40px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-fieldo:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--pure-white);
  transform: translateY(-3px);
}

/* --- ANIMASI KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVITAS HERO --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .re-hero-section {
    background-attachment: scroll; /* Matikan parallax di mobile untuk performa */
    text-align: center;
  }
  .re-hero-content {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .btn-primary-fieldo,
  .btn-secondary-fieldo {
    width: 100%;
  }
}

/* ==========================================================================
   4. FEATURED SECTION (ULTRA MONOCHROME & SHARP GRID)
   ========================================================================== */
.re-featured-section {
  padding: 120px 0; /* Padding lebih lega untuk kesan mewah */
  background-color: var(--pure-white);
}

/* --- SECTION HEADING STYLE --- */
.re-section-heading {
  text-align: left;
  margin-bottom: 60px;
}

.re-section-heading .section-sub-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em; /* Jarak huruf lebih ekstrim untuk kesan arsitektural */
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.re-section-heading .section-main-title {
  font-size: 3.5rem; /* Lebih masif */
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
}

/* Titik aksen mengikuti tema Monochrome */
.re-section-heading .title-dot {
  color: var(--primary-black) !important;
}

/* --- KONTANER FORMULIR PENCARIAN --- */
.featured-search-container {
  background-color: #fcfcfc; /* Abu-abu yang sangat tipis */
  padding: 40px 50px;
  margin-bottom: 80px;
  border: 1px solid #eeeeee;
  box-shadow: none; /* Hilangkan shadow untuk gaya flat luxury */
}

.featured-search-grid {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

.f-search-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-search-field label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-black);
}

.f-search-field input,
.f-search-field select {
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--primary-black); /* Garis tegas hitam */
  font-size: 1rem;
  color: var(--primary-black);
  font-weight: 600;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.f-search-field input:focus,
.f-search-field select:focus {
  border-bottom-color: var(--mid-gray); /* Berubah menjadi abu-abu saat aktif */
}

/* Tombol Cari */
.btn-f-search {
  background-color: var(--primary-black) !important;
  color: var(--pure-white) !important;
  width: 100%;
  height: 55px;
  border: none;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-f-search:hover {
  background-color: var(--deep-charcoal) !important;
  letter-spacing: 0.3em; /* Efek expansi huruf saat hover */
}

/* --- GRID LAYOUT 3 KOLOM --- */
.layout-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* --- TOMBOL SEE MORE --- */
.featured-footer {
  text-align: center;
  margin-top: 80px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  border: 1px solid var(--primary-black);
  background-color: transparent;
  color: var(--primary-black) !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-view-all:hover {
  background-color: var(--primary-black);
  color: var(--pure-white) !important;
}

/* --- RESPONSIVITAS FEATURED --- */
@media (max-width: 1100px) {
  .featured-search-grid {
    grid-template-columns: 1fr 1.5fr 120px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .layout-three-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-search-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .featured-search-container {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .layout-three-columns {
    grid-template-columns: 1fr;
  }
  .re-section-heading .section-main-title {
    font-size: 2.5rem;
  }
}
/* ==========================================================================
   5. LUXURY PROPERTY CARD DESIGN (FIELDO STYLE)
   ========================================================================== */
.card-link,
.card-link:hover,
.card-link:focus {
  text-decoration: none !important; /* Menghapus garis bawah */
  outline: none;
}

/* Memastikan judul properti juga tidak memiliki garis bawah */
.property-title {
  text-decoration: none !important;
}
.property-list-section {
  background-color: #f8f8f8; /* Beri warna abu-abu sangat muda pada background section */
  padding: 100px 0;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* Jarak antar kartu lebih lega */
}

.property-card {
  background: #ffffff; /* Kartu tetap putih bersih agar kontras dengan background abu-abu */
  border-radius: 4px; /* Sedikit lengkungan agar tidak terlalu tajam */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;

  /* Bayangan halus agar kartu terlihat melayang */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03); /* Garis tepi yang sangat tipis */
}

/* Efek saat kartu diarahkan kursor (Hover) */
.property-card:hover {
  transform: translateY(-10px); /* Kartu naik sedikit */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); /* Bayangan menjadi lebih tegas */
  border-color: #bc9c22; /* Warna border berubah menjadi emas */
}

/* Foto Properti */
.property-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-gallery-btn {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.75);
  color: #fff;

  cursor: pointer;
  z-index: 20;

  transition: all 0.3s ease;
}

.card-gallery-btn:hover {
  transform: scale(1.05);
}

.card-gallery-btn i {
  font-size: 16px;
}

.property-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.property-card:hover .property-thumbnail img {
  transform: scale(1.1);
}

/* Bagian Detail di Dalam Kartu */
.property-details {
  padding: 30px; /* Padding lebih luas agar terlihat premium */
}

.property-location {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 700;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  gap: 5px;

  overflow: hidden;
  white-space: nowrap;
}

.property-location i {
  flex-shrink: 0;
}

.property-location span,
.property-location .location-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Spesifikasi (Kamar Tidur, dll) */
.property-specs {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 20px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.property-specs span {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-specs i {
  color: #111;
  font-size: 12px;
}

/* Harga */
.property-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-value {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.price-label {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
}

.no-results {
  text-align: center;
  padding: 100px 0;
  border: 1px dashed #ddd;
  margin-top: 40px;
}

.no-results h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.btn-reset {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .property-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   6. OUR SERVICES SECTION (ULTRA MONOCHROME)
   ========================================================================== */
.re-services-section {
  padding: 120px 0;
  background-color: #fafafa; /* Off-white yang sangat tipis untuk membedakan dengan section lain */
  border-top: 1px solid #eeeeee;
}

/* Penyelarasan Judul Tengah */
.text-center {
  text-align: center;
  margin-bottom: 80px;
}

/* Grid 3 Kolom Tetap Dipertahankan */
.re-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* --- KARTU LAYANAN (SERVICE CARD) --- */
.service-card {
  background-color: var(--pure-white);
  padding: 60px 45px;
  border: 1px solid #eeeeee;
  border-radius: 0; /* Paksa sudut tajam arsitektural */
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Efek Hover: Fokus pada Border & Skala */
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-black); /* Bingkai menjadi hitam tegas */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

/* --- WADAH IKON (ICON BOX) --- */
.service-icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--primary-black); /* Hitam Solid */
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 35px;
  border-radius: 0; /* Kotak kaku */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* REVISI: Hover icon box tidak lagi emas, tapi berubah menjadi abu-abu gelap atau outline */
.service-card:hover .service-icon-box {
  background-color: var(--deep-charcoal);
  transform: rotate(-5deg); /* Sedikit rotasi artistik saat hover */
}

/* --- TYPOGRAPHY --- */
.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-black);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.service-description {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

/* --- RESPONSIVITAS --- */
@media (max-width: 1024px) {
  .re-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .re-services-section {
    padding: 80px 0;
  }
  .re-services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 40px 30px;
    text-align: center;
    align-items: center;
  }
  .text-center {
    margin-bottom: 50px;
  }
}

/* ==========================================================================
   6. EXPLORE LOCATIONS (ULTRA MONOCHROME LUXURY GRID)
   ========================================================================== */
.re-locations-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background-color: var(--pure-white);
  position: relative;
}

/* Master Grid Layout */
.re-locations-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 20px;
  height: 70vh; /* Mengunci tinggi grid agar proporsional dengan layar */
  margin-top: 40px;
}

/* Sub-grid Kanan */
.location-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* --- KARTU LOKASI (BASE) --- */
.location-card,
.location-card-wide {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-black);
  border-radius: 0; /* Tajam & Arsitektural */
}

/* Link Wrapper agar seluruh area bisa diklik */
.location-card a,
.location-card-wide a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Foto Lokasi */
.location-card img,
.location-card-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* Full Monochrome di awal */
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.8;
}

/* Overlay Hitam Pekat (Bukan Cokelat/Emas) */
.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  transition: all 0.5s ease;
}

/* --- INFO TEXT --- */
.location-info {
  position: absolute;
  bottom: 35px;
  left: 35px;
  right: 35px;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pure-white);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.location-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
}

/* --- EFEK HOVER --- */
.location-card:hover img,
.location-card-wide:hover img {
  transform: scale(1.1);
  filter: grayscale(0%); /* Muncul warna asli sedikit saat hover */
  opacity: 1;
}

.location-card:hover .location-info,
.location-card-wide:hover .location-info {
  transform: translateY(-10px);
}

.location-card:hover .location-overlay,
.location-card-wide:hover .location-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* --- RESPONSIVITAS (CRITICAL) --- */
@media (max-width: 1024px) {
  .re-locations-grid {
    grid-template-columns: 1fr;
    height: auto; /* Lepas kunci height di mobile */
  }
  .location-card-wide {
    height: 400px;
  }
  .location-sub-grid {
    height: auto;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .location-sub-grid {
    grid-template-columns: 1fr; /* Tumpuk satu kolom di HP */
  }
  .location-card {
    height: 300px;
  }
  .location-name {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   7. TESTIMONIALS SECTION (ULTRA MONOCHROME PREMIUM)
   ========================================================================== */
.re-testimonials-section {
  padding: 120px 0;
  background-color: #ffffff; /* Putih bersih */
  border-top: 1px solid #eeeeee;
  position: relative;
}

/* Grid Layout Tetap 3 Kolom */
.re-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* --- KARTU TESTIMONI --- */
.testimonial-card {
  background-color: var(--pure-white);
  padding: 50px 40px;
  border: 1px solid #eeeeee;
  border-radius: 0; /* Sudut tajam arsitektural */
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

/* Hover: Border Hitam Tegas */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-black);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
}

/* Ikon Petik (Quote): Dari Emas ke Hitam Halus */
.quote-icon {
  font-size: 32px;
  color: var(--primary-black); /* Hitam pekat */
  opacity: 0.15; /* Dibuat sangat samar agar elegan */
  margin-bottom: 25px;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.4; /* Sedikit lebih jelas saat di-hover */
}

/* Isi Teks: Tipografi lebih tajam */
.testimonial-text {
  font-size: 1rem;
  color: var(--deep-charcoal);
  line-height: 1.8;
  font-style: normal; /* Menghilangkan italic agar lebih modern */
  font-weight: 400;
  margin: 0 0 40px 0;
  flex-grow: 1; /* Memastikan info penulis selalu di bawah */
}

/* --- INFO PENULIS --- */
.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #f5f5f5;
  padding-top: 25px;
  gap: 15px;
}

/* Jika ada avatar/foto */
.author-avatar {
  width: 45px;
  height: 45px;
  background-color: var(--light-gray);
  border-radius: 0; /* Tetap kotak */
  overflow: hidden;
}

.author-info-text {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-company {
  font-size: 0.7rem;
  color: var(--mid-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* --- RESPONSIVITAS --- */
@media (max-width: 1024px) {
  .re-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .re-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .testimonial-card {
    padding: 40px 30px;
  }
}

/* ==========================================================================
   8. ABOUT US SECTION (ULTRA MINOCHROME ARCHITECTURAL)
   ========================================================================== */
.re-about-section {
  padding: 140px 0; /* Padding lebih lega untuk ruang napas */
  background-color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.re-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; /* Jarak antar kolom lebih lebar agar eksklusif */
  align-items: center;
}

/* --- KIRI: FOTO DEKORATIF --- */
.about-media-wrapper {
  position: relative;
  padding-bottom: 40px;
}

.about-image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* Efek grayscale pada foto tentang kami */
  filter: grayscale(100%);
  transition: filter 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-frame:hover {
  filter: grayscale(0%);
}

.about-image-frame img {
  width: 100%;
  height: 600px; /* Tinggi yang lebih anggun */
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-frame:hover img {
  transform: scale(1.05);
}

/* Kotak Dekoratif Abu-abu Minimalis */
.about-decorative-box {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 75%;
  height: 75%;
  background-color: var(
    --soft-gray
  ) !important; /* Gunakan variabel abu-abu lembut */
  z-index: 1;
  border: none !important;
}

/* --- KANAN: TEKS & STATISTIK --- */
.about-content-wrapper {
  padding-right: 0;
}

.about-lead-text {
  font-size: 1.5rem; /* Lebih besar & berwibawa */
  color: var(--primary-black);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.about-body-text {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.9;
  margin-bottom: 50px;
}

/* --- GRID STATISTIK --- */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 2px solid var(--primary-black); /* Garis tegas hitam di atas statistik */
  padding-top: 40px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
}

/* --- RESPONSIVITAS --- */
@media (max-width: 1100px) {
  .re-about-grid {
    gap: 50px;
  }
  .about-lead-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .re-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-media-wrapper {
    order: 2; /* Foto pindah ke bawah teks di mobile */
  }
  .about-content-wrapper {
    order: 1;
  }
  .about-image-frame img {
    height: 450px;
  }
}

@media (max-width: 600px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
