:root{
  --svc-mutedCard:#5f5877;
  --blue:#1F1548;
  --gold:#E4CE8E;
}

/* =============================
   NAV SERVICES DROPDOWN 
============================= */
.nav .nav-dropdown{ position:relative; }

.nav .nav-dropbtn{
  appearance:none;
  border:none;
  background:transparent;
  color:inherit;
  font-size:22px;
  padding:10px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.nav .nav-dropbtn.active{ color: var(--gold); }

.nav .nav-caret{
  width:0;
  height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:7px solid currentColor;
  opacity:.95;
  transform: translateY(1px);
}

.nav .nav-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform: translateX(-50%) translateY(8px);
  min-width:200px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  padding:10px;
  z-index:2000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}


.nav .nav-dropdown::after{
  content:"";
  position:absolute;
  left:-18px;
  right:-18px;
  top:100%;
  height:14px;
}


.nav .nav-dropdown:hover .nav-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform: translateX(-50%) translateY(14px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav .nav-dropdown.open .nav-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform: translateX(-50%) translateY(14px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav .nav-menu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:12px;
  font-size:18px;
  color: var(--blue);
}

.nav .nav-menu a:hover{
  background: var(--gold);
}



/* =============================
   HERO
============================= */
.services-hero{
  height:280px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.18) 100%),
    url("../assets/Background.jpeg") center/cover no-repeat;
  filter: grayscale(100%);
  position:relative;
}

.services-hero .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
  height:100%;
  display:flex;
  align-items:flex-end;
}

.services-hero h1{
  margin:0 0 42px;
  color:#fff;
  font-size:54px;
  letter-spacing:.2px;
}

/* =============================
   LAYOUT
============================= */
.services-page{
  background:#fff;
}

.services-main{
  padding:78px 0 40px;
}

.services-main .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
}

.services-grid{
  display:grid;
  grid-template-columns: 520px 1px 1fr;
  gap:0;
  align-items:start;
}


.services-grid > div:last-child{ padding-left:60px; }

.services-divider{
  width:1px;
  background:#d9d9d9;
  min-height:980px;
}


/* =============================
   LEFT: TABS + SIDE NAV
============================= */
.svc-tabs{
  display:flex;
  align-items:center;
  gap:22px;
  padding:0 0 44px;
}

.svc-tab{
  border:none;
  background:transparent;
  font-size:32px;
  font-weight:800;
  color:var(--blue);
  padding:12px 28px; 
  border-radius:0; 
  cursor:pointer;
  transition: all 0.3s ease; 
}

.svc-tab:hover{ 
  transform: translateX(8px); 
  color: var(--gold);
}

.svc-tab[aria-selected="true"]{
  background: var(--gold);
  color: #fff;
  transform: translateX(0); 
}

.svc-side{
  padding-top:22px;
}

.svc-side button{
  border:none;
  background:transparent;
  display:block;
  width:100%;
  text-align:left;
  font-size:24px;
  font-weight:700;
  color:#7a7a7a;
  padding:18px 0;
  cursor:pointer;
}

.svc-side button.is-active{
  color: var(--blue);
}

.svc-side button .underline{
  display:block;
  width:112px;
  height:3px;
  background:transparent;
  margin-top:10px;
}

.svc-side button.is-active .underline{
  background: var(--gold);
}

/* =============================
   RIGHT: CONTENT
============================= */

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.svc-panel[style*="display: block"],
.svc-section[style*="display: block"] {
  animation: fadePanel 0.45s ease-out forwards;
}

.svc-section{ display:none; }
.svc-section.is-active{ display:block; }

.svc-callout{
  border:1.5px solid #a8a3bc;
  border-radius:18px;
  padding:32px 34px;
  margin:0 0 38px;
}

.svc-callout h2{
  margin:0 0 14px;
  color:var(--blue);
  font-size:32px;
  line-height:1.22;
}

.svc-callout p{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.75;
  color:#2f2f2f;
}
.svc-callout p:last-child{ margin-bottom:0; }

.svc-h{
  margin:0 0 12px;
  color:var(--blue);
  font-size:32px;
  font-weight:800;
}

.svc-p{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.75;
  color:#2f2f2f;
  max-width:920px;
}

.svc-list{
  margin:14px 0 34px;
  padding:0;
  list-style:none;
}

.svc-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin:10px 0;
  font-size:22px;
  color:#2f2f2f;
  line-height:1.6;
}

.svc-list li .arr{
  font-size:22px;
  line-height:1;
  transform: translateY(6px);
}

