    


    /* Hero Section */
    .hero {
      height: 100vh;
      color: var(--white);
      display: flex;
      align-items: center;
      text-align: left;
      position: relative;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .hero-logo {
      width: 260px !important;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 75px;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #FFFFFF;
    }

    .scroll-down {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 32px;
      height: 56px;
      border: 2px solid rgba(255,255,255,0.7);
      border-radius: 25px;
      text-align: center;
      cursor: pointer;
      transition: all 0.4s ease-in-out;
      animation: fadeIn 2.5s ease-in-out 1s forwards;
      opacity: 0;
    }

    .scroll-down span {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      margin-top: 10px;
      animation: scrollDownSmooth 3.5s cubic-bezier(0.77, 0, 0.175, 1) infinite; /* lebih lambat */
    }

    /* Keyframes */
    @keyframes scrollDownSmooth {
      0% {
        opacity: 0;
        transform: translateY(0);
      }
      25% {
        opacity: 1;
        transform: translateY(12px);
      }
      60% {
        opacity: 0.8;
        transform: translateY(22px);
      }
      100% {
        opacity: 0;
        transform: translateY(30px);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* Hover efek */
    .scroll-down:hover {
      border-color: #fff;
      transform: translateX(-50%) scale(1.05);
    }

    /* Smooth scroll */
    html {
      scroll-behavior: smooth;
    }


    .intro {
      background-color: #f3f3f3;
    }

    /* About Section */
    .about {
      padding: 5rem 1rem;
      background-repeat: no-repeat !important;
      background-position: bottom left !important;
      background-size: 80% !important;
    }

    .about h2 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .about p {
      color: var(--dark);
      font-size: 1.05rem;
    }

    .about img {
      width: 100%;
      border-radius: 0;
    }

    /* Inquiry Section */
    .inquiry {
      color: var(--white);
      text-align: center;
      padding: 6rem 1rem;
      position: relative;
    }

    .inquiry::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

    .inquiry .content {
      position: relative;
      z-index: 2;
      text-align: left;
    }

    .inquiry .content h2 {
      position: relative;
      z-index: 2;
      text-align: left;
      color: #FFFFFF;
    }

    /* CTA Buttons */
    .btn-cta-contact {
      display: inline-block;
      padding: 14px 36px;
      background: transparent;
      color: #fff;
      text-decoration: none;
      border-radius: 0;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      border: 2px solid #fff;
    }

    .btn-cta-contact:hover {
      background: #fff;
      color: #212121;
      transform: translateY(-2px);
    }

    /* Expertise */
    .expertise {
      padding: 5rem 1rem;
    }

    .card-expertise {
      position: relative;
      min-height: 275px;
      overflow: hidden;
      color: #fff;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .card-body {
      position: relative;
      z-index: 2;
      padding: 1.5rem;
    }

    .card-expertise::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
      z-index: 1;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      .about {
        padding: 3rem 1rem;
      }
    }


/* card */

.partner-card {
  max-width: 100%;
}

.partner-img-wrapper {
  width: 100%;
  height: 420px;              /* ukuran fix seperti contoh */
  overflow: hidden;
  border-radius: 0;
  background: #f3f3f3;
}

.partner-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  filter: grayscale(100%);
}

/* Overlay */
.partner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-overlay span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-card:hover .partner-overlay {
  opacity: 1;
}

/* Modal size & rounding */
.partner-modal {
  height: 80vh;                 /* tinggi modal FIX */
  border-radius: 0;
  overflow: hidden;
}

/* Left image area */
.partner-modal-image {
  height: 100%;
}

.partner-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* crop tengah */
  object-position: center;

  filter: grayscale(100%);
}

/* Right content */
.partner-modal-content {
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Fixed header */
.partner-modal-header {
  padding: 3rem 3rem 1.5rem 3rem;
  background: #fff;
  z-index: 5;
  border-bottom: 1px solid #e0e0e0;
}

/* Scroll only content */
.partner-modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 3rem 3rem 3rem;
}

.partner-modal {
  position: relative;
}

/* Close button top-right */
.partner-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 0.5rem;
}

/* Button Styles - View All Partners */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #212121;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 2px solid #212121;
}

.btn-view-all:hover {
  background: transparent;
  color: #212121;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all {
  border-radius: 0;
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* Practice Areas Section */
.practice-areas {
  padding: 5rem 1rem;
  background: #fff;
}

/* Practice Row Structure */
.practice-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.practice-row {
  margin-bottom: 0 !important;
}

/* Individual Practice Image - Reveal Effect */
.practice-img-item {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  transition: height 0.4s ease;
  margin-bottom: 0;
}

.practice-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
}

/* Practice Items List */
.practice-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.practice-item:last-child {
  border-bottom: none;
}

.practice-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.practice-header:hover {
  background: #f8f8f8;
  padding-left: 0.75rem;
}

.practice-number {
  font-size: 1rem;
  font-weight: 600;
  color: #808080;
  min-width: 50px;
  flex-shrink: 0;
}

.practice-title {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: #212121;
  margin: 0;
  transition: color 0.3s ease;
}

.practice-header:hover .practice-title {
  color: #000;
}

.practice-icon {
  font-size: 1.75rem;
  font-weight: 300;
  color: #212121;
  min-width: 35px;
  text-align: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.practice-header:hover .practice-icon {
  transform: scale(1.1);
}

.practice-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 50px;
}

.practice-content.active {
  max-height: 250px;
  padding: 0 0 1.5rem 50px;
}

.practice-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
}

.btn-practice-more {
  display: inline-block;
  padding: 10px 28px;
  background: #212121;
  color: #fff;
  border: 2px solid #212121;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-practice-more:hover {
  background: transparent;
  color: #212121;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .practice-img-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .practice-number {
    font-size: 0.9rem;
    min-width: 40px;
  }

  .practice-title {
    font-size: 1rem;
  }

  .practice-icon {
    font-size: 1.5rem;
    min-width: 30px;
  }

  .practice-content {
    padding: 0 0 0 40px;
  }

  .practice-content.active {
    padding: 0 0 1.25rem 40px;
  }

  .practice-header:hover {
    padding-left: 0.5rem;
  }

  .practice-img-item {
    margin-bottom: 1rem;
  }
}

/* Our Values Section */
.values-section {
    padding: 80px 0 0 0;
    overflow: hidden;
}

.values-title {
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 60px;
    padding: 0 15px;
    text-align: left;
    color: #000;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.value-box {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.value-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-text:hover {
    transform: scale(1.02);
}

.value-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.bg-dark-blue {
    background-color: #212121;
    color: white;
}

.bg-dark-blue h3,
.bg-dark-blue p {
    color: white;
}

.bg-cream {
    background-color: #d4d4d4;
    color: #1a1a1a;
}

.value-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.value-image:hover img {
    filter: grayscale(80%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .values-title {
        font-size: 45px;
    }

    .value-text h3 {
        font-size: 1.5rem;
    }

    .value-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0 0 0;
    }

    .values-title {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-text {
        padding: 30px;
    }

    .value-text h3 {
        font-size: 1.3rem;
    }
}
