/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a961;
    --secondary-color: #8b7355;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --light-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --accent: #d4af37;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2a2a3e 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero logo - LANDSCAPE PHOTO (5259x2304) - LEBIH GEDE */
.hero-logo {
    width: 100%;
    max-width: 1400px; /* Lebih gede dari 1200px */
    height: auto;
    margin: 0 auto 3rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(201, 169, 97, 0.3));
    image-rendering: -webkit-optimize-contrast; /* Biar lebih sharp */
    image-rendering: crisp-edges;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    display: none;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Firm Section */
.firm-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
}

.firm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.firm-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.firm-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firm-image img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 10px;
    transition: var(--transition);
    /* NO BOX SHADOW - foto murni aja */
}

.firm-image img:hover {
    transform: scale(1.02);
    /* NO SHADOW on hover - biar foto tetep murni */
}

/* Team Section */
.team-section {
    background: var(--darker-bg);
}

/* Founders Container */
.founders-container {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Jarak antara Leon dan Zico - SUPER BESAR */
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder Section - untuk wrapper tiap founder */
.founder-section {
    width: 100%;
}

/* Add extra padding to founder card for more space */
.founder-card {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 40px; /* Extra margin bottom untuk spacing */
}

/* Founder Content - HORIZONTAL di Desktop - LEBIH GEDE */
.founder-content {
    display: grid;
    grid-template-columns: 450px 1fr; /* Foto lebih gede (450px), Text kanan (sisa space) */
    gap: 60px; /* Gap lebih gede */
    align-items: start;
}

.founder-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-size: 0.9rem;
    width: fit-content;
}

/* Founder Image - KIRI - LEBIH GEDE */
.founder-image {
    width: 100%;
    max-width: 450px; /* Lebih gede dari 380px */
    overflow: hidden;
    border-radius: 10px;
}

.founder-image img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Lebih tinggi dari 500px */
    object-fit: cover;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Founder Info - KANAN */
.founder-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.founder-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Of Counsel Section - STATIC NO CAROUSEL */
.of-counsel-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.of-counsel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Force of-counsel cards to always show */
.of-counsel-grid .team-card {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

.of-counsel-grid .team-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Associates Section - CAROUSEL 2 COLUMN */
.associates-section {
    margin-top: 100px;
}

/* Carousel Styles - UPDATED untuk 2 kolom di desktop */
.carousel-container {
    position: relative;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
}

/* IMPORTANT: Associates carousel cards visibility */
.carousel-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di desktop */
    gap: 40px;
    transition: opacity 0.5s ease;
}

/* Make sure team-grid exists for general styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.carousel-track.fade-out {
    opacity: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-color);
}

/* Team Cards General - Base styles */
.team-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

