/* 
  Gajah Merah Putih Lawfirm Stylesheet
  Premium Dark-Crimson-Gold Theme
*/

/* Font Imports & Base Variables */
:root {
  /* Colors */
  --bg-dark: #080a0e;
  --bg-panel: #11141b;
  --bg-hover: #171c26;
  --primary: #991b1b;       /* Crimson Red */
  --primary-light: #b91c1c; /* Lighter Crimson */
  --primary-glow: rgba(185, 28, 28, 0.15);
  
  --secondary: #d97706;     /* Amber Gold */
  --accent: #d4af37;        /* Metallic Gold */
  --accent-glow: rgba(212, 175, 55, 0.15);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  --border: #1e2533;
  --border-focus: #b91c1c;
  --border-gold: rgba(212, 175, 55, 0.3);
  
  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Utilities */
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.7);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(185, 28, 28, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

p {
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(185, 28, 28, 0.2); }
  50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); }
  100% { box-shadow: 0 0 10px rgba(185, 28, 28, 0.2); }
}

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Helper Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--text-white) 10%, var(--accent) 70%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-left { text-align: left; }
.text-justify { text-align: justify; }
.w-100 { width: 100%; }

.font-accent-p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.profile-section {
  padding: 6rem 1.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: center;
}

/* Header & Navigation */
.navbar {
  background: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 10, 14, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  height: 40px;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 3px;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 101;
}

/* Buttons */
.btn-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  border: 1px solid var(--primary-light);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
  background: var(--primary-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  border: 1px solid var(--primary-light);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.45);
  background: var(--primary-light);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* Panels / Glassmorphism Cards */
.card-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 10rem 0 12rem 0;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(8, 10, 14, 0.75) 0%, rgba(8, 10, 14, 0.95) 100%), url('assets/scales.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 40%, rgba(185, 28, 28, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  animation: fadeIn 0.8s ease-out forwards;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Floating Stats Bar */
.stats-bar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 20;
}

.stats-bar {
  background: rgba(17, 20, 27, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border-gold);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTION ABOUT US */
#tentang {
  margin-top: 4rem; /* Spacer for stats bar overlap */
}

