/* ================= ROOT ================= */
:root{
  --dark:#0B1623;
  --dark-soft:#12263F;
  --surface:#142C4C;
  --card:#1B2E4B;

  --gold:#D4AF37;
  --gold-soft:#E6C766;

  --text:#E5EAF1;
  --muted:#9FB3C8;

  --border:rgba(255,255,255,.08);
  --border-gold:rgba(212,175,55,.3);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'DM Sans', system-ui, sans-serif;
}

body{
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:18px 0;
  background:transparent;
  transition:.3s ease;
}

header.scrolled{
  background:rgba(11,22,35,.9);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.navbar{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
  color:var(--gold);
  font-family:'Cormorant Garamond', serif;
}

.nav-menu{
  display:flex;
  gap:32px;
}

.nav-menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  position:relative;
  font-size:15px;
  letter-spacing:.3px;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

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

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:26px;
  color:var(--text);
  cursor:pointer;
}

/* ================= HERO ================= */
.hero{
  min-height:100vh;
  background:
    linear-gradient(135deg, rgba(11,22,35,.92), rgba(18,38,63,.88)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f") center/cover;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:1200px;
  margin:auto;
  padding:120px 24px 0;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(212,175,55,.12);
  border:1px solid var(--border-gold);
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  color:var(--gold-soft);
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:28px;
}

.hero h1{
  font-size:52px;
  color:var(--gold);
  max-width:640px;
  line-height:1.2;
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
}

.hero p{
  margin-top:20px;
  max-width:520px;
  line-height:1.8;
  color:var(--muted);
  font-size:17px;
}

.scroll-indicator{
  margin-top:80px;
  text-align:left;
  color:var(--muted);
  font-size:13px;
  letter-spacing:2px;
  opacity:.7;
}

.scroll-indicator .arrow{
  margin-top:8px;
  font-size:20px;
  animation: bounce 1.8s infinite;
}

@keyframes bounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(8px); }
}

