/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #021a7d;
    --primary-light: #2e36e6;
    --secondary: #c9a84c;
    --secondary-light: #dbb95a;
    --white: #ffffff;
    --gray-50: #f8f7f4;
    --gray-100: #f0eee8;
    --gray-200: #e0ddd4;
    --gray-300: #c5c0b5;
    --gray-400: #a8a296;
    --gray-500: #8a8478;
    --gray-600: #6b655a;
    --gray-700: #4d4840;
    --gray-800: #2f2b26;
    --gray-900: #1a1714;
    --shadow-sm: 0 2px 8px rgba(2, 26, 125, 0.06);
    --shadow-md: 0 8px 30px rgba(2, 26, 125, 0.10);
    --shadow-lg: 0 20px 60px rgba(2, 26, 125, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   LANGUAGE DROPDOWN
   ============================================================ */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.lang-arrow {
    transition: transform var(--transition);
}

.lang-dropdown:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    text-align: left;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.lang-option:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.lang-option.active {
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}
.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 26, 125, 0.25);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}
.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}
.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}
.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(2, 26, 125, 0.95);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo-image {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.navbar-brand .brand-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.navbar-brand .brand-text small {
    display: block;
    font-weight: 400;
    font-size: 0.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
}

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

.nav-cta {
    margin-left: 4px;
}
.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(2, 26, 125, 0.92) 0%, rgba(46, 54, 230, 0.8) 50%, rgba(2, 26, 125, 0.92) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--secondary);
    position: relative;
}