/* Practice area title row with lines */
.svc-strip{
  border-top:1px solid #bdbdbd;
  border-bottom:1px solid #bdbdbd;
  padding:14px 0;
  margin:34px 0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.svc-strip .title{
  font-size:32px;
  font-weight:800;
  color:var(--blue);
}

.svc-practice{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:32px;
  max-width:720px;
}

.svc-card{
  aspect-ratio: 1 / 1;
  text-decoration:none;
  background: var(--svc-mutedCard);
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  color:#e9e9ef;
  font-size:22px;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease;
}

.svc-card:hover,
.svc-card:focus-visible{
  background: var(--blue);
  transform: translateY(-2px);
  outline:none;
}

.svc-card.is-active{ background: var(--blue); color:#fff; }

/* How we work chevrons */
.svc-how {
  margin-top: 80px;
}

.svc-steps {
  display: flex;
  flex-direction: row;
  gap: 0; 
  margin: 18px 0 0;
  max-width: 840px;
  overflow: visible;
}

/* KOTAK INDIVIDU */
.svc-step {
  flex: 1;
  background: #1a143d; 
  color: #fff;
  padding: 30px 40px 30px 70px; 
  position: relative;
  clip-path: polygon(0% 0%, 82% 0%, 100% 50%, 82% 100%, 0% 100%, 18% 50%);
  margin-right: -40px; 
  transition: transform 0.3s ease-in-out, z-index 0s;
}

.svc-step:first-child {
  padding-left: 40px;
  clip-path: polygon(0% 0%, 82% 0%, 100% 50%, 82% 100%, 0% 100%);
}

.svc-step:last-child {
  margin-right: 0; 
  clip-path: polygon(0% 0%, 82% 0%, 100% 50%, 82% 100%, 0% 100%, 18% 50%);
}

/* ANIMASI HOVER */
.svc-step:hover {
  transform: scale(1.05); 
  z-index: 10; 
}

.svc-step h4 {
  margin: 0 0 5px;
  font-size: 32px; 
  font-weight: 800;
}

.svc-step p {
  margin: 0;
  font-size: 16px; 
  line-height: 1.4;
  opacity: 0.9;
}

.svc-bullets{
  margin:14px 0 0;
  padding-left:18px;
  color:#2f2f2f;
  font-size:28px;
  line-height:1.7;
}

.svc-bullets li{ margin:10px 0; }

.svc-quote{
  margin:56px 0 0;
  font-size:34px;
  font-weight:800;
  font-style:italic;
  color:#111;
  letter-spacing:.2px;
}

/* =============================
   AWARDS ROW 
============================= */
.services-awards{
  padding:40px 0 0;
}

.services-awards .divider{
  height:1px;
  background:#d7d7d7;
  width:100%;
}

.services-awards .row{
  max-width:1600px;
  margin:0 auto;
  padding:22px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.services-awards img{
  height:100px;
  width:auto;
  object-fit:contain;
  filter: grayscale(30%);
  opacity:.95;
}

/* =============================
   RESPONSIVE 
============================= */
@media (max-width: 1100px){
  .services-grid{ grid-template-columns:1fr; }
  .services-divider{ display:none; }
  .services-grid > div:last-child{ padding-left:0; }
  .svc-practice{ max-width:unset; }

  .svc-steps{
    grid-template-columns:1fr;
    gap:14px;
  }

  .svc-step{
    min-height:auto;
    padding:26px 28px;
    clip-path:none !important;
    border-radius:16px;
  }

  .svc-step:nth-child(2),
  .svc-step:last-child{
    padding-left:28px;
    padding-right:28px;
  }
}

/* =============================
   NEXT STEP 
============================= */
.next-step-bg{
  margin-top:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.38) 60%, rgba(0,0,0,.20) 100%),
    url("../assets/2.jpg") center/cover no-repeat;
  padding:100px 0 0;
}

.next-step-bg .title{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
  color:var(--gold);
  font-size:40px;
  font-weight:700;
}

.next-step-bg .subtitle{
  max-width:720px;
  margin:20px 240px 0;
  padding:0 0 100px;
  color:rgba(255,255,255,.88);
  font-size:22px;
  line-height:1.85;
  text-align:left;
}

.next-step{
  background:var(--gold);
  margin-top:18px;
  padding:40px 0;
}

.next-step .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
}

.next-step h3{
  margin:0 0 6px;
  color:var(--blue);
  font-size:38px;
}

.next-step p{
  margin:20px 0 16px;
  font-size:22px;
  color:#3f3f3f;
  width:840px;
  line-height:1.6;
}

.subscribe{
  display:flex;
  align-items:center;
  gap:0;
}

.subscribe input{
  width:560px;
  height:60px;
  border:none;
  outline:none;
  padding:0 12px;
  background:#fff;
  font-size:22px;
}

.subscribe button{
  height:60px;
  padding:0 18px;
  border:none;
  background:var(--blue);
  color:#fff;
  font-size: 22px;
  font-weight:700;
  cursor:pointer;
  border-radius:0;
  font-family: "IBM Plex Sans";
}

.subscribe button.btn-cta::before{ background:var(--gold); }

.services-awards .row img:last-child {
  height: 300px; 
  width: auto;
}