/* === NEWS TICKER === */
.news-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  overflow: hidden;
  margin: 28px 0 22px;
  height: 36px;
  max-width: 640px;
}
.ticker-label {
  background: var(--gold, #D4AF37);
  color: #0B1623;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track-outer {
  overflow: hidden;
  flex: 1;
  height: 100%;
  position: relative;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 12px;
  color: #cbd5e0;
  padding-left: 20px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track-outer:hover .ticker-track {
  animation-play-state: paused;
}
 
/* === HERO NEWS CARDS === */
.hero-news-grid {
  display: flex;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-news-card {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--gold, #D4AF37);
  border-radius: 8px;
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-news-card:hover {
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
}
.news-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold, #D4AF37);
}
.hero-news-card p {
  font-size: 12px;
  line-height: 1.55;
  color: #cbd5e0;
  margin: 0;
}
.news-date {
  font-size: 10px;
  color: #718096;
  margin-top: auto;
}
 
@media (max-width: 768px) {
  /* Hero layout */
  .hero {
    align-items: flex-start;
    min-height: 100svh;
  }
  .hero-content {
    padding: 100px 18px 40px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Badge */
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  /* Heading & paragraph */
  .hero h1 {
    font-size: 30px;
    max-width: 100%;
    line-height: 1.25;
  }
  .hero p {
    font-size: 14px;
    max-width: 100%;
    margin-top: 14px;
    line-height: 1.7;
  }

  /* News ticker */
  .news-ticker-wrap {
    max-width: 100%;
    width: 100%;
    margin: 20px 0 16px;
    height: 32px;
  }
  .ticker-label {
    font-size: 9px;
    padding: 0 10px;
    letter-spacing: 1px;
  }
  .ticker-track {
    font-size: 11px;
  }

  /* News cards: stack vertically, full width */
  .hero-news-grid {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-news-card {
    min-width: unset;
    width: 100%;
    padding: 12px 12px 10px;
    gap: 6px;
  }
  .hero-news-card p {
    font-size: 12px;
    line-height: 1.5;
  }
  .news-tag {
    font-size: 9px;
  }
  .news-date {
    font-size: 10px;
  }

  /* Scroll indicator */
  .scroll-indicator {
    margin-top: 28px;
    font-size: 11px;
  }
}

/* ================= ABOUT PREVIEW ================= */
.about-preview{
  background:var(--dark-soft);
  padding:120px 24px;
  border-top:1px solid var(--border);
}

.about-container{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  gap:80px;
}

.about-label{
  letter-spacing:6px;
  font-size:13px;
  color:var(--gold-soft);
  font-weight:600;
  display:block;
  margin-bottom:20px;
}

.about-text h2{
  font-size:36px;
  margin-bottom:20px;
  line-height:1.35;
  color:var(--text);
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
}

.about-text p{
  font-size:16px;
  line-height:1.85;
  color:var(--muted);
  max-width:580px;
}

.see-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:28px;
  text-decoration:none;
  font-weight:600;
  color:var(--gold-soft);
  transition:.3s;
  font-size:15px;
}

.see-more:hover{
  color:var(--gold);
  gap:10px;
}

.about-image{
  position:relative;
}

.about-image::before{
  content:'';
  position:absolute;
  inset:-12px;
  border:1px solid var(--border-gold);
  border-radius:24px;
  opacity:.5;
}

.about-image img{
  width:100%;
  max-width:420px;
  border-radius:20px;
  display:block;
  margin-left:auto;
  position:relative;
}

/* ================= STATS ================= */
.stats-section {
  background:var(--dark);
  padding:100px 24px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.stats-container {
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:center;
}

.stat-box { flex:1; }

.stat-box h2 {
  font-size:68px;
  color:var(--gold);
  margin-bottom:10px;
  font-weight:700;
  font-family:'Cormorant Garamond', serif;
  line-height:1;
}

.stat-box p {
  font-size:15px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.5px;
}

.divider {
  width:1px;
  height:80px;
  background:var(--border);
}

/* ================= SECTION ================= */
section{
  padding:100px 24px;
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:44px;
  color:var(--gold);
  margin-bottom:16px;
  font-weight:700;
  font-family:'Cormorant Garamond', serif;
}

.section-title .subtitle{
  font-size:17px;
  color:var(--muted);
  max-width:560px;
  margin:0 auto;
  line-height:1.7;
}

/* ================= SERVICES ================= */
.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

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

@media (max-width:640px){
  .services{ grid-template-columns:1fr; }
}

.service-card{
  background:var(--card);
  border:1px solid var(--border);
  padding:30px;
  border-radius:16px;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:3px;
  height:0;
  background:linear-gradient(180deg, var(--gold), var(--gold-soft));
  transition:.35s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:var(--border-gold);
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.service-card:hover::before{
  height:100%;
}

.service-card h3{
  color:var(--gold-soft);
  margin-bottom:10px;
  font-size:18px;
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
}

.service-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* ================= CONTACT ================= */
#contact{
  background:var(--dark-soft);
  border-top:1px solid var(--border);
  max-width:100%;
  padding:100px 24px;
}

#contact > .section-title{ max-width:1200px; margin:0 auto 60px; }

.contact-box{
  max-width:860px;
  margin:auto;
  background:var(--card);
  padding:48px;
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.contact-box form{
  display:grid;
  gap:16px;
}

.contact-box input,
.contact-box textarea{
  width:100%;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:15px;
  font-family:'DM Sans', sans-serif;
  transition:.3s;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder{
  color:var(--muted);
}

.contact-box input:focus,
.contact-box textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:rgba(212,175,55,.04);
}

.btn{
  padding:16px;
  border-radius:14px;
  border:none;
  background:linear-gradient(135deg,var(--gold),#b8893e);
  color:#0B1623;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:.3s ease;
  letter-spacing:.3px;
  font-family:'DM Sans', sans-serif;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(212,175,55,.3);
}

/* ================= GOOGLE MAPS ================= */
.map-wrapper{
  margin-top:40px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 20px 40px rgba(0,0,0,.3);
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}

.map-wrapper iframe{
  width:100%;
  height:400px;
  border:0;
  display:block;
}

/* ================= MOBILE SIDEBAR ================= */
/* .mobile-sidebar{
  position:fixed;
  top:0;
  left:-100%;
  width:270px;
  height:100vh;
  background:var(--dark-soft);
  border-right:1px solid var(--border);
  padding:100px 28px;
  transition:.3s;
  z-index:1001;
}

.mobile-sidebar.active{
  left:0;
}

.mobile-sidebar a{
  display:block;
  margin-bottom:24px;
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:.2s;
}

.mobile-sidebar a:hover{
  color:var(--gold);
} */

/* Sidebar Container */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi total di kanan */
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    visibility: hidden;
    /* Efek transisi smooth dan perlahan */
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), 
                visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    right: 0;
    visibility: visible;
}

/* Header & Tombol Close */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.sidebar-logo {
    height: 150px;
    width: auto;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #051622;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-sidebar:hover {
    transform: rotate(90deg);
    color: #D4A259;
}

/* Navigasi Links */
.mobile-nav-links {
    flex-grow: 1;
}

.mobile-nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 500;
    color: #051622;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.nav-arrow {
    font-size: 18px;
    color: #D4A259;
    opacity: 0.4;
    transition: transform 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #D4A259;
}

.mobile-nav-links a:hover .nav-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Informasi Bawah (Alamat & Jam) */
.sidebar-bottom-info {
    padding-top: 30px;
}

.info-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: #D4A259;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.info-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Overlay Filter */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Sembunyikan hamburger di desktop */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #D4A259;
}

/* Munculkan hamburger di mobile */
@media (max-width: 992px) {
    .nav-menu { display: none; } /* Sembunyikan menu desktop */
    .hamburger { display: block; } /* Munculkan tombol ☰ */
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:1000;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,.4);
  z-index:999;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
  font-size:15px;
}

.wa-float:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,.5);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .nav-menu{ display:none; }
  .hamburger{ display:block; }
  .about-container{ grid-template-columns:1fr; text-align:center; gap:50px; }
  .about-text p{ max-width:100%; }
  .about-image::before{ display:none; }
  .about-image img{ margin:0 auto; }
  .stats-container{ flex-direction:column; gap:40px; padding:0 24px; }
  .divider{ display:none; }
  .contact-box{ padding:30px 20px; }
  .section-title h2{ font-size:34px; }
  .hero h1{ font-size:38px; }
}