/* Of Counsel cards - ALWAYS VISIBLE */
.of-counsel-grid .team-card {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Associates carousel cards - CONTROLLED BY JS */
.carousel-track .team-card {
    display: none; /* Hidden by default, JS will control visibility */
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

/* Team image untuk portrait photos - FULL GA KEPOTONG */
.team-image {
    width: 100%;
    height: 500px; /* Lebih tinggi biar full */
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* CONTAIN biar ga kepotong, full keliatan */
    object-position: center center; /* Center posisi */
    transition: var(--transition);
    background: var(--darker-bg); /* Background biar ga ada white space */
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h4,
.team-card p {
    padding: 0 1.5rem;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--dark-bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}

/* Our Clients Section */
.clients-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.clients-carousel-container {
    position: relative;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-carousel-wrapper {
    overflow: hidden;
    min-height: 220px;
}

.clients-carousel-track {
    transition: opacity 0.5s ease;
}

.clients-carousel-track.fade-out {
    opacity: 0;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 180px;
}

.client-logo {
    flex: 0 0 auto;
    width: 240px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.client-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: brightness(1.1) contrast(1.2);
}

/* Why Section */
.why-section {
    background: var(--darker-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.why-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.why-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--darker-bg);
    padding: 120px 0;
}

.portfolio-carousel-container {
    position: relative;
    padding: 0 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-carousel-wrapper {
    overflow: hidden;
    padding: 30px 0;
}

.portfolio-carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.portfolio-carousel-track.fade-out {
    opacity: 0;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.portfolio-item {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid rgba(201, 169, 97, 0.3);
    background: var(--light-bg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    margin: 0 auto;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.02);
}

/* Download Section */
.download-section {
    background: var(--dark-bg);
    padding: 120px 0;
    border-top: 2px solid rgba(201, 169, 97, 0.1);
    border-bottom: 2px solid rgba(201, 169, 97, 0.1);
}

.download-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    transition: var(--transition);
}

.download-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
}

.download-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.download-icon svg {
    animation: downloadFloat 3s ease-in-out infinite;
}

@keyframes downloadFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.download-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.download-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.btn-download svg {
    transition: var(--transition);
}

.btn-download:hover svg {
    transform: translateY(3px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-container {
    margin-top: 2.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 46, 0.8);
}

.form-group textarea {
    resize: vertical;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.success-message svg {
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-message h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    /* Hero logo di tablet - LEBIH GEDE & JELAS */
    .hero-logo {
        max-width: 100%; /* Full width */
        margin-bottom: 2.5rem;
        padding: 0 10px; /* Sedikit padding */
    }
    
    .hero-logo img {
        width: 100%;
        height: auto;
        min-height: 250px; /* Minimal height biar ga terlalu kecil */
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Founders - Horizontal lebih compact di tablet */
    .founders-container {
        gap: 80px; /* Jarak antara Leon dan Zico di tablet - LEBIH BESAR */
    }

    .founder-content {
        grid-template-columns: 280px 1fr; /* Foto lebih kecil di tablet */
        gap: 40px;
    }

    .founder-card {
        padding: 30px;
    }

    .founder-image {
        max-width: 280px;
    }

    .founder-image img {
        max-height: 400px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .founder-description {
        font-size: 0.95rem;
    }

    .firm-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Of Counsel - 2 kolom di tablet (STATIC) */
    .of-counsel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Associates carousel - 2 kolom di tablet */
    .team-grid,
    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Team image height di tablet - LEBIH TINGGI */
    .team-image {
        height: 450px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-carousel-container {
        padding: 0 70px;
    }
    
    .clients-grid {
        gap: 25px;
        padding: 30px 15px;
    }
    
    .client-logo {
        width: 200px;
        min-height: 130px;
        padding: 20px;
    }

    .carousel-container {
        padding: 0 60px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 640px) {
    /* HERO SECTION - LOGO SUPER GEDE DI MOBILE */
    .hero {
        min-height: 100vh;
        padding: 80px 5px 60px; /* Padding minimal biar logo max gede */
    }

    .hero-logo {
        max-width: 100%; /* Full width */
        margin-bottom: 2rem;
        padding: 0; /* NO PADDING biar maksimal */
    }
    
    .hero-logo img {
        width: 100%; /* Full width image */
        max-width: 100%;
        height: auto;
        min-height: 180px; /* Minimal height biar keliatan jelas */
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* NAVIGATION */
    .logo-image {
        height: 60px;
    }

    /* SECTION GENERAL */
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* FIRM SECTION */
    .firm-text .lead-text {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .firm-image img {
        max-height: 400px;
    }

    /* FOUNDERS - VERTIKAL di mobile (Foto atas, text bawah) */
    .founders-container {
        gap: 60px; /* Jarak antara Leon dan Zico di mobile - LEBIH BESAR */
        margin-bottom: 80px;
    }

    .founder-content {
        grid-template-columns: 1fr; /* 1 kolom di mobile */
        gap: 25px;
    }

    .founder-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .founder-badge {
        margin: 0 auto 20px;
    }
    
    .founder-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .founder-image img {
        max-height: 380px;
    }

    .founder-info {
        text-align: center;
    }
    
    .founder-name {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .founder-description {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Of Counsel - 1 kolom di mobile (STATIC) */
    .of-counsel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Associates carousel - 1 kolom di mobile */
    .carousel-container {
        padding: 0 50px;
    }

    .carousel-track,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Team image di mobile - TINGGI BIAR FULL */
    .team-image {
        height: 400px;
    }
    
    .team-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .team-role {
        font-size: 0.85rem;
    }
    
    .team-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* SERVICES SECTION */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CLIENTS CAROUSEL */
    .clients-carousel-container {
        padding: 0 60px;
    }
    
    .clients-carousel-wrapper {
        min-height: 200px;
    }
    
    .clients-grid {
        gap: 0;
        padding: 30px 10px;
    }
    
    .client-logo {
        width: 100%;
        max-width: 280px;
        min-height: 160px;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.08);
        margin: 0 auto;
    }
    
    .client-logo img {
        max-width: 220px;
        max-height: 120px;
    }

    /* WHY SECTION */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-number {
        font-size: 3rem;
    }
    
    .why-card h3 {
        font-size: 1.5rem;
    }
    
    .why-card p {
        font-size: 0.95rem;
    }

    /* PORTFOLIO SECTION */
    .portfolio-carousel-container {
        padding: 0 55px;
    }

    .portfolio-item {
        height: 400px;
        max-width: 100%;
    }

    /* DOWNLOAD SECTION */
    .download-section {
        padding: 80px 0;
    }

    .download-card {
        padding: 40px 25px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .download-description {
        font-size: 1rem;
    }

    .download-icon svg {
        width: 60px;
        height: 60px;
    }

    .btn-download {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* CONTACT SECTION */
    .contact-item strong {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .map-container iframe {
        height: 250px;
    }

    /* FLOATING BUTTONS */
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ============================================ */
@media (max-width: 375px) {
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }

    .founder-image {
        max-width: 240px;
    }

    .founder-image img {
        max-height: 320px;
    }

    .founder-card {
        padding: 25px 15px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }

    .team-image {
        height: 280px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .clients-carousel-container,
    .carousel-container {
        padding: 0 45px;
    }
    
    .portfolio-carousel-container {
        padding: 0 45px;
    }
    
    .portfolio-item {
        height: 350px;
    }
    
    .client-logo {
        max-width: 260px;
        min-height: 150px;
        padding: 25px 15px;
    }
    
    .client-logo img {
        max-width: 200px;
        max-height: 110px;
    }
    
    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 90px 15px 50px;
    }
}