.title-underline {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-badges .badge {
  background: rgba(153, 27, 27, 0.1);
  border: 1px solid rgba(153, 27, 27, 0.25);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-badges .badge i {
  color: var(--accent);
}

/* Vision & Mission Card */
.vision-mission-card {
  background: linear-gradient(145deg, var(--bg-panel) 0%, rgba(23, 28, 38, 0.8) 100%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.card-section {
  padding: 0.5rem 0;
}

.card-section-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-section-title i {
  font-size: 1.5rem;
}

.text-gold { color: var(--accent); }
.text-red { color: var(--primary-light); }

.card-section-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-divider {
  height: 1px;
  background-color: var(--border);
  margin: 1.5rem 0;
}

.card-section-list {
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.card-section-list li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* SECTION SERVICES */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0.5rem auto 3rem auto;
}

/* Service Tabs */
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.tab-btn i {
  font-size: 1.15rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255,255,255,0.3);
  color: var(--text-white);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  border-color: var(--primary-light);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-out forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.service-card h4 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Special Highlight Card */
.service-card.highlight-card {
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.service-card.highlight-card::after {
  background-color: var(--accent);
}

.service-card.highlight-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

/* Corporate Partner Banner */
.corporate-banner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  border-left: 4px solid var(--accent);
}

.banner-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
}

.banner-icon-container i {
  font-size: 2.6rem;
}

.banner-text h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.banner-text p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.banner-list {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}

.banner-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.banner-list li i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* TIM ADVOKAT SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.lawyer-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.lawyer-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.lawyer-img-container {
  aspect-ratio: 4/5;
  background-color: var(--bg-hover);
  overflow: hidden;
  position: relative;
}

.lawyer-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition);
}

.lawyer-card:hover .lawyer-img-container img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.lawyer-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lawyer-info h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.lawyer-role {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
}

.lawyer-summary {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.btn-view-profile {
  margin-top: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lawyer-card:hover .btn-view-profile {
  background: var(--bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}

/* LEGALITAS & HONORARIUM SECTION */
.legal-info {
  display: flex;
  flex-direction: column;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legal-list li {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.legal-list li i {
  font-size: 1.8rem;
  margin-top: 2px;
}

.legal-list li strong {
  color: var(--text-white);
}

.legal-list li div {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Document Gallery */
.legal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  aspect-ratio: 4/3;
  background-color: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: var(--bg-panel);
  transition: var(--transition);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 20, 27, 0.85);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  border-top: 1px solid var(--border);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumb-item {
  aspect-ratio: 4/3;
  background-color: var(--bg-panel);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  border-color: var(--primary-light);
}

.thumb-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Honorarium Panel */
.honorarium-panel {
  margin-top: 4rem;
  border-top: 2px solid var(--primary-light);
}

.panel-title {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.honorarium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.honor-card {
  background: rgba(8, 10, 14, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.8rem;
}

.honor-card h5 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.honor-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* FAQ ACCORDION SECTION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-hover);
  color: var(--accent);
}

.faq-question i {
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active {
  border-color: var(--primary-light);
}

.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

/* HUBUNGI KAMI SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-title {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Forms */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Contact Info Card */
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-location {
  margin-bottom: 1.25rem;
}

.office-location h5 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-location p {
  font-size: 0.85rem;
  line-height: 1.6;
  padding-left: 1.5rem;
}

.contact-info-list {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-list p {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 250px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

/* LAWYER DETAILS MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-white);
}

.modal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 3rem;
}

.modal-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-img-container {
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-dark);
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-contact-details p {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-right {
  display: flex;
  flex-direction: column;
}

.modal-right h3 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.modal-right .modal-lawyer-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.modal-bio-section {
  margin-bottom: 1.5rem;
}

.modal-bio-section h5 {
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  border-left: 2px solid var(--primary-light);
  padding-left: 0.5rem;
}

.modal-bio-section p {
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: justify;
}

/* FOOTER */
footer {
  background: rgba(17, 20, 27, 0.95);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

.footer-motto {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  }
  
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }

  /* Hero */
  .hero-section {
    padding: 8rem 0 14rem 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  /* Floating Stats */
  .stats-bar-container {
    bottom: -15px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .stat-item::after {
    display: none !important;
  }

  /* Grid Layouts */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-left {
    text-align: center;
  }
  
  .title-underline {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Tabs */
  .tabs-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
  
  /* Corporate Partner */
  .corporate-banner {
    grid-template-columns: 1fr;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--accent);
    padding: 2rem 1.5rem;
  }
  
  .banner-icon-container {
    margin: 0 auto;
  }

  /* Document Gallery */
  .gallery-main {
    aspect-ratio: 1/1;
  }

  /* Modal responsive */
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .modal-left {
    align-items: center;
    text-align: center;
  }
  
  .modal-img-container {
    width: 180px;
  }
  
  .modal-bio-section h5 {
    border-left: none;
    border-bottom: 2px solid var(--primary-light);
    padding-left: 0;
    padding-bottom: 0.2rem;
    display: inline-block;
  }
  
  .modal-bio-section p {
    text-align: left;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Honorarium Pricing Table & Schemes Styling */
.honorarium-section-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.pricing-schemes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.scheme-card {
  background: rgba(8, 10, 14, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.scheme-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.scheme-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scheme-header i {
  font-size: 1.3rem;
}

.scheme-header h5 {
  font-size: 0.95rem;
  color: var(--text-white);
  line-height: 1.2;
}

.scheme-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.scheme-price-block {
  margin-bottom: 0.75rem;
}

.sub-price {
  font-size: 0.9rem;
  color: var(--accent);
}

.sub-price strong {
  color: var(--text-muted);
  font-weight: 500;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.scheme-details {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Pricing Table Styling */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.pricing-table th {
  background: var(--bg-hover);
  color: var(--text-white);
  font-weight: 700;
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border);
}

.pricing-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.pricing-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.table-details-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.price-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .pricing-schemes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-schemes-grid {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    font-size: 0.8rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 0.75rem;
  }
}