@media(max-width:600px){
  .hero h1{ font-size:32px; }
  .section-title h2{ font-size:28px; }
  .wa-float{ bottom:20px; right:15px; padding:12px 18px; font-size:14px; }
}

/* ===== SLIDER ===== */
.slider-outer{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
}
.slider-viewport{
  overflow:hidden;
  flex:1;
  border-radius:16px;
}
.slider-track{
  display:flex;
  gap:24px;
  transition:transform .45s cubic-bezier(.4,0,.2,1);
}
.slider-track .attorney-card{
  flex:0 0 calc((100% - 48px) / 3);
  min-width:0;
}
@media(max-width:900px){
  .slider-track .attorney-card{ flex:0 0 calc((100% - 24px) / 2); }
}
@media(max-width:560px){
  .slider-track .attorney-card{ flex:0 0 100%; }
}
.slider-btn{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid var(--border-gold);
  background:rgba(212,175,55,.08);
  color:var(--gold);
  font-size:20px;
  cursor:pointer;
  transition:.3s;
  display:flex;
  align-items:center;
  justify-content:center;
}
.slider-btn:hover{
  background:rgba(212,175,55,.2);
  box-shadow:0 0 20px rgba(212,175,55,.2);
}
.slider-btn:disabled{
  opacity:.25;
  cursor:not-allowed;
}
.slider-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:28px;
}
.slider-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--border);
  border:1px solid rgba(212,175,55,.2);
  cursor:pointer;
  transition:.3s;
}
.slider-dot.active{
  background:var(--gold);
  transform:scale(1.25);
}

/* ===== ATTORNEY SECTION CLEAN ===== */
.attorney-section{
  max-width:100%;
  background:var(--dark-soft);
  border-top:1px solid var(--border);
  padding:100px 24px;
}

.attorney-container{
  max-width:1200px;
  margin:auto;
}

.attorney-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:60px;
  flex-wrap:wrap;
  gap:20px;
}

.attorney-header-label{
  letter-spacing:6px;
  font-size:13px;
  color:var(--gold-soft);
  font-weight:600;
  display:block;
  margin-bottom:16px;
}