.hero h1 .highlight::after {
    display: none;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================================
   STATISTIK
   ============================================================ */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 4px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

.section-center {
    text-align: center;
}
.section-center .section-subtitle {
    margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}

.about-content .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.about-content .benefit-item .check {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================================
   VISI MISI
   ============================================================ */
.visimisi {
    padding: 100px 0;
    background: var(--gray-50);
}

.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.visimisi-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.visimisi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.visimisi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.visimisi-card:hover::before {
    transform: scaleX(1);
}

.visimisi-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.visimisi-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

.visimisi-card ul {
    margin-top: 16px;
    list-style: none;
}

.visimisi-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.visimisi-card ul li .check {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    background: var(--gray-50);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .sub-services {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-card .sub-services span {
    background: var(--gray-200);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice {
    padding: 100px 0;
    background: var(--gray-50);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.practice-item {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.practice-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 100%;
    min-height: 100px;
    justify-content: center;
}

.practice-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.practice-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.practice-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
}

.practice-link {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    transition: color var(--transition);
    margin-top: 4px;
}

.practice-link:hover {
    color: var(--primary);
}

.practice-item .practice-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--primary);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.6;
    min-width: 200px;
    max-width: 280px;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.practice-item .practice-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary);
}

.practice-item:hover .practice-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
    padding: 100px 0;
    background: #2e36e6;
}

.team .section-title {
    color: var(--white);
}

.team .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.team .section-label {
    color: var(--secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    text-align: center;
    backdrop-filter: blur(4px);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   TEAM - FOTO FULL DENGAN NAMA & JABATAN
   ============================================================ */
.team-card .team-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.05);
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.team-card .team-image:hover img {
    transform: scale(1.05);
}

.team-card .team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.team-card .team-image:hover .team-image-overlay {
    opacity: 1;
}

.team-card .team-overlay-content {
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.team-card .team-image:hover .team-overlay-content {
    transform: translateY(0);
}

.team-card .team-overlay-content h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.team-card .team-overlay-content p {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   TEAM - INFO RINGKAS
   ============================================================ */
.team-card .team-info {
    padding: 16px 20px 20px;
    text-align: center;
}

.team-card .team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.team-card .team-info .position {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

.team-card .team-info .badge-peradi {
    display: inline-block;
    margin: 4px 0 8px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.team-card .team-info .expertise {
    display: none;
}

.team-card .team-info .team-profile-link {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
    cursor: pointer;
    display: inline-block;
}

.team-card .team-info .team-profile-link:hover {
    color: var(--white);
}

/* ============================================================
   LAWYER MODAL
   ============================================================ */
.lawyer-modal-box {
    max-width: 750px;
    padding: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lawyer-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 450px;
}

.lawyer-modal-left {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.lawyer-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.lawyer-modal-right {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lawyer-modal-right h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.lawyer-modal-right .lawyer-modal-position {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.lawyer-modal-divider {
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
    margin-bottom: 20px;
}

.lawyer-modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lawyer-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lawyer-detail-item .lawyer-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lawyer-detail-item .lawyer-detail-value {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
    padding: 100px 0;
    background: var(--gray-50);
}

.experience-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 32px 0 40px;
}

.experience-filters button {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.experience-filters button:hover,
.experience-filters button.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.experience-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    cursor: pointer;
}

.experience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.experience-card .case-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.experience-card h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    margin: 4px 0;
}

.experience-card .case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.experience-card .case-meta .status {
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
}

.experience-card .case-meta .status.selesai {
    background: #d4edda;
    color: #155724;
}
.experience-card .case-meta .status.berjalan {
    background: #fff3cd;
    color: #856404;
}
.experience-card .case-meta .status.banding {
    background: #cce5ff;
    color: #004085;
}
.experience-card .case-meta .status.proses {
    background: #f8d7da;
    color: #721c24;
}

.experience-card .case-result {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
}

.experience-load-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   MODAL POP-UP
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    animation: modalIn 0.3s ease forwards;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gray-500);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content .modal-case-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.modal-content .modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0 12px;
}

.modal-content .modal-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.modal-content .modal-detail .detail-item {
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: var(--radius);
}

.modal-content .modal-detail .detail-item .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-content .modal-detail .detail-item .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 2px;
}

.modal-content .modal-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================================
   LEGAL FEES
   ============================================================ */
.fees {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.fees .section-title {
    color: var(--white);
}
.fees .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}
.fees .section-label {
    color: var(--secondary);
}

.fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.fees-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.fees-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.fees-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.fees-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fees-card ul {
    margin-top: 12px;
    list-style: none;
}

.fees-card ul li {
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fees-card ul li .check {
    color: var(--secondary);
    font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.contact-item .text {
    font-size: 0.95rem;
    color: var(--gray-700);
}
.contact-item .text strong {
    color: var(--primary);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 100%;
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: var(--primary-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 700px;
    margin: 0 auto 16px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-section .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 24px;
}

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

.footer-brand .logo-footer {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand .logo-text small {
    display: block;
    font-weight: 400;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer ul li a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-bottom a {
    transition: color var(--transition);
}
.footer-bottom a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-social a:hover {
    color: var(--secondary);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .lawyer-modal-content {
        grid-template-columns: 1fr;
    }

    .lawyer-modal-left {
        max-height: 300px;
        padding: 16px;
    }

    .lawyer-modal-left img {
        max-height: 280px;
        width: auto;
    }

    .lawyer-modal-right {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 16px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
    }

    .lang-dropdown-menu {
        right: auto;
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-content .about-benefits {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

    .visimisi-card {
        padding: 28px 24px;
    }

    .navbar-brand .logo-image {
        height: 36px;
    }
    .navbar-brand .brand-text {
        font-size: 0.85rem;
    }

    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .wa-float svg {
        width: 26px;
        height: 26px;
    }

    .modal-box {
        padding: 28px 20px;
        margin: 10px;
    }

    .modal-content .modal-detail {
        grid-template-columns: 1fr;
    }

    .lawyer-modal-content {
        grid-template-columns: 1fr;
    }

    .lawyer-modal-left {
        max-height: 280px;
        padding: 16px;
    }

    .lawyer-modal-left img {
        max-height: 260px;
        width: auto;
    }

    .lawyer-modal-right {
        padding: 20px 16px;
    }

    .team-card .team-image {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
    .stat-desc {
        font-size: 0.75rem;
    }

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

    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-card {
        min-height: 80px;
        padding: 16px 20px;
    }

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

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

    .navbar-brand .logo-image {
        height: 30px;
    }
    .navbar-brand .brand-text {
        font-size: 0.7rem;
    }
    .navbar-brand .brand-text small {
        font-size: 0.45rem;
    }

    .footer-brand .logo-footer {
        height: 36px;
    }

    .wa-float {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
    }
    
    .wa-float svg {
        width: 22px;
        height: 22px;
    }

    .experience-filters {
        gap: 6px;
    }
    .experience-filters button {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .modal-box {
        padding: 24px 16px;
    }

    .modal-content .modal-title {
        font-size: 1.1rem;
    }

    .practice-item .practice-tooltip {
        min-width: 160px;
        font-size: 0.7rem;
        padding: 10px 14px;
        left: 0;
        transform: translateX(0) translateY(8px);
    }

    .practice-item .practice-tooltip::after {
        left: 20%;
    }

    .practice-item:hover .practice-tooltip {
        transform: translateX(0) translateY(0);
    }

    .lawyer-modal-left {
        max-height: 200px;
        padding: 12px;
    }

    .lawyer-modal-left img {
        max-height: 180px;
    }

    .lawyer-modal-right {
        padding: 16px;
    }

    .lawyer-modal-right h2 {
        font-size: 1.1rem;
    }

    .lawyer-detail-item .lawyer-detail-value {
        font-size: 0.8rem;
    }

    .team-card .team-image {
        aspect-ratio: 3/4;
    }
}
