/* =========================
   PALET & BASIS
========================= */
:root{
  --black: #0b0b0c;
  --black-2: #121212;
  --charcoal:#1a1a1a;
  --white:#ffffff;
  --text:#e9e9e9;
  --muted:#b9b9b9;
  --gold:#d4af37;         /* gold utama */
  --gold-600:#b89028;     /* gold lebih gelap untuk hover */
  --ring:#ffffff1a;       /* ring halus */
  --card:#0f0f10cc;       /* glass card */
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.container{width:92%; max-width:1200px; margin:auto}

/* =========================
   NAVBAR
========================= */
.navbar{
  position:sticky; top:0; z-index:1000;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.85)),
    linear-gradient(90deg, #000, #111);
  border-bottom:1px solid #262626;
  backdrop-filter: blur(6px);
}
.nav-container{
  height:72px; display:flex; align-items:center; justify-content:space-between;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{height:48px}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-title{
  font-family:'Merriweather', serif;
  font-size:18px; letter-spacing:1px; color:var(--gold); font-weight:700;
}
.brand-subtitle{font-size:12px; color:#d5d5d5}

.site-nav{display:flex; align-items:center; gap:20px}
.menu-toggle{
  display:none; font-size:22px; color:var(--white); background:none; border:0; cursor:pointer;
}
.nav-links{display:flex; gap:26px}
.nav-links a{
  color:#f3f3f3; font-weight:500; position:relative; padding:6px 2px; transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--gold);
  transition:width .25s ease;
}
.nav-links a:hover, .nav-links a.active{color:var(--gold)}
.nav-links a:hover::after, .nav-links a.active::after{width:100%}

/* =========================
   HERO
========================= */
.hero{
  position:relative; overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.88));
  isolation:isolate;
}
.hero-bg{
  position:absolute; inset:0; z-index:0; pointer-events:none;
}
/* Dekorasi blob emas halus */
.gradient-blob{
  position:absolute; filter: blur(60px); opacity:.22;
  background: radial-gradient(circle at 30% 30%, #ffd76a, var(--gold) 40%, transparent 60%);
}
.blob-1{width:420px; height:420px; top:-80px; left:-80px}
.blob-2{width:520px; height:520px; bottom:-120px; right:-120px; transform: rotate(15deg)}
/* Grid tipis untuk kesan profesional */
.grid-overlay{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

/* Layout hero */
.hero-content{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr .85fr; align-items:center; gap:48px;
  padding: clamp(64px, 8vw, 120px) 0;
}
/* Copy */
.hero-copy .hero-title{
  font-family:'Merriweather', serif;
  font-size: clamp(28px, 4vw, 44px);
  color:#f6f6f6; letter-spacing:.3px; margin-bottom:14px;
}
.highlight{
  background: linear-gradient(90deg, #f7e7a6, var(--gold), #f7e7a6);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-lead{color:#d9d9d9; max-width:60ch; margin-bottom:22px}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:22px}

/* Trust list */
.trust-list{display:flex; flex-wrap:wrap; gap:16px; color:#cdcdcd}
.trust-list li{display:flex; align-items:center; gap:8px; padding:8px 12px; border:1px solid #2a2a2a; border-radius:999px}
.trust-list i{color:var(--gold)}

/* Profile card */
.hero-profile{display:flex; justify-content:flex-end}
.profile-card{
  background: var(--card);
  border:1px solid rgba(212,175,55,.22);
  box-shadow: var(--shadow);
  border-radius:16px; overflow:hidden; min-width:280px; max-width:360px;
}
.profile-media{position:relative}
.profile-media img{
  width:100%; aspect-ratio: 4/5; object-fit: cover;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.profile-ring{
  position:absolute; inset:10px; border:2px solid rgba(212,175,55,.45); border-radius:12px; pointer-events:none;
}
.profile-meta{padding:16px 18px}
.profile-name{
  font-family:'Merriweather', serif; font-size:22px; color:#fff; margin-bottom:2px
}
.profile-role{font-size:13px; color:var(--muted); margin-bottom:10px}
.profile-highlights{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
.profile-highlights li{display:flex; align-items:center; gap:8px; font-size:13px; color:#d6d6d6}
.profile-link{color:var(--gold); font-weight:600}
.profile-link:hover{color:var(--gold-600)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 18px; border-radius:10px; font-weight:700; letter-spacing:.2px;
  border:1px solid transparent; transition: all .25s ease; cursor:pointer;
}
.btn-gold{
  background: linear-gradient(90deg, #f0d98a 0%, var(--gold) 40%, #f0d98a 100%);
  color:#111; border-color:#e7ca6a;
  box-shadow: 0 8px 24px rgba(212,175,55,.22);
}
.btn-gold:hover{transform: translateY(-1px); filter: saturate(1.05)}
.btn-ghost{
  background: transparent; color:#f5f5f5; border-color:#333;
}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold)}

/* =========================
   FEATURE STRIP
========================= */
.feature-strip{
  background: linear-gradient(180deg, transparent 0%, #0e0e0f 50%, #fff 50%, #fff 100%);
  padding: clamp(28px, 5vw, 40px) 0 clamp(40px, 6vw, 64px);
}
.strip-grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item{
  background:#ffffff; color:#222; border-radius:14px; padding:22px;
  border-top:4px solid var(--gold);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.strip-item:hover{transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1)}
.strip-item i{font-size:28px; color:#b78920; margin-bottom:10px; display:block}
.strip-item h3{font-family:'Merriweather', serif; font-size:18px; margin-bottom:6px}
.strip-item p{color:#4d4d4d}

/* =========================
   CTA
========================= */
.cta{
  background: linear-gradient(135deg, #111 0%, #0f0f10 45%, #151515 100%);
  border-top:1px solid #1f1f1f; border-bottom:1px solid #1f1f1f;
}
.cta-wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding: clamp(28px, 5vw, 56px) 0;
}
.cta-text h2{
  font-family:'Merriweather', serif; color:#fff; font-size: clamp(22px, 3.2vw, 32px); margin-bottom:6px
}
.cta-text p{color:#d1d1d1; max-width:60ch}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #3b3b3f;
  color: #ccc;
  padding: 40px 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #bbb;
}

.footer-copy {
  font-size: 13px;
  margin-top: 10px;
  color: #777;
}

.footer-nav a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #d4af37;
}

.footer-contact a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #d4af37;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
  .hero-content{grid-template-columns: 1fr; gap:28px}
  .hero-profile{justify-content:flex-start}
  .strip-grid{grid-template-columns: repeat(2, 1fr)}
  .footer-grid{grid-template-columns: 1fr; text-align:center; justify-items:center}
}
@media (max-width: 768px){
  .menu-toggle{display:block}
  .nav-links{
    position: fixed; right:16px; top:76px; background:#0f0f10; border:1px solid #242424;
    border-radius:12px; padding:14px; display:none; flex-direction:column; gap:10px; min-width:200px;
    box-shadow: var(--shadow); z-index:1001;
  }
  .nav-links.active{display:flex}
  .feature-strip{background: linear-gradient(180deg, transparent 0%, #0e0e0f 35%, #fff 35%, #fff 100%)}
  .strip-grid{grid-template-columns: 1fr}
  .cta-wrap{flex-direction:column; text-align:center}
}
@media (prefers-reduced-motion: no-preference){
  .btn, .strip-item{transition: all .25s ease}
}
/* =========================
   ABOUT / TENTANG
========================= */
.about{
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #0b0b0c 0%, #121212 100%);
}
.about-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center;
}
.about-image img{
  width:100%; border-radius:16px; box-shadow: var(--shadow); border:1px solid rgba(212,175,55,.15);
}
.about-text .section-title{
  font-family:'Merriweather', serif; font-size: clamp(28px, 4vw, 40px); margin-bottom:16px;
}
.about-text p{color:#d1d1d1; margin-bottom:18px; line-height:1.7;}

/* =========================
   TEAM / TIM ADVOKAT
========================= */
.team{
  padding: clamp(60px, 8vw, 100px) 0;
  background: #0f0f10;
}
.team .section-title{
  font-family:'Merriweather', serif; font-size: clamp(28px, 4vw, 40px); margin-bottom:32px; text-align:center;
}
.team-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:28px;
}
.team-card{
  background: var(--card); border:1px solid rgba(212,175,55,.2);
  border-radius:14px; text-align:center; padding:16px;
  box-shadow: var(--shadow); transition: transform .25s ease;
}
.team-card img{
  width:100%;
  aspect-ratio: 2/3;   /* lebih tinggi dari lebar */
  object-fit: cover;   /* tetap crop biar rapi */
  border-radius:12px;
  margin-bottom:12px;
}

.team-card h3{font-family:'Merriweather', serif; color:#fff; font-size:18px; margin-bottom:4px;}
.team-card p{color:#ccc; font-size:14px; margin-bottom:0;}
.team-card:hover{transform: translateY(-4px);}

/* RESPONSIVE */
@media(max-width:992px){
  .about-grid{grid-template-columns:1fr; gap:32px;}
  .about-image{order:-1;}
  .team-grid{grid-template-columns: repeat(2,1fr);}
}
@media(max-width:576px){
  .team-grid{grid-template-columns: 1fr;}
}
html {
  scroll-behavior: smooth;
}
.services{
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #0b0b0c 0%, #121212 100%);
}
.services .section-title{
  font-family:'Merriweather', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom:40px;
  text-align:center;
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
}
.service-item{
  background: rgba(20,20,22,0.85);
  border-radius:16px;
  padding:20px 18px;
  text-align:left;
  color:#f3f3f3;
  border-left:4px solid var(--gold);
  font-size:15px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transition: all .3s ease;
}
.service-item i{
  color: var(--gold);
  min-width:20px;
  text-align:center;
}
.service-item:hover{
  transform:translateY(-6px);
  box-shadow: 0 12px 36px rgba(212,175,55,0.5);
  border-left-color: #ffd76a;
}


/* =========================
   KONTAK
========================= */
.contact {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.contact .section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card, #1a1a1a);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 14px;
  padding: 24px 16px;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, border-color .25s ease;
  box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,0.4));
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.7);
}

.contact-card i {
  font-size: 32px;
  margin-bottom: 12px;
  color: #d4af37; /* emas elegan */
}

.contact-card span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
}

.contact-card p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}



/* =========================
   FAQ
========================= */
.faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #0f0f10;
  color: #fff;
}

.faq .section-title {
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.faq-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 16px 0;
  color: #ccc;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* cukup besar biar muat teks */
  padding: 0 20px 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #d4af37; /* highlight emas */
}




/* =========================
   LOKASI / GOOGLE MAPS
========================= */
.location {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #0f0f10;
  text-align: center;
}

.location .section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.location-desc {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.map-action .map-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.map-action .map-btn:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
}