.attorney-header-title{
  font-size:46px;
  color:var(--text);
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
  line-height:1.2;
  max-width:520px;
}

.attorney-see-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--gold-soft);
  font-weight:600;
  font-size:15px;
  transition:.3s;
  white-space:nowrap;
  font-family:'DM Sans',sans-serif;
}

.attorney-see-more:hover{
  color:var(--gold);
  gap:14px;
}

/* ===== MODAL HEADER CLEAN ===== */
.modal-header-label{
  letter-spacing:6px;
  font-size:12px;
  color:var(--gold-soft);
  font-weight:600;
  display:block;
  margin-bottom:10px;
}

.modal-header-title{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  color:var(--text);
  font-weight:700;
}

/* ===== ATTORNEY CARDS ===== */
.attorney-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  transition:.35s ease;
  cursor:default;
}
.attorney-card:hover{
  transform:translateY(-6px);
  border-color:var(--border-gold);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}
.attorney-photo{
  width:100%;
  aspect-ratio:3/3.5;
  overflow:hidden;
  background:var(--surface);
  position:relative;
}
.attorney-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  filter:grayscale(100%);
  transition:.4s ease;
}
.attorney-card:hover .attorney-photo img{
  filter:grayscale(0%);
  transform:scale(1.04);
}
.attorney-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  font-weight:700;
  color:rgba(212,175,55,.4);
  background:linear-gradient(135deg, var(--surface), var(--dark-soft));
  letter-spacing:4px;
}
.placeholder-wrap{
  display:flex;
  align-items:stretch;
}
.attorney-info{
  padding:20px 22px;
  border-top:1px solid var(--border);
}
.attorney-info h4{
  font-family:'Cormorant Garamond', serif;
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin-bottom:6px;
  line-height:1.3;
}
.attorney-info span{
  font-size:12px;
  letter-spacing:3px;
  color:var(--gold-soft);
  font-weight:600;
}

/* ===== MODAL ===== */
.attorney-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
}
.attorney-modal.open{
  opacity:1;
  pointer-events:auto;
}
.attorney-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(6px);
}
.attorney-modal-box{
  position:relative;
  background:var(--dark-soft);
  border:1px solid var(--border-gold);
  border-radius:24px;
  width:100%;
  max-width:1000px;
  max-height:90vh;
  overflow-y:auto;
  padding:48px;
  box-shadow:0 40px 80px rgba(0,0,0,.6);
  transform:translateY(30px);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.attorney-modal.open .attorney-modal-box{
  transform:translateY(0);
}
.attorney-modal-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:40px;
}
.modal-close{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  color:var(--muted);
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
  font-size:16px;
  transition:.3s;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.modal-close:hover{
  background:rgba(212,175,55,.1);
  border-color:var(--border-gold);
  color:var(--gold);
}
.attorney-modal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:700px){
  .attorney-modal-grid{ grid-template-columns:repeat(2,1fr); }
  .attorney-modal-box{ padding:28px 20px; }
}
@media(max-width:440px){
  .attorney-modal-grid{ grid-template-columns:1fr; }
}
.attorney-modal-box::-webkit-scrollbar{ width:6px; }
.attorney-modal-box::-webkit-scrollbar-track{ background:transparent; }
.attorney-modal-box::-webkit-scrollbar-thumb{ background:var(--border-gold); border-radius:3px; }


/* FOOTER STYLE REFINEMENT */
footer {
    background: #051622; /* Navy lebih pekat agar elegan */
    color: #ffffff;
    padding: 60px 8% 20px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #D4A259;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-column h4 {
    color: #D4A259;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover { color: #D4A259; }

/* Garis Tipis & Navigasi Bawah */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.footer-nav a {
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #D4A259;
}

.copyright {
    color: #718096;
    font-size: 12px;
}

@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

.footer-logo-img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0px 0px 5px rgba(212, 162, 89, 0.2));
}

/* Reach Us At list */
.reach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.reach-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e0;
    font-size: 13px;
}
.reach-list li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}
.reach-list li a:hover {
    color: #D4A259;
}
.reach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    background: #1a2a3a;
}
.reach-icon-web  { background: #2a6496; color: #fff; }
.reach-icon-email{ background: #c0392b; color: #fff; }
.reach-icon-yt   { background: #c0392b; color: #fff; }
.reach-icon-tiktok{ background: #111; color: #fff; }
.reach-icon-li   { background: #0077b5; color: #fff; font-size: 12px; }

/* Style About */

/* ================= ROOT ================= */
:root{
  --dark:#0B1623;
  --dark-soft:#12263F;
  --surface:#142C4C;
  --card:#1B2E4B;
  --gold:#D4AF37;
  --gold-soft:#E6C766;
  --text:#E5EAF1;
  --muted:#9FB3C8;
  --border:rgba(255,255,255,.08);
  --border-gold:rgba(212,175,55,.3);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'DM Sans', system-ui, sans-serif;
}

body{
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:18px 0;
  background:rgba(11,22,35,.9);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.navbar{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
  color:var(--gold);
  font-family:'Cormorant Garamond', serif;
  text-decoration:none;
}

.nav-menu{
  display:flex;
  gap:32px;
}

.nav-menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  position:relative;
  font-size:15px;
  letter-spacing:.3px;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s;
}

.nav-menu a:hover::after{ width:100%; }
.nav-menu a:hover{ color:var(--gold-soft); }

.hamburger{
  display:none;
  font-size:26px;
  color:var(--text);
  cursor:pointer;
}

/* ================= HERO BANNER ================= */
.about-hero{
  padding-top:82px;
  background:
    linear-gradient(135deg, rgba(11,22,35,.95), rgba(18,38,63,.9)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f") center/cover fixed;
  padding-bottom:80px;
  border-bottom:1px solid var(--border);
}

.about-hero-inner{
  max-width:1200px;
  margin:auto;
  padding:80px 24px 0;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:28px;
  letter-spacing:.5px;
}

.breadcrumb a{
  color:var(--muted);
  text-decoration:none;
  transition:.2s;
}

.breadcrumb a:hover{ color:var(--gold-soft); }
.breadcrumb span{ color:var(--border-gold); }

.about-hero-inner h1{
  font-family:'Cormorant Garamond', serif;
  font-size:60px;
  font-weight:700;
  color:var(--gold);
  line-height:1.1;
  max-width:700px;
}

.about-hero-inner .tagline{
  margin-top:16px;
  font-size:18px;
  color:var(--muted);
  max-width:560px;
  line-height:1.7;
}

/* ================= MAIN CONTENT ================= */
.about-main{
  max-width:1200px;
  margin:auto;
  padding:80px 24px;
  display:grid;
  grid-template-columns:1fr 340px;
  gap:60px;
  align-items:start;
}

/* ===== LEFT: ARTICLE ===== */
.about-article{}

.article-section{
  margin-bottom:60px;
}

.article-section:last-child{
  margin-bottom:0;
}

.section-label{
  letter-spacing:5px;
  font-size:12px;
  color:var(--gold-soft);
  font-weight:600;
  display:block;
  margin-bottom:12px;
}

.article-section h2{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  font-weight:700;
  color:var(--text);
  margin-bottom:24px;
  line-height:1.25;
}

.article-section p{
  font-size:16px;
  line-height:1.9;
  color:var(--muted);
  margin-bottom:20px;
}

.article-section p:last-child{
  margin-bottom:0;
}

.article-section p strong{
  color:var(--text);
  font-weight:600;
}

/* QUOTE BLOCK */
.quote-block{
  background:rgba(212,175,55,.07);
  border-left:3px solid var(--gold);
  border-radius:0 12px 12px 0;
  padding:24px 28px;
  margin:32px 0;
}

.quote-block p{
  font-family:'Cormorant Garamond', serif;
  font-size:20px;
  font-style:italic;
  color:var(--text);
  line-height:1.7;
  margin:0;
}

/* EDUCATION CARDS */
.edu-cards{
  display:grid;
  gap:16px;
}

.edu-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  transition:.3s;
}

.edu-card:hover{
  border-color:var(--border-gold);
  background:rgba(212,175,55,.04);
}

.edu-icon{
  width:44px;
  height:44px;
  border-radius:10px;
  background:rgba(212,175,55,.1);
  border:1px solid var(--border-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.edu-detail h4{
  font-family:'Cormorant Garamond', serif;
  font-size:19px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.edu-detail p{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

.edu-year{
  font-size:12px;
  letter-spacing:2px;
  color:var(--gold-soft);
  font-weight:600;
  margin-bottom:6px;
  display:block;
}

/* MEMBERSHIP LIST */
.membership-list{
  display:grid;
  gap:12px;
  list-style:none;
  padding:0;
}

.membership-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-size:15px;
  color:var(--muted);
  line-height:1.6;
  padding:16px 20px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  transition:.3s;
}

.membership-list li:hover{
  border-color:var(--border-gold);
  color:var(--text);
}

.membership-list li::before{
  content:'⚖';
  font-size:16px;
  flex-shrink:0;
  margin-top:1px;
}

/* ===== RIGHT: SIDEBAR ===== */
.about-sidebar{
  position:sticky;
  top:110px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* PROFILE CARD */
.profile-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
}

.profile-card-img{
  width:100%;
  aspect-ratio:3/3.5;
  position:relative;
  overflow:hidden;
  background:var(--surface);
}

.profile-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  filter:grayscale(30%);
  transition:.4s;
}

.profile-card-img:hover img{
  filter:grayscale(0%);
  transform:scale(1.03);
}

.profile-card-body{
  padding:24px;
  border-top:1px solid var(--border);
}

.profile-card-body h3{
  font-family:'Cormorant Garamond', serif;
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.profile-card-body .role{
  font-size:12px;
  letter-spacing:3px;
  color:var(--gold-soft);
  font-weight:600;
}

/* QUICK INFO */
.quick-info{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
}

.quick-info h4{
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  color:var(--gold-soft);
  margin-bottom:16px;
  font-weight:700;
}

.info-row{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}

.info-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.info-item .label{
  font-size:11px;
  letter-spacing:2px;
  color:var(--gold-soft);
  font-weight:600;
  min-width:80px;
  padding-top:2px;
}

.info-item .value{
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

/* CTA CARD */
.cta-card{
  background:linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04));
  border:1px solid var(--border-gold);
  border-radius:16px;
  padding:28px;
  text-align:center;
}

.cta-card p{
  font-size:15px;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 24px;
  border-radius:50px;
  background:linear-gradient(135deg, var(--gold), #b8893e);
  color:#0B1623;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition:.3s;
  border:none;
  cursor:pointer;
  width:100%;
  justify-content:center;
}

.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(212,175,55,.3);
}

/* ================= MOBILE SIDEBAR ================= */
.mobile-sidebar{
  position:fixed;
  top:0;
  left:-100%;
  width:270px;
  height:100vh;
  background:var(--dark-soft);
  border-right:1px solid var(--border);
  padding:100px 28px;
  transition:.3s;
  z-index:1001;
}

.mobile-sidebar.active{ left:0; }

.mobile-sidebar a{
  display:block;
  margin-bottom:24px;
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:.2s;
}

.mobile-sidebar a:hover{ color:var(--gold); }

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:1000;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,.4);
  z-index:999;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
  font-size:15px;
}

.wa-float:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,.5);
}

/* ================= FOOTER ================= */
footer{
  background:#080f18;
  text-align:center;
  padding:30px;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid var(--border);
}

/* Footer Brand */
.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
}

@media(max-width:600px){
  .footer-brand{
    align-items:center;
  }
}

.building-name{
    font-weight:600;
    color:#d4a24c; /* warna emas seperti judul */
}

/* ================= RESPONSIVE ================= */
@media(max-width:960px){
  .about-main{
    grid-template-columns:1fr;
  }
  .about-sidebar{
    position:static;
    order:-1;
  }
  .profile-card{
    display:grid;
    grid-template-columns:180px 1fr;
  }
  .profile-card-img{
    aspect-ratio:auto;
    min-height:200px;
  }
  .about-hero-inner h1{ font-size:44px; }
}

@media(max-width:768px){
  .nav-menu{ display:none; }
  .hamburger{ display:block; }
  .profile-card{ grid-template-columns:1fr; }
  .profile-card-img{ aspect-ratio:3/2; }
  .about-hero-inner h1{ font-size:36px; }
}

@media(max-width:500px){
  .about-hero-inner h1{ font-size:30px; }
  .wa-float{ bottom:20px; right:15px; padding:12px 18px; font-size:14px; }
}