/* ================= VARIABLES ================= */
:root {
    --navy: #0c1d37;
    --gold: #c9a24d;
    --gold-soft: #e5c77a;
    --soft: #f4f6f9;
    --light-gray: #f8f9fa;
    --muted: #b9c3cf;
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-blue: #2563eb;
    --dark-blue: #1d4ed8;
    --light-blue: #93c5fd;
    --teal: #0f766e;
    --light-teal: #5eead4;
    --slate-600: #475569;
    --slate-200: #e5e7eb;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 25px;
    --transition: all 0.3s ease;
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.hamburger-btn{
   position:absolute;
   right:20px;
   top:20px;
   font-size:24px;
   background:none;
   border:none;
   cursor:pointer;
}
.institution-logo{
    text-decoration: none;
    outline: none;
    border: none;
}




/* ================= MOBILE STYLING - KHUSUS HP ================= */
@media (max-width: 992px) {
    
    /* 1. INFO FRAME HILANG DI HP */
    .info-frame {
        display: none !important;
    }
    
/* Styling untuk dropdown yang aktif */
.navbar .menu li.dropdown > a.active {
    color: #d4af37;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 10px;
}

/* Active menu styling */
.navbar .menu li a.active,
.navbar .menu li.dropdown > a.active {
    color: #d4af37;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 10px;
}

/* Hover effect */
.navbar .menu li a:hover {
    color: #d4af37;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 10px;
}

/* Warna emas untuk submenu yang sedang aktif (opsional) */
.submenu li a.active {
    color: #d4af37 !important;
    background-color: rgba(212, 175, 55, 0.1);
}
    
    /* 3. HERO SLIDER - LEBIH KECIL */
    .hero-slider {
        min-height: 50vh !important;
    }
    
    .content {
        padding: 30px 15px !important;
    }
    
    .content h1 {
        font-size: 1.4rem !important;
    }
    
    .slogan-frame p {
        font-size: 0.8rem !important;
    }
    
    .btn {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
    
    /* 4. SECTION HEADERS - LEBIH KECIL */
    .office-header h2 {
        font-size: 1.3rem !important;
    }
    
    .office-header p {
        font-size: 0.75rem !important;
    }
    
    /* 5. INDUSTRY CARDS - LEBIH KECIL */
    .industry-card {
        height: 130px !important;
    }
    
    .industry-tag {
        font-size: 0.5rem !important;
    }
    
    .card-title h4 {
        font-size: 0.75rem !important;
    }
    
    .card-detail {
        font-size: 0.55rem !important;
        bottom: 35px !important;
    }

        @media (max-width: 768px) {
    #sejarah-tab h3 {
        color: #001f3f; /* navy gelap */
    }
}

@media (max-width: 768px) {
    /* Judul Legalitas Perusahaan */
    #legalitas-tab h3 {
        color: #001f3f; /* navy gelap */
    }

    /* Ikon ikut navy */
    #legalitas-tab h3 i {
        color: #001f3f;
    }

    /* Paragraf tetap hitam */
    #legalitas-tab p {
        color: #000000;
    }
}

@media (max-width: 768px) {
    #sejarah-tab p {
        color: #000000; /* hitam */
    }
}


    /* ================= FIX FOOTER MOBILE ================= */
@media (max-width: 768px) {
    /* Reset footer column di mobile */
    .footer-column {
        text-align: left !important;
        padding: 0 15px !important;
    }
    
    .footer-title {
        text-align: left !important;
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .footer-title::after {
        left: 0 !important;
        transform: none !important;
    }
    
    /* Contact items layout */
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }
    
    /* Icon styling */
    .contact-item i {
        width: 24px !important;
        height: 24px !important;
        font-size: 18px !important;
        color: var(--gold) !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
    
    /* Container untuk teks */
    .contact-text {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        flex: 1 !important;
        line-height: 1.5 !important;
    }
    
    .contact-text span {
        font-size: 14px !important;
        color: var(--muted) !important;
        display: block !important;
    }
    
    /* Untuk alamat (multi-baris) */
    .contact-text span:not(:last-child) {
        margin-bottom: 2px !important;
    }
    
    /* Email group */
    .email-group {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .email-group a {
        color: var(--muted) !important;
        font-size: 14px !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        word-break: break-all !important;
    }
    
    .email-group a:hover {
        color: var(--gold) !important;
    }
    
    .separator {
        color: var(--gold) !important;
        font-size: 14px !important;
        display: inline-block !important;
    }
    
    /* Responsive untuk layar sangat kecil */
    @media (max-width: 480px) {
        .contact-item {
            gap: 12px !important;
        }
        
        .contact-item i {
            width: 20px !important;
            font-size: 16px !important;
        }
        
        .contact-text span,
        .email-group a {
            font-size: 13px !important;
        }
        
        .email-group {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 5px !important;
        }
        
        .separator {
            display: none !important;
        }
    }
}
/* ================= BRAND & LOGO OPTIMIZATION ================= */

.brand {
    display: flex;
    align-items: center;
    z-index: 1001;  /* Pastikan di atas hamburger */
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo styling */
.main-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.secondary-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Nama perusahaan */
.company-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0c1d37;  /* navy */
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-left: 2px solid #c9a24d;  /* gold */
    padding-left: 12px;
    margin-left: 5px;
}

/* Hover effect */
.brand-link:hover .main-logo,
.brand-link:hover .secondary-logo {
    transform: scale(1.05);
}

.brand-link:hover .company-name {
    color: #c9a24d;  /* gold */
}

/* ================= TABLET (768px - 992px) ================= */
@media (max-width: 992px) {
    .main-logo {
        height: 45px;
    }
    
    .secondary-logo {
        height: 35px;
    }
    
    .company-name {
        font-size: 16px;
        padding-left: 10px;
        margin-left: 4px;
        max-width: 250px;
        white-space: normal;  /* Boleh 2 baris */
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;  /* Maksimal 2 baris */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ================= MOBILE LANDSCAPE (576px - 768px) ================= */
@media (max-width: 768px) {
    .brand-link {
        gap: 8px;
    }
    
    .main-logo {
        height: 40px;
    }
    
    .secondary-logo {
        height: 30px;
    }
    
    .company-name {
        font-size: 14px;
        max-width: 180px;
        padding-left: 8px;
        margin-left: 3px;
        border-left-width: 2px;
    }
}

/* ================= MOBILE PORTRAIT (480px - 576px) ================= */
@media (max-width: 576px) {
    .brand-link {
        gap: 6px;
    }
    
    .main-logo {
        height: 35px;
    }
    
    .secondary-logo {
        height: 25px;
    }
    
    .company-name {
        font-size: 12px;
        max-width: 140px;
        padding-left: 6px;
        margin-left: 2px;
        -webkit-line-clamp: 2;
    }
}

/* ================= SMALL MOBILE (< 480px) ================= */
@media (max-width: 480px) {
    .main-logo {
        height: 30px;
    }
    
    .secondary-logo {
        height: 22px;
    }
    
    .company-name {
        font-size: 11px;
        max-width: 120px;
        padding-left: 5px;
        border-left-width: 1.5px;
        font-weight: 600;
    }
}

/* ================= EXTRA SMALL (< 380px) ================= */
@media (max-width: 380px) {
    .main-logo {
        height: 28px;
    }
    
    .secondary-logo {
        height: 20px;
    }
    
    .company-name {
        font-size: 10px;
        max-width: 100px;
        padding-left: 4px;
    }
}

/* ================= ALTERNATIF: SEMBUNYIKAN NAMA DI HP TERLALU KECIL ================= */
@media (max-width: 360px) {
    .company-name {
        display: none;  /* Sembunyikan nama, hanya logo */
    }
    
    .brand-link {
        gap: 4px;
    }
}    
    /* 6. COUNTER - LEBIH KECIL */
    .counter-value {
        font-size: 1.3rem !important;
    }
    
    .counter-box span {
        font-size: 0.5rem !important;
    }
    
    /* 7. LAYANAN KAMI - 2 CARD, FONT KECIL */
    .horizontal-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }
    
    .service-card {
        padding: 10px 6px !important;
        border-radius: 10px !important;
        background: white !important;
        border: 1px solid rgba(201, 162, 77, 0.2) !important;
    }
    
    .service-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        text-align: center !important;
    }
    
    .service-icon {
        width: 32px !important;
        height: 32px !important;
        background: rgba(201, 162, 77, 0.1) !important;
        border-radius: 50% !important;
    }
    
    .service-icon svg {
        width: 18px !important;
        height: 18px !important;
        stroke: var(--gold) !important;
    }
    
    .service-content h3 {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
    }
    
    .service-content p {
        font-size: 0.55rem !important;
        line-height: 1.1 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .service-detail p {
        font-size: 0.5rem !important;
    }
    
    .cta-button {
        padding: 3px 8px !important;
        font-size: 0.5rem !important;
        border-radius: 15px !important;
    }
    
    /* 8. CLIENTS SLIDER */
    .client-slide img {
        height: 30px !important;
    }
    
    /* 9. OFFICE SECTION */
    .office-map {
        height: 200px !important;
    }
    
    .office-info {
        padding: 20px 15px !important;
    }
    
    .office-info h3 {
        font-size: 1.2rem !important;
    }
    
    .info-text h4 {
        font-size: 0.65rem !important;
    }
    
    .info-text p {
        font-size: 0.75rem !important;
    }
    
    .office-button {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
    }
    
    /* 10. FOOTER - TETAP RAPI */
    .footer-container {
        padding: 30px 15px 15px !important;
    }
    
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .footer-brand p {
        font-size: 0.75rem !important;
        text-align: justify !important;
    }
    
    .footer-title {
        font-size: 0.9rem !important;
    }
    
    .footer-links a {
        font-size: 0.75rem !important;
    }
    
    .contact-item {
        font-size: 0.75rem !important;
    }
    
    .contact-item i {
        font-size: 12px !important;
    }
    
    .institution-logo {
        padding: 8px 5px !important;
    }
    
    .institution-logo img {
        max-width: 60% !important;
        max-height: 24px !important;
    }
    
    .logo-label {
        font-size: 0.55rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.6rem !important;
    }
    
    .footer-legal a {
        font-size: 0.6rem !important;
    }
}

/* HP lebih kecil */
@media (max-width: 480px) {
    .brand img:first-child {
        height: 22px !important;
    }
    
    .brand img:last-child {
        height: 18px !important;
    }
    
    .brand .company-name {
        font-size: 10px !important;
        max-width: 60px !important;
    }
    
    .hamburger-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
    }
    
    .industry-card {
        height: 110px !important;
    }
    
    .service-content h3 {
        font-size: 0.65rem !important;
    }
    
    .service-content p {
        font-size: 0.5rem !important;
    }
}
/* ================= INFO FRAME ================= */
.info-frame {
    background: linear-gradient(135deg, #0b1c2d, #0f2842);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.info-left {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-left .top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.info-left .top-info-item:last-child {
    border-right: none;
    padding-right: 0;
}

.info-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.top-info-item i {
    font-size: 13px;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.info-frame a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-frame a:hover {
    color: var(--gold);
}

@media (max-width:768px){

.info-frame{
    padding:10px 15px;
    justify-content:center;
    white-space:normal;
}

.info-right{
    display:none;
}

.info-left{
    width:100%;
    justify-content:center;
}

.top-info-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-direction:row; /* pastikan icon dan teks sejajar */
    text-align:left;
}

.top-info-item span{
    display:inline;
}

}
@media (max-width:768px){

.info-right{
    display:none;
}

.info-left{
    width:100%;
    justify-content:center;
}

.info-left .top-info-item{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    gap:6px;
    border-right:none;
    padding-right:0;
    white-space:nowrap;
}

.top-info-item i{
    display:inline-block;
}

.top-info-item span{
    display:inline-block;
}

}


/* Info Container (untuk halaman tertentu) */
.info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.info-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.info-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.info-logo-text {
    color: #c8a86b;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.info-items {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.info-item i {
    color: #c8a86b;
    font-size: 14px;
    min-width: 16px;
}

/* FORCE UKURAN UNTUK SEMUA DEVICE */
/* ================= DEFAULT DESKTOP STYLES ================= */
.navbar {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    min-height: 90px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* UKURAN LOGO DESKTOP */
.brand img {
    height: 60px;
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.brand img:first-child {
    height: 50px;
}

.brand img:last-child {
    height: 40px;
}

.brand:hover img {
    transform: scale(1.05);
}

/* NAMA PERUSAHAAN (jika ada) */
.brand-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* ================= MENU DESKTOP ================= */
.menu {
    display: flex;
    gap: 32px;
    margin-left: auto;
    padding-right: 0;
    list-style: none;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c8a86b;
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a:hover,
.menu a.active {
    color: #c8a86b;
}

/* ================= SUBMENU DESKTOP ================= */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 210px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 12px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 24px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: linear-gradient(90deg, rgba(201, 162, 77, 0.1), transparent);
    padding-left: 28px;
    color: #c8a86b;
}

/* ================= HAMBURGER BUTTON (DESKTOP - HIDDEN) ================= */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-btn i {
    font-size: 28px;
    color: #c8a86b;
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
    .navbar {
        padding: 12px 30px;
    }
    
    .menu {
        gap: 24px;
    }
}

/* ================= RESPONSIVE MOBILE ================= */
/* ================= RESPONSIVE MOBILE ================= */
@media (max-width: 768px) {
    /* NAVBAR MOBILE */
    .navbar {
        padding: 10px 16px !important;
        min-height: 70px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .contact-content {
    display: none;
}

.contact-content.active {
    display: block;
}
    
    /* BRAND MOBILE - DI KIRI */
    .brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 0 0 auto !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .brand-link {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
    }
    
    /* UKURAN LOGO MOBILE */
    .brand img {
        height: 45px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }
    
    .brand img:first-child {
        height: 45px !important;
    }
    
    .brand img:last-child {
        height: 40px !important;
    }

    /* ================= REKANAN TABS - MOBILE WHITE BACKGROUND ================= */
/* Default desktop - biarkan apa adanya */
.rekanan-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 15px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

/* MOBILE VERSION (max-width: 768px) - Background putih solid */
@media (max-width: 768px) {
    /* Pastikan background rekanan-card putih solid */
    .rekanan-card {
        background: #ffffff !important;
        background-color: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Background grid rekanan */
    .rekanan-grid {
        background: transparent !important;
    }
    
    /* Container rekanan-content */
    .rekanan-content {
        background: transparent !important;
    }
    
    /* Pastikan body background tidak mempengaruhi */
    .tab-content#rekanan-tab {
        background: transparent !important;
    }
    
    /* Card hover effect di mobile tetap ringan */
    .rekanan-card:active {
        background: #f8f8f8 !important;
        transform: scale(0.98);
    }
    
    /* Logo gambar tetap jelas di mobile */
    .rekanan-card img {
        background: transparent !important;
        mix-blend-mode: normal !important;
    }
}

/* Tablet (768px - 992px) - Opsional jika ingin putih juga */
@media (min-width: 769px) and (max-width: 992px) {
    .rekanan-card {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }
}

/* Untuk memastikan tidak ada warna gelap dari dark mode */
@media (prefers-color-scheme: dark) {
    @media (max-width: 768px) {
        .rekanan-card {
            background: #ffffff !important;
            background-color: #ffffff !important;
        }
        
        .rekanan-card h5 {
            color: #2c3e50 !important;
        }
    }
}

/* ================= MOBILE WHITE BACKGROUND FOR REKANAN ================= */
@media (max-width: 768px) {
    /* Background putih untuk semua card rekanan di mobile */
    .rekanan-card {
        background: white !important;
        background-color: white !important;
    }
    
    /* Hilangkan efek dark/transparent jika ada */
    .rekanan-card:hover {
        background: white !important;
    }
    
    /* Pastikan area sekitar juga putih */
    .rekanan-grid,
    .rekanan-content,
    #rekanan-tab {
        background: transparent !important;
    }
}

/* ================= FORCE WHITE BACKGROUND ON MOBILE ================= */
@media (max-width: 768px) {
    /* Target semua card di tab rekanan */
    .tab-content#rekanan-tab .rekanan-card,
    .tab-content[data-tab="rekanan"] .rekanan-card,
    #rekanan-tab .rekanan-card {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Tambahan untuk card yang mungkin terpengaruh dark mode */
    .tab-content#rekanan-tab .rekanan-card * {
        color: #333 !important;
    }
    
    /* Nama bank tetap gelap agar terbaca */
    .tab-content#rekanan-tab .rekanan-card h5 {
        color: #1a3a5c !important;
    }
}
    
    /* NAMA PERUSAHAAN MOBILE */
    .brand-text {
        font-size: 13px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100px !important;
    }
    
    /* HAMBURGER BUTTON MOBILE - DI KANAN */
    .hamburger-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
    }
    
    .hamburger-btn i {
        font-size: 26px !important;
        color: #c8a86b !important;
    }
    
    /* MENU MOBILE - TETAP SAMA */
    .menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 85px 24px 30px 24px;
        margin: 0;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        list-style: none;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu li:last-child {
        border-bottom: none;
    }
    
    .menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
    }
    
    .menu a:hover,
    .menu a.active {
        color: #c8a86b;
    }
    
    .menu a::after {
        display: none;
    }
    
    /* DROPDOWN MOBILE */
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown > a i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* SUBMENU MOBILE */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        min-width: 100%;
        padding: 0;
        margin-top: 0;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        border-radius: 0;
    }
    
    .dropdown.active .submenu {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
    }
    
    .submenu li {
        border-bottom: 1px solid #e5e5e5 !important;
        padding-left: 20px;
    }
    
    .submenu li:last-child {
        border-bottom: none !important;
    }
    
    .submenu li a {
        padding: 12px 0;
        font-size: 14px;
        font-weight: 400;
        color: #666;
    }
    
    .submenu li a:hover {
        color: #c8a86b;
        padding-left: 10px;
        background: none;
    }
    
    /* OVERLAY */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* MOBILE KECIL */
@media (max-width: 480px) {
    .brand img {
        height: 38px !important;
    }
    
    .brand img:first-child {
        height: 38px !important;
    }
    
    .brand img:last-child {
        height: 33px !important;
    }
    
    .brand-text {
        font-size: 11px !important;
        max-width: 80px !important;
    }
    
    .hamburger-btn {
        width: 40px !important;
        height: 40px !important;
    }
    
    .hamburger-btn i {
        font-size: 22px !important;
    }
}
/* ================= PAGE HERO ================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 40px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    display: non
    left: 0;
    right: 0;
    bottom: 0;
    background: url(l('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    opacity: 0.1;
}

.container-hero {
    display: flex;
    align-items: center;

    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero .logo img {
    height: 70px;
    width: auto;
}

.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

.more-details {
    text-decoration: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.more-details:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: slideCycle 42s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 14s; }
.slide:nth-child(3) { animation-delay: 28s; }

.background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: zoomMove 14s ease-in-out infinite;
}

.bg-1 {
    background-image: url('../images/header0.jpg');
}
.bg-2 {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.bg-3 {
     background-image: url('../images/header3.jpg');
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,25,47,0.75), rgba(10,25,47,0.85));
}

.content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 140px 90px;
    color: #fff;
    animation: contentUpDown 14s ease-in-out infinite;
}

.content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slogan-frame {
    display: inline-block;
    padding: 22px 28px;
    border-left: 4px solid var(--gold);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    animation: sloganReveal 14s ease-in-out infinite;
    margin-bottom: 30px;
}

.slogan-frame p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

.btn {
    margin-top: 34px;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    background: var(--gold);
    color: #0a192f;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212,175,55,.4);
    background: #d4af37;
}

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* ================= ANIMATIONS ================= */
@keyframes slideCycle {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes zoomMove {
    0% { transform: scale(1.08); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1.08); }
}

@keyframes contentUpDown {
    0%   { opacity: 0; transform: translateY(60px); }
    10%  { opacity: 1; transform: translateY(0); }
    80%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-40px); }
}

@keyframes sloganReveal {
    0%   { opacity: 0; transform: translateY(30px); }
    15%  { opacity: 1; transform: translateY(0); }
    80%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ================= SECTION HEADERS ================= */
.office-header,
.profil-header,
.struktur-header,
.portfolio-header,
.contact-header,
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.office-header h2,
.profil-header h2,
.struktur-header h2,
.portfolio-header h2,
.contact-header h2,
.services-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.office-header h2 span,
.profil-header h2 span,
.struktur-header h2 span,
.portfolio-header h2 span,
.contact-header h2 span,
.services-header h2 span {
    color: var(--gold);
    position: relative;
}

.office-header h2 span::after,
.profil-header h2 span::after,
.struktur-header h2 span::after,
.portfolio-header h2 span::after,
.contact-header h2 span::after,
.services-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    opacity: 0.3;
}

.office-header p,
.profil-header p,
.struktur-header p,
.portfolio-header p,
.contact-header p,
.services-header p {
    margin-top: 20px;
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.office-line,
.profil-line,
.struktur-line,
.portfolio-line,
.contact-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #e5c77a);
    margin: 30px auto 0;
    border-radius: 3px;
}

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    display: none;
}

/* ================= COMPANY PROFILE ================= */
.company-profile {
    padding: 120px 80px 80px;
    background: #ffffff;
    font-family: 'Jost', sans-serif;
    color: #1f2937;
    line-height: 1.7;
}

.profile-center {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-label {
    font-size: 32px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
}

.underline {
    width: 80px;
    height: 4px;
    margin: 14px auto 40px;
    background: linear-gradient(90deg, var(--gold), #0f172a);
    border-radius: 2px;
}

.company-definition {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

.company-definition strong {
    font-weight: 700;
    color: var(--navy);
    background: linear-gradient(90deg, var(--navy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Profile Hero */
.profile-hero {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 100px 20px 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    opacity: 0.1;
}

.profile-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.profile-hero span {
    color: var(--gold);
}

.profile-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.profile-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    color: var(--navy);
    padding-bottom: 15px;
}

.profile-section h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--teal);
    display: block;
    margin-top: 12px;
    border-radius: 2px;
}

.profile-section.light {
    background: #f9fafb;
    padding: 70px 30px;
    border-radius: 20px;
    margin: 80px auto;
}

/* Profile Content Layout */
.profile-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 50px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 60px 0;
}

.profile-logo {
    flex-shrink: 0;
}

.profile-logo img {
    width: 180px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-right {
    flex: 1;
}

.profile-right h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--soft);
}

.profile-right p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Profile Grid & Cards */
.profile-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.profile-cards {
    display: flex;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ================= CARD COMMON ================= */
/* ================= PROFIL.CSS - STRUKTUR KEPEMIMPINAN ================= */
/* Halaman: struktur.php - Menampilkan Managing Partner, Partners, dan Tim Kami */

:root {
    --navy: #1e2b4f;
    --gold: #c9a03d;
    --teal: #2c7a7b;
    --light-gray: #f8fafc;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e5c77a);
    border-radius: 3px;
}

/* ===== GRID SYSTEM UNTUK SEMUA KARTU ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* ===== BASE CARD STYLE (UNTUK SEMUA KARTU) ===== */
.partner-card-base {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.partner-card-base:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.partner-card-base.active {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.2);
}

/* NAMA - Menangani panjang teks yang bervariasi */
.partner-card-base .name {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
    
    /* Mengizinkan teks 2-3 baris */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
    hyphens: auto;
    
    /* Minimum height untuk konsistensi */
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Penyesuaian font untuk nama yang panjang */
.partner-card-base .name.long-name {
    font-size: 18px;
}

/* SUB (Jabatan/Cabang) */
.partner-card-base .sub {
    font-size: 18px;
    color: var(--teal);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    
    /* Mengizinkan 2 baris */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CERTIFICATES ===== */
.partner-card-base .cert-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 15px 0 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.partner-card-base .cert-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.partner-card-base .cert-list {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.partner-card-base .cert-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #444;
    border-bottom: 1px dashed #eee;
    transition: all 0.2s ease;
}

.partner-card-base .cert-item:last-child {
    border-bottom: none;
}

.partner-card-base .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.partner-card-base.active .check-icon {
    background: #b8941f;
    transform: scale(1.1);
}

.partner-card-base .cert-text {
    flex: 1;
    line-height: 1.5;
    word-break: break-word;
    font-size: 15px;
    font-weight: 400;
}

/* CSS untuk single partner grid */
.partners-grid.single-partner {
    display: block; /* Ubah dari grid ke block */
    max-width: 800px; /* Atur lebar maksimal */
    margin: 0 auto 40px; /* Tengah dan beri jarak bawah */
}

.partners-grid.single-partner .partner-card-base {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; /* Tengah */
}

/* Grid untuk Managing Partner (1 kolom penuh) */
.partners-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Grid untuk Partners (2 kolom) */
.partners-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* Responsive untuk tablet */
@media screen and (max-width: 768px) {
    .partners-grid-2cols {
        grid-template-columns: 1fr; /* Di HP jadi 1 kolom */
    }
}

/* ===== SPECIAL STYLING UNTUK MANAGING PARTNER ===== */
/* DESKTOP VERSION (min-width: 769px) */
@media (min-width: 769px) {
   @media (min-width: 769px) {
    .partner-card-base.managing-partner {
        border: 2px solid #e5e7eb;
        background: #ffffff !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .partner-card-base.managing-partner:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: #e5e7eb !important; /* TETAP PUTIH/ABU-ABU, BUKAN KUNING */
    }
}    
    .partner-card-base.managing-partner .name {
        color: var(--navy, #1e2b4f);
        font-weight: 800;
    }
    
    .partner-card-base.managing-partner .sub {
        color: #b8860b;
        font-weight: 700;
    }
    
    .partner-card-base.managing-partner .cert-title {
        color: var(--navy, #1e2b4f);
    }
    
    .partner-card-base.managing-partner .cert-text {
        color: #444444;
    }
}

/* ===== PENYESUAIAN UNTUK KARTU DENGAN SEDIKIT SERTIFIKASI ===== */
.partner-card-base .cert-list:has(.cert-item:only-child) {
    justify-content: center;
}

@media (max-width: 992px) {
   
    .menu.active {
        right: 0;
    }
}



/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .partner-card-base .name {
        font-size: 22px;
        min-height: 50px;
    }
    
    .partner-card-base .cert-text {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MENONAKTIFKAN STYLE LAMA ===== */
.managing-wrapper,
.partner-wrapper,
.partner-grid,
.card.managing-partner:not(.partner-card-base),
.partner-card:not(.partner-card-base) {
    /* Style lama dinonaktifkan */
    all: unset;
    display: none; /* Sembunyikan elemen dengan style lama */
}

/* ===== TIM KAMI SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.team-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-card.active {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border-color: var(--gold);
}

.team-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #e5c77a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-icon i {
    font-size: 32px;
    color: #fff;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 15px;
}

.team-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.team-member {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    cursor: default;
}

.team-member:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.team-member span {
    font-weight: 700;
    margin-right: 5px;
    color: var(--gold);
}

.team-member:hover span {
    color: #fff;
}
/* ===== TIM KAMI CARDS ===== */

/* wrapper biar kanan–kiri seimbang */
.team-section{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* grid utama */
.team-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    margin: 40px auto 80px;
    padding: 0;

    /* ini penting supaya grid-nya betul-betul center
       walau parent lebar */
    justify-content: center;
}

/* sembunyikan list by default */
.team-list{
    display: none;
}

/* tampilkan list saat card aktif */
.team-card.active .team-list{
    display: block;
}




.team-card{
    width: 300px;
}

.team-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px 25px 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.team-card.active {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.15);
}

.team-icon {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    flex: 1;
}

.team-list {
    margin-top: 10px;
    text-align: left;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease;
    cursor: pointer;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member:hover {
    background: rgba(201, 162, 77, 0.05);
    padding-left: 8px;
    border-radius: 6px;
}

.team-member span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.team-member:hover span {
    background: var(--teal);
    transform: scale(1.05);
}

.team-member .member-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tooltip styling */
.team-member[data-tooltip] {
    position: relative;
}

.team-member[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50px;
    top: -5px;
    background: var(--navy);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */

/* Desktop Medium */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        gap: 25px;
    }
    
    .partner-card .name {
        font-size: 14px;
    }
    
    .partner-card:nth-child(2) .name {
        font-size: 12px;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card.managing-partner {
        width: 450px;
    }
    
    .partner-card .name {
        font-size: 15px; /* Kembali normal karena kolom lebih lebar */
    }
    
    .partner-card:nth-child(2) .name {
        font-size: 13px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .card.managing-partner {
        width: 400px;
        padding: 30px 25px;
    }
    
    .card.managing-partner .name {
        font-size: 18px;
    }
    
    .partner-card .name {
        font-size: 14px;
    }
    
    .team-card h3 {
        font-size: 20px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-grid {
        max-width: 400px;
    }
    
    .card.managing-partner {
        width: 100%;
        max-width: 380px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .partner-card .name {
        font-size: 15px;
        white-space: normal; /* Di mobile boleh 2 baris */
        overflow: visible;
        text-overflow: clip;
    }
    
    .partner-card:nth-child(2) .name {
        font-size: 14px;
        white-space: normal;
    }
    
    .team-member .member-name {
        white-space: normal;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .partner-card {
        padding: 20px 15px;
    }
    
    .partner-card .name {
        font-size: 14px;
    }


    
    .team-card {
        padding: 20px 15px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.managing-wrapper,
.partner-grid .partner-card,
.team-grid .team-card {
    animation: fadeInUp 0.5s ease forwards;
}

.partner-grid .partner-card:nth-child(1) { animation-delay: 0.05s; }
.partner-grid .partner-card:nth-child(2) { animation-delay: 0.1s; }
.partner-grid .partner-card:nth-child(3) { animation-delay: 0.15s; }
.partner-grid .partner-card:nth-child(4) { animation-delay: 0.2s; }
.partner-grid .partner-card:nth-child(5) { animation-delay: 0.25s; }
.partner-grid .partner-card:nth-child(6) { animation-delay: 0.3s; }
.partner-grid .partner-card:nth-child(7) { animation-delay: 0.35s; }



/* ================= CERTIFICATES ================= */
.cert-title {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
}

.cert-list {
    margin-top: 8px;
}

.cert-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 14px;
    position: relative;
}

.cert-item .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #c9a24d;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px; /* Sesuaikan ukuran centang */
    line-height: 1;   /* Reset line-height */
    animation: pop 0.3s ease;
    transition: none;
}

.card.managing-partner.active .cert-item .check-icon,
.partner-card.active .cert-item .check-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.2) rotate(15deg);
}

.cert-item::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 30px;
    width: calc(100% - 30px);
    border-bottom: 1px dashed #ccc;
}

/* ================= VALUES ================= */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.value-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-box i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-box h5 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 16px;
}

.value-box p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* ================= LEGAL TABLE ================= */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.legal-table thead {
    background: linear-gradient(135deg, var(--navy), #142f55);
}

.legal-table th {
    padding: 20px;
    color: white;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    border: none;
}

.legal-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #555;
}

.legal-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 35%;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background-color: rgba(201, 162, 77, 0.08);
    transform: translateX(5px);
}

.badge {
    padding: 10px 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 13px;
    border-radius: 25px;
    display: inline-block;
    min-width: 120px;
}

.badge.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge.pending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* Reset & Base */
* {
    max-width: 100%;
    box-sizing: border-box;
}


.office-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.office-left {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
    word-wrap: break-word; /* Membungkus kata panjang */
    overflow-wrap: break-word;
}

.service-detail p {
    word-wrap: break-word;
    white-space: normal; /* Memastikan teks membungkus */
    line-height: 1.4;
}

/* Default (desktop tetap) */
.office-wrapper {
    display: flex;
    gap: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-card {
    height: auto;        /* ✅ penting */
    min-height: unset;
    overflow: visible;   /* ✅ jangan disembunyikan */
    padding: 20px;
}

/* ================= PERBAIKAN SERVICE CARD - JASA PENILAIAN ================= */

/* Hapus batasan max-height, ganti dengan display */
.service-detail {
    display: none;
    margin-top: 0;
}

.service-card.active .service-detail {
    display: block;
    margin-top: 15px;
}

/* Perbaikan teks deskripsi */
.service-detail p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    text-align: justify;
    word-break: break-word;
    white-space: normal;
}

/* HOVER EFFECT - tetap pertahankan */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

/* ================= MOBILE VERSION ================= */
@media (max-width: 768px) {
    .service-detail {
        display: none;
    }
    
    .service-card.active .service-detail {
        display: block;
        margin-top: 8px;
    }
    
    .service-detail p {
        font-size: 13px;
        line-height: 1.5;
        text-align: left;
    }
    
    /* Perkecil padding card di mobile */
    .service-card {
        padding: 15px 12px !important;
    }
    
    .service-header h3 {
        font-size: 15px;
    }
}

/* ================= UNTUK TEKS PANJANG (Penilaian Personal Properti) ================= */
./* Super kecil - untuk hemat tempat */
.service-card {
    padding: 8px 12px !important;
    border-radius: 10px !important;
}

.service-header {
    gap: 8px !important;
}

.service-header i {
    font-size: 16px !important;
}

.service-header h3 {
    font-size: 13px !important;
    font-weight: 600 !important;
}

.service-detail p {
    font-size: 11px !important;
    line-height: 1.3 !important;
}

.service-card.active .service-detail {
    margin-top: 5px !important;
}

.services-grid {
    gap: 8px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .service-card {
        padding: 6px 10px !important;
    }
    
    .service-header h3 {
        font-size: 12px !important;
    }
    
    .service-detail p {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
}
/* ================= COUNTER SECTION ================= */
.counter-horizontal {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    margin: 100px 60px;
    border-radius: 25px;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 29, 55, 0.85), rgba(12, 29, 55, 0.75));
    z-index: 1;
}

.counter-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-box {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.counter-box:last-child {
    border-right: none;
}

.counter-box i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.9;
}

.counter-value {
    font-size: 56px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
    letter-spacing: -0.03em;
    word-spacing: 0;
    white-space: nowrap;
    display: inline-block;
}

.counter-value span {
    font-weight: 700;
    color: var(--gold);
}

.counter-box span {
    font-size: 15px;
    letter-spacing: 1px;
    color: #e5e7eb;
    text-transform: uppercase;
    font-weight: 500;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 120px 80px 100px;
    background: linear-gradient(180deg,#ffffff,#f6f8fb);
}

/* Services Grid Container */
.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

/* Our Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== SERVICE CARD ===== */
.service-card {
    background: white;
    padding: 25px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    color: var(--navy);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), #142f55);
    transform: translateX(-100%);
    transition: 0.65s cubic-bezier(0.77,0,0.18,1);
    z-index: 0;
}

.service-card.active::before {
    transform: translateX(0);
}

.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card.active {
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.02);
    color: #fff;
}

.service-card.active svg {
    color: #fff;
}

.service-card.active::before {
    transform: scaleX(1);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-header i {
    font-size: 26px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-header i {
    color: var(--teal);
    transform: scale(1.1);
}

.service-card.active .service-header i {
    color: var(--light-blue);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--teal);
    stroke-width: 2.5;
    fill: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--teal);
    transform: scale(1.1);
}

.service-card.active .service-icon svg {
    stroke: white;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.service-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--teal);
}

.service-card.active .service-content h3 {
    color: white;
}

.service-content p {
    margin: 0;
    color: #666;
    font-size: 19px;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-card.active .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {

    .service-card {
        padding: 12px !important;
        border-radius: 12px;
    }

    .service-card.active .service-detail {
        max-height: 180px;   /* lebih pendek */
        overflow-y: auto;    /* scroll kalau panjang */
        margin-top: 8px;
    }

    .service-detail {
        font-size: 14px;
        line-height: 1.5;
    }

    .service-detail p {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* Service CTA */
.service-cta {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    position: relative;
    z-index: 1;
}

.service-card.active .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

/* ===== HORIZONTAL GRID ===== */
.horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= INDUSTRY CARDS ================= */
.industry-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 29, 55, 0.95), rgba(12, 29, 55, 0.7));
    z-index: 1;
    transition: all 0.4s ease;
}

.industry-icon {
    font-size: 52px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
    z-index: 3;
    transition: 0.45s cubic-bezier(0.22,0.61,0.36,1);
    padding: 0 30px;
}

.industry-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #9aa4b2;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.gold-line {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 15px;
    transition: 0.4s ease;
    border-radius: 2px;
}

.card-title h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.card-detail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 140px;
    padding: 0 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #e9edf3;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease 0.15s;
    z-index: 2;
    text-align: center;
}

.industry-card:hover .card-overlay {
    background: linear-gradient(135deg, var(--navy), #142f55);
}

.industry-card:hover .card-detail {
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover .card-title {
    bottom: 50px;
}

.industry-card:hover h4,
.industry-card:hover .industry-icon {
    color: white;
}

.industry-card:hover .industry-tag {
    color: #d6dbe3;
}

.industry-card:hover .gold-line {
    width: 60px;
}

.industry-cta {
    text-align: center;
    margin-top: 80px;
}

.industry-cta a {
    display: inline-block;
    padding: 18px 48px;
    background: var(--navy);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s;
    border: 2px solid var(--navy);
    letter-spacing: 0.5px;
}

.industry-cta a:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(12, 29, 55, 0.2);
}

/* ================= CLIENTS SECTION ================= */
.clients-section {
    padding: 80px 40px;
    background: #fff;
}

.client-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.client-slider-window {
    overflow: hidden;
}

.client-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.client-slide {
    flex: 0 0 20%;
    min-width: 20%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    box-sizing: border-box;
}

.client-slide img {
    width: auto;
    height: 60px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
    cursor: pointer;
    /* TAMBAHKAN INI UNTUK MEMASTIKAN */
    display: block;
    margin: 0 auto;
}

/* Fallback untuk gambar yang gagal dimuat */
.client-slide img[src*="images/rekanan/"] {
    min-width: 100px;
    background-color: #f5f5f5; /* Untuk melihat jika gambar kosong */
}
.client-slide img.active,
.client-slide img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* Navigation buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn.left { left: 0; }
.nav-btn.right { right: 0; }

.nav-btn:hover {
    background: #c8a86b;
    color: #fff;
}

/* ================= OFFICE SECTION ================= */
.office-section {
    padding: 110px 0;  /* HILANGKAN PADDING KIRI-KANAN */
    /* atau */
    padding: 120px 20px;  /* PERKECIL PADDING */
}

.office-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.office-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.office-header h2 span {
    color: var(--gold);
    position: relative;
}

.office-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    opacity: 0.3;
}

.office-header p {
    margin-top: 20px;
    font-size: 15px;
   color: #000000;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.office-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #e5c77a);
    margin: 30px auto 0;
    border-radius: 3px;
}

/* ================= OFFICE SECTION - MAPS KIRI, INFO KANAN ================= */
.office-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: stretch;  /* ← UBAH INI */
    max-width: 1400px;
    margin: 0 auto;
}

/* MAPS - FULL WIDTH DI KOLOM KIRI */
.office-map {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    height: 580px;
    width: 100%;  /* FULL di kolomnya */
    background: #f0f0f0;
}

.office-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* INFO DI KOLOM KANAN */
.office-info {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(201, 162, 77, 0.15);
    position: relative;
    overflow: hidden;
}

/* Responsive - Jadi 1 kolom di tablet/mobile */
@media (max-width: 992px) {
    .office-wrapper {
        grid-template-columns: 1fr;  /* 1 kolom */
        gap: 40px;
    }
    
    .office-map {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .office-map {
        height: 350px;
        border-radius: 20px;
    }
    
    .office-info {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .office-map {
        height: 300px;
    }
}

.office-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.office-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
}

.office-info h3::after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    align-items: flex-start;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item:hover {
    transform: translateX(8px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--soft), #e8ecf1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;  /* PUTIH */
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-item:hover .info-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
    border-color: var(--gold);
}

/* ================= FIX ICON PUTIH SAAT HOVER ================= */
.info-item:hover .info-icon i,
.info-item:hover .info-icon svg,
.info-item:hover .info-icon {
    color: #ffffff !important;
    stroke: #ffffff !important;  /* Untuk SVG */
    fill: #ffffff !important;     /* Untuk SVG */
}

/* Untuk icon di dalam frame */
.info-item:hover .info-icon i {
    color: #ffffff !important;
}

/* Untuk icon di office section */
.office-info .info-item:hover .info-icon i {
    color: #ffffff !important;
}

/* Untuk icon di footer */
.footer .contact-item:hover i {
    color: #ffffff !important;
}
.info-text {
    flex: 1;
}

.info-text h4 {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-text p {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
    margin: 0;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.info-text a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--gold);
}

.office-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), #e5c77a);
    color: var(--navy);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-start;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(201, 162, 77, 0.3);
}

.office-button:hover {
    background: linear-gradient(135deg, var(--navy), #142f55);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.4);
}


/* ================= QUOTE FRAME ================= */
.quote-frame {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left: 5px solid var(--primary-blue);
    padding: 25px 28px;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.quote-frame:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    background: white;
}

.quote-frame h4 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
}

.quote-frame p {
    margin: 0;
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 85px 24px 30px;
        margin: 0;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        list-style: none;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu li:last-child {
        border-bottom: none;
    }
    
    .menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
    }
    
    /* Submenu mobile */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0;
        border-radius: 0;
    }
    
    .dropdown.active .submenu {
        max-height: 300px;
    }
    
    .submenu li {
        padding-left: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .submenu li a {
        padding: 12px 0;
        font-size: 14px;
    }
    
    /* Sembunyikan info-right di mobile */
    .info-right {
        display: none;
    }
    
    .info-left {
        width: 100%;
        justify-content: center;
    }
}

/* ================= PORTFOLIO STYLES ================= */
.portfolio-section {
    padding: 100px 5%;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding: 20px;
    background: var(--soft);
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.2);
}

.filter-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 29, 55, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    border: 2px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.portfolio-category {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(201, 162, 77, 0.3);
}

.portfolio-year {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.portfolio-location {
    color: var(--teal);
    font-size: 15px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.portfolio-location i {
    font-size: 14px;
}

.portfolio-desc {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.portfolio-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    border-top: 1px solid #e5e7eb;
    padding-top: 0;
}

.portfolio-details p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-top: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: var(--soft);
    color: var(--navy);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e5e7eb;
}

.read-more-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--soft);
    border-radius: 12px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.read-more-btn:hover {
    background: var(--soft);
    border-color: var(--gold);
    color: var(--navy);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.portfolio-item.active .read-more-btn i {
    transform: rotate(180deg);
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Jost', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ================= SERVICE CARD STYLES ================= */

/* Base service card */
.service-card {
    background: white;
    padding: 25px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    color: var(--navy);
}

/* Background gradient animation */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), #142f55);
    transform: translateX(-100%);
    transition: 0.65s cubic-bezier(0.77,0,0.18,1);
    z-index: 0;
}

.service-card.active::before {
    transform: translateX(0);
}

/* Bottom border animation */
.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card.active {
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.02);
    color: #fff;
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-header i {
    font-size: 26px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-header i {
    color: var(--teal);
    transform: scale(1.1);
}

.service-card.active .service-header i {
    color: var(--light-blue);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.service-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--teal);
}

.service-card.active .service-content h3 {
    color: white;
}

/* ===== INI YANG PENTING - SERVICE DETAIL ===== */
/* Hanya SATU definisi untuk service-detail */
.service-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.service-card.active .service-detail {
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
}

.service-detail p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card.active .service-detail p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== STYLE UNTUK OFFICE WRAPPER (LAYANAN PAGE) ===== */
.office-wrapper .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.office-wrapper .service-card {
    background: #fff;
    padding: 28px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.office-wrapper .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--teal);
}

.office-wrapper .service-card.active {
    background: linear-gradient(135deg, var(--navy), #142f55);
    color: #fff;
    border-color: var(--gold);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 12px !important;
        border-radius: 12px;
    }
    
    .service-card.active .service-detail {
        max-height: 200px;
        overflow-y: auto;
        margin-top: 8px;
    }
    
    .service-detail p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ================= PARTNER GRID ================= */
.partner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 40px;
    justify-items: center;
    width: 800px;
}

.partner-grid .partner-card:last-child {
    grid-column: 1 / span 2;
}

/* ================= TEAM GRID ================= */

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* PAKSA 3 KOLOM */
    gap: 15px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto 60px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

.team-card {
    width: 100% !important;
    min-width: 0 !important; /* Mencegah overflow */
    padding: 15px 12px !important;
    border-radius: 16px !important;
    border: 1px solid #dcdcdc !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

/* MOBILE (default) */
.team-grid { 
    display: grid !important;
    grid-template-columns: 1fr !important; /* 1 kolom */
    gap: 12px !important;
    width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
}

/* CARD */
.team-card {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
}

/* TABLET */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 kolom */
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* 3 kolom */
        max-width: 1200px !important;
        margin: 0 auto 60px !important;
    }
}
/* ================= PROFIL PAGE TABS ================= */
.tab-navigation {
    margin-bottom: 60px;
    position: relative;
}

.tab-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: var(--soft);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.tab-btn {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 22px 25px;
    background: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.25);
}

.tab-btn:hover::before {
    transform: translateY(0);
}

.tab-btn.active {
    background: var(--navy);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 29, 55, 0.25);
}

.tab-btn.active::before {
    background: var(--gold);
    transform: translateY(0);
}

.tab-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.tab-btn:hover i {
    transform: scale(1.1);
}

.tab-contents {
    min-height: 700px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.tab-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--soft);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tab-header h3 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 800;
}

.tab-header h3 i {
    color: var(--gold);
    font-size: 32px;
}

.tab-header p {
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Sejarah */
.sejarah-content {
    max-width: 1100px;
    margin: 0 auto;
}

.sejarah-paragraph {
    margin-bottom: 60px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sejarah-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sejarah-paragraph h4 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 700;
}

.sejarah-paragraph p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.sejarah-paragraph p strong {
    color: var(--navy);
    font-weight: 700;
}

.sejarah-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.highlight-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.highlight-item:hover::before {
    transform: translateX(0);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft), #e8ecf1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 24px;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.highlight-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Jost', sans-serif;
}

.highlight-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Visi Misi */
.visimisi-content {
    max-width: 1200px;
    margin: 0 auto;
}

.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.visi-card,
.misi-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.visi-card:hover,
.misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.visi-header,
.misi-header {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.visi-header::before,
.misi-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
}

.visi-icon,
.misi-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.3);
}

.visi-header h4,
.misi-header h4 {
    font-size: 28px;
    margin: 0;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.visi-body,
.misi-body {
    padding: 40px 35px;
}

.visi-body p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.visi-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--soft);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(201, 162, 77, 0.1);
    transform: translateX(5px);
}

.detail-item i {
    color: var(--teal);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item span {
    color: #555;
    line-height: 1.6;
    flex: 1;
    font-size: 15px;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    align-items: flex-start;
}

.misi-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.misi-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #e5c77a);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

.misi-text {
    flex: 1;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.misi-text strong {
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 700;
}

/* Legalitas */
.legalitas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.legalitas-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(201, 162, 77, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card:hover .info-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.info-card h5 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Nilai Perusahaan */
.nilai-content {
    max-width: 1200px;
    margin: 0 auto;
}

.nilai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.nilai-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nilai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.nilai-card:hover::before {
    transform: translateX(0);
}

.nilai-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.nilai-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), #e5c77a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 36px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.3);
}

.nilai-card:hover .nilai-icon {
    transform: scale(1.1) rotate(5deg);
}

.nilai-card h4 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}

.nilai-card p {
    color: #666;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-size: 15.5px;
}

.nilai-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.nilai-point {
    background: var(--soft);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.nilai-card:hover .nilai-point {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Klien & Mitra */
.mitra-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mitra-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.mitra-logo {
    background: white;
    padding: 35px 30px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mitra-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(12, 29, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mitra-logo:hover::before {
    opacity: 1;
}

.mitra-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.mitra-logo img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.mitra-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.mitra-label {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.mitra-desc {
    font-size: 13px;
    color: #777;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.mitra-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 29, 55, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Jost', sans-serif;
    position: relative;
    z-index: 1;
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ================= STRUKTUR ORGANISASI ================= */
.struktur-section {
    padding: 100px 5% 80px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.structure-hero {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 100px 20px 70px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.structure-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    opacity: 0.1;
}

.structure-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.structure-hero span {
    color: var(--gold);
}

.org-chart-container {
    margin-bottom: 100px;
}

.chart-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--soft);
    border-radius: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.chart-btn {
    padding: 18px 35px;
    background: white;
    border: 2px solid var(--soft);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 180px;
    justify-content: center;
}

.chart-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.25);
}

.chart-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 29, 55, 0.25);
}

.chart-btn i {
    font-size: 20px;
}

.chart-view,
.list-view,
.team-view {
    display: none;
    animation: fadeIn 0.5s ease;
}

.chart-view.active,
.list-view.active,
.team-view.active {
    display: block;
}

.orgchart-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    overflow-x: auto;
    border: 2px solid #e5e7eb;
}

#orgchart {
    width: 100%;
    height: 600px;
    min-width: 1000px;
}

/* OrgChart Custom Styling */
.orgchart {
    background: transparent !important;
}

.orgchart .node {
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    border: 2px solid transparent !important;
}

.orgchart .node:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--gold) !important;
}

.org-node {
    padding: 25px 20px;
    min-width: 200px;
    text-align: center;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.org-node:hover {
    transform: scale(1.05);
}

.org-node.ceo {
    background: linear-gradient(135deg, var(--navy), #142f55);
    border: 3px solid var(--gold);
}

.org-node.management {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 2px solid #60a5fa;
}

.org-node.dept {
    background: linear-gradient(135deg, var(--teal), #0d9488);
    border: 2px solid #5eead4;
}

.org-node.team {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border: 2px solid #a78bfa;
}

.node-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.node-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.node-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

.chart-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding: 25px;
    background: var(--soft);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.legend-color {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.legend-color.ceo {
    background: var(--navy);
    border: 2px solid var(--gold);
}

.legend-color.management {
    background: #2563eb;
}

.legend-color.dept {
    background: var(--teal);
}

.legend-color.team {
    background: #7c3aed;
}

.legend-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* List View */
.department-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.dept-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dept-category:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dept-category h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--soft);
    font-weight: 800;
}

.dept-category h3 i {
    color: var(--gold);
    font-size: 30px;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dept-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 35px 30px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    align-items: flex-start;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
    background: white;
}

.dept-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

.dept-info {
    flex: 1;
}

.dept-info h4 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.dept-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dept-person {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.person-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), #142f55);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.person-info {
    flex: 1;
}

.person-info strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 700;
}

.person-info span {
    color: #777;
    font-size: 14px;
}

.dept-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.dept-stats span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    padding: 8px 15px;
    background: var(--soft);
    border-radius: 10px;
}

.dept-stats i {
    color: var(--teal);
    font-size: 16px;
}

.dept-team {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.member-avatar {
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.member-info strong {
    display: block;
    color: var(--navy);
    margin-bottom: 3px;
    font-size: 15px;
}

.member-info span {
    color: #777;
    font-size: 13px;
}

/* Team View */
.team-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
    background: var(--soft);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

/* Organizational Values */
.org-values {
    margin: 100px 0;
    padding: 60px 40px;
    background: #f9fafb;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.org-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.org-values h3 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.org-values h3 i {
    color: var(--gold);
    font-size: 34px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft), #e8ecf1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.value-item h4 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* ================= PROFILE CTA ================= */
.profile-cta {
    background: linear-gradient(135deg, var(--teal), #0d9488);
    color: #fff;
    text-align: center;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.profile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M20,20 L80,80 M80,20 L20,80" stroke="white" stroke-width="1" opacity="0.1"/></svg>');
}

.profile-cta h3 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.profile-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    color: white;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-badges div:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.trust-badges i {
    color: var(--gold);
    font-size: 20px;
    margin-right: 8px;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
    padding: 100px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: var(--soft);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-nav-btn {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    padding: 22px 25px;
    background: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.contact-nav-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.25);
}

.contact-nav-btn:hover::before {
    transform: translateY(0);
}

.contact-nav-btn.active {
    background: var(--navy);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 29, 55, 0.25);
}

.contact-nav-btn.active::before {
    background: var(--gold);
    transform: translateY(0);
}

.contact-nav-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.contact-nav-btn:hover i {
    transform: scale(1.1);
}

.contact-contents {
    min-height: 700px;
}

.contact-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 20px 0;
}

.contact-content.active {
    display: block;
}

.contact-location {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    border: 2px solid #e5e7eb;
}

.location-header {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 35px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.location-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
}

.location-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-header h3 i {
    color: var(--gold);
    font-size: 30px;
}

.location-header p {
    font-size: 15px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 600px;
}

.location-map {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.location-info h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
}

.location-info h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.operational-hours {
    background: var(--soft);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.operational-hours h5 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.operational-hours h5 i {
    color: var(--gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    color: #555;
    font-weight: 500;
}

.time {
    color: var(--navy);
    font-weight: 600;
}

.location-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.cta-btn.primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 5px 20px rgba(201, 162, 77, 0.3);
}

.cta-btn.primary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.cta-btn.secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 29, 55, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--navy), #142f55);
    padding: 80px 60px;
    border-radius: 25px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="white" stroke-width="1" opacity="0.05"/></svg>');
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h3 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.form-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--gold), #e5c77a);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 77, 0.3);
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--navy), #142f55);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.4);
}

/* Quick Contact */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.quick-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft), #e8ecf1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.quick-contact-card h4 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
}

.quick-contact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* ================= FOOTER ================= */
.footer {
    width: 100%;
    background: linear-gradient(135deg, rgba(7, 29, 51, 0.98), rgba(7, 29, 51, 0.95));
    color: #fff;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 6% 70px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 30px;
}

.footer-brand strong {
    color: #fff;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.contact-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.institution-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.institution-logo {
    width: 100%;
    min-height: 140px;  /* Ganti aspect-ratio dengan min-height */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    padding: 15px 10px;  /* Kurangi padding vertikal */
    position: relative;
    overflow: hidden;
}

.institution-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(201, 162, 77, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.institution-logo:hover::before {
    opacity: 1;
}

/* PERBAIKAN UTAMA - Perbesar ukuran logo */
.institution-logo img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
    
    /* Tambahan untuk memperbesar */
    min-width: 80px;
    min-height: 60px;
}

/* Atau gunakan pendekatan persentase yang lebih besar */
.institution-logo img {
    width: 80%;  /* Ganti max-width dengan width */
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.logo-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.institution-logo:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.institution-logo:hover img {
    filter: none;
    transform: scale(1.08);
}

.institution-logo:hover .logo-label {
    color: var(--gold);
}

/* Tablet */
@media (max-width: 768px) {
    .institution-logos {
        gap: 15px;
    }
    
    .institution-logo {
        min-height: 120px;
        padding: 12px 8px;
    }
    
    .institution-logo img {
        width: 75%;
        max-height: 65px;
    }
    
    .logo-label {
        font-size: 10px;
        margin-top: 8px;
    }
}

/* Mobile kecil */
@media (max-width: 480px) {
    .institution-logo {
        min-height: 100px;
        padding: 10px 6px;
    }
    
    .institution-logo img {
        width: 70%;
        max-height: 55px;
    }
    
    .logo-label {
        font-size: 9px;
        margin-top: 6px;
    }
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 35px 6%;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.5), transparent);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-bottom strong {
    color: #fff;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* ================= SERVICES CTA ================= */
.services-cta {
    text-align: center;
    margin-top: 70px;
}

.services-cta .btn-primary {
    padding: 18px 45px;
    font-size: 16px;
}

/* ================= PRINT BUTTON ================= */
.print-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.print-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ================= RESPONSIVE ================= */

/* Desktop Large */
@media (max-width: 1400px) {
    .footer-container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .info-frame,
    .navbar,
    .page-hero,
    .contact-page {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .company-profile,
    .services-section {
        padding: 80px 40px;
    }
    
    .counter-horizontal {
        margin: 80px 40px;
        padding: 60px 40px;
    }
    
    .office-section {
        padding: 100px 40px;
    }
    
    .cards-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .client-slide {
        flex: 0 0 25%;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .info-frame {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .info-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .info-left .top-info-item {
        border-right: none;
        justify-content: center;
        width: 100%;
    }
    
    .info-right {
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
  
    
    .menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    
 
    
    .menu li {
        width: 100%;
    }
    
    .menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        background: #f9f9f9;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown.active .submenu {
        display: block;
    }
    
    .page-hero {
        padding: 80px 30px 50px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .contact-page {
        padding: 80px 30px;
    }
    
    .contact-header h2 {
        font-size: 36px;
    }
    
    .contact-nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-nav-btn {
        width: 100%;
        max-width: 350px;
        min-width: auto;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .location-map {
        height: 400px;
    }
    
    .location-info {
        padding: 40px 30px;
    }
    
    .contact-form-section {
        padding: 60px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .office-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

    
    .office-map {
        height: 450px;
        order: 2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    

    .client-slide {
        flex: 0 0 33.33%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        grid-column: span 1;
    }
    
    .tab-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        justify-content: flex-start;
    }
    
    .visimisi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sejarah-highlights,
    .legalitas-info,
    .mitra-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nilai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mitra-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .info-frame {
        font-size: 12px;
    }
    
    .top-info-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-info-item i {
        margin-bottom: 5px;
    }
    
    .navbar {
        padding: 20px;
    }
    
    .brand img {
        height: 38px;
    }
    
    .menu {
        width: 100%;
    }
    
    .content {
        padding: 80px 25px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .slogan-frame {
        padding: 18px 22px;
    }
    
    .page-hero {
        padding: 70px 20px 40px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .contact-page {
        padding: 60px 20px;
    }
    
    .contact-header h2 {
        font-size: 32px;
    }
    
    .contact-header p {
        font-size: 15px;
    }
    
    .location-header {
        padding: 30px 25px;
    }
    
    .location-header h3 {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .location-map {
        height: 350px;
    }
    
    .location-info h4 {
        font-size: 24px;
    }
    
    .info-text p {
        font-size: 16px;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-container {
        padding: 0;
    }
    
    .contact-form {
        padding: 40px 25px;
    }
    
    .form-header h3 {
        font-size: 30px;
    }
    
    .counter-horizontal {
        margin: 60px 40px;
        padding: 40px 40px;
    }
    
    .counter-wrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .counter-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 30px 15px;
    }
    
    .counter-box:last-child {
        border-bottom: none;
    }
    
    .cards-grid-container,
    .services-grid,
    .profile-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .industry-card {
        height: 350px;
    }
    
    .client-slide {
        flex: 0 0 50%;
        height: 100px;
    }
    
    .client-slider-wrapper {
        padding: 0 60px;
        margin: 60px 0;
    }
    
    .client-slide img {
        max-height: 70px;
    }
    
    .office-section {
        padding: 80px 25px;
    }
    
    .office-header h2 {
        font-size: 32px;
    }
    
    .office-header p {
        font-size: 15px;
    }
    
    .office-info {
        padding: 35px 25px;
    }
    
    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 25px;
    }
    
    .profile-cards {
        flex-direction: column;
        padding: 25px;
    }
    
    .card {
        width: 100%;
    }
    
    .footer-container {
        padding: 70px 25px 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .portfolio-section {
        padding: 80px 25px;
    }
    
    .portfolio-header {
        margin-bottom: 60px;
    }
    
    .portfolio-header h2 {
        font-size: 32px;
    }
    
    .portfolio-header p {
        font-size: 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 40px;
        margin-top: 60px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .partner-grid .partner-card:last-child {
        grid-column: auto;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .profil-section {
        padding: 80px 25px 60px;
    }
    
    .profil-header h2,
    .profile-hero h1 {
        font-size: 36px;
    }
    
    .profile-hero {
        padding: 80px 20px 60px;
    }
    
    .tab-header h3 {
        font-size: 28px;
        flex-direction: column;
        gap: 15px;
    }
    
    .sejarah-paragraph,
    .visi-body,
    .misi-body,
    .info-card {
        padding: 30px 25px;
    }
    
    .sejarah-highlights,
    .legalitas-info,
    .mitra-stats,
    .nilai-grid,
    .mitra-logos {
        grid-template-columns: 1fr;
    }
    
    .misi-list li {
        flex-direction: column;
        gap: 15px;
    }
    
    .misi-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .nilai-card {
        padding: 35px 25px;
    }
    
    .nilai-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .mitra-logo {
        height: 180px;
        padding: 30px 20px;
    }
    
    .service-card {
        animation: slideUp 0.6s ease both;
    }
    
    .quote-frame {
        animation: slideUp 0.6s ease 0.2s both;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .info-frame {
        padding: 10px;
    }
    
    .info-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-logo-img {
        height: 35px;
    }
    
    .info-logo-text {
        font-size: 13px;
    }
    
    .info-item {
        font-size: 11px;
    }
    
    .info-item i {
        font-size: 12px;
    }
    
    .navbar {
        padding: 15px;
    }
    
    .brand img {
        height: 35px;
    }
    
    .hamburger-btn i {
        font-size: 24px;
    }
    
    .menu {
        width: 100%;
    }
    
    .content {
        padding: 60px 20px;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .btn,
    .office-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .section-label {
        font-size: 24px;
    }
    
    .page-hero {
        padding: 60px 15px 30px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .contact-page {
        padding: 50px 15px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-nav-btn {
        padding: 18px 20px;
        font-size: 15px;
        gap: 12px;
    }
    
    .contact-nav-btn i {
        font-size: 18px;
    }
    
    .location-header {
        padding: 25px 20px;
    }
    
    .location-header h3 {
        font-size: 24px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .location-info {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .location-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .counter-horizontal {
        margin: 60px 20px;
        padding: 40px 20px;
    }
    
    .counter-value {
        font-size: 42px;
    }
    
    .company-profile,
    .services-section {
        padding: 60px 20px;
    }
    
    .profile-section.light {
        padding: 50px 20px;
    }
    
    .services-header h2,
    .office-header h2,
    .section-title {
        font-size: 28px;
    }
    
    .client-slider-wrapper {
        padding: 0 50px;
    }
    
    .client-slide {
        flex: 0 0 100%;
        height: 90px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-grid {
        padding: 0 15px;
        gap: 25px;
    }
    
    .card,
    .partner-card {
        width: 100%;
        max-width: 1500px;
    }
    
    .footer-container {
        padding: 50px 20px 30px;
    }
    
    .institution-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-legal a {
        padding: 8px 15px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 6px;
    }
    
    .portfolio-section {
        padding: 60px 20px;
    }
    
    .portfolio-content h3 {
        font-size: 20px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-overlay {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .portfolio-year {
        align-self: flex-end;
    }
    
    .profile-hero {
        padding: 60px 20px 50px;
    }
    
    .profile-hero h1 {
        font-size: 32px;
    }
    
    .tab-btn {
        padding: 18px 25px;
        font-size: 14px;
        gap: 12px;
    }
    
    .tab-btn i {
        font-size: 18px;
    }
    
    .legal-table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 15px;
        min-width: 100px;
    }
    
    .visi-icon,
    .misi-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .nilai-card {
        padding: 30px 20px;
    }
    
    .nilai-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ==================== CSS REKANAN BANK ==================== */

/* Container utama rekanan */
.rekanan-content {
    padding: 20px 0;
}

/* Kategori rekanan */
.rekanan-category {
    margin-bottom: 50px;
}

.rekanan-category:last-child {
    margin-bottom: 0;
}

/* Grid rekanan - responsive grid */
.rekanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Card rekanan */
.rekanan-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 15px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

/* Efek hover pada card */
.rekanan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

/* Efek active saat disentuh/diklik */
.rekanan-card:active {
    transform: translateY(-4px);
    transition: all 0.1s ease;
}


.rekanan-card img {
    width: 100%;
    max-width: 120px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
    /* Default: hitam putih / grayscale */
    filter: grayscale(100%);
    opacity: 0.75;
}

/* Efek saat hover atau disentuh - warna asli muncul */
.rekanan-card img {
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.rekanan-card:hover img,
.rekanan-card:active img,
.rekanan-card:focus img {
    transform: scale(1.05);
}
/* Nama bank */
.rekanan-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    transition: color 0.3s ease;
}

/* Hover pada nama bank */
.rekanan-card:hover h5 {
    color: #d4af37;
}

/* Untuk touch device (mobile) - sentuh langsung warna asli */
@media (hover: none) and (pointer: coarse) {
    .rekanan-card:active img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
        transition: all 0.2s ease;
    }
    
    .rekanan-card:active h5 {
        color: #d4af37;
    }
    
    .rekanan-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Efek tambahan: garis bawah animasi saat hover */
.rekanan-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffc107);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.rekanan-card:hover::after {
    width: 60px;
}

/* Untuk gambar yang broken/error */
.rekanan-card img[src=""],
.rekanan-card img:not([src]),
.rekanan-card img[src="#"],
.rekanan-card img.error {
    opacity: 0.5;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    min-height: 70px;
}

/* Alert informasi */
.alert-info {
    background: linear-gradient(135deg, #e8f4fd 0%, #d9eefb 100%);
    border: none;
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 40px;
    color: #1e4663;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.alert-info i {
    color: #d4af37;
    font-size: 18px;
    margin-right: 10px;
}

.alert-info strong {
    color: #0a2b3e;
}


/* Tab Navigation styling */
.tab-navigation {
    margin-bottom: 40px;
    border-bottom: 2px solid #eef2f6;
}

.tab-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #5a6e7c;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tab-btn:hover i {
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #0a2b3e;
    color: white;
    box-shadow: 0 4px 12px rgba(10, 43, 62, 0.2);
}

.tab-btn.active i {
    color: #d4af37;
}

.tab-btn:hover:not(.active) {
    background: #f0f4f8;
    color: #0a2b3e;
}

@media (max-width: 768px) {
    /* Judul */
    #rekanan-tab h3 {
        color: #001f3f !important;
    }

    /* Ikon */
    #rekanan-tab h3 i {
        color: #001f3f !important;
    }

    /* Paragraf */
    #rekanan-tab p {
        color: #000000 !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    /* Judul */
    #rekanan-tab h3 {
        color: #001f3f !important;
    }

    /* Ikon */
    #rekanan-tab h3 i {
        color: #001f3f !important;
    }

    /* Paragraf */
    #rekanan-tab p {
        color: #000000 !important;
        opacity: 1 !important;
    }
}

/* ================= FIX TABS FOR MOBILE ================= */
@media (max-width: 768px) {
    /* Pastikan tab button mudah diklik di mobile */
    .tab-btn {
        padding: 14px 20px !important;
        font-size: 14px !important;
        min-height: 55px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .tab-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 15px !important;
    }
    
    /* Pastikan konten tab terlihat saat active */
    .tab-content {
        display: none !important;
    }
    
    .tab-content.active {
        display: block !important;
    }
    
    /* Styling untuk tab header di mobile */
    .tab-header h3 {
        font-size: 22px !important;
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    
    .tab-header p {
        font-size: 14px !important;
        padding: 0 10px !important;
        text-align: center !important;
        color: #000000 !important;
    }
    
    /* Table legalitas responsive */
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .legal-table {
        min-width: 600px !important;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 12px !important;
        font-size: 12px !important;
    }
    
    /* Cards legalitas */
    .legalitas-info {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .info-card {
        padding: 25px 20px !important;
    }
    
    /* Sejarah content */
    .sejarah-paragraph {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .sejarah-paragraph h4 {
        font-size: 18px !important;
    }
    
    .sejarah-paragraph p {
        font-size: 14px !important;
        text-align: justify !important;
    }
}

@media (max-width: 768px) {
    .managing-partner,
    .partner-card-base {
        background: #ffffff !important;
        border: 1px solid #e5e5e5 !important;
        box-shadow: none !important;
    }

    /* 🔥 MATIKAN SEMUA EFEK TAMBAHAN */
    .managing-partner::before,
    .managing-partner::after,
    .partner-card-base::before,
    .partner-card-base::after {
        display: none !important;
    }
}

/* Untuk tablet */
@media (min-width: 769px) and (max-width: 992px) {
    .tab-menu {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .tab-btn {
        flex: 1 !important;
        min-width: 180px !important;
        padding: 18px 20px !important;
    }
    
    .legalitas-info {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi fade in untuk card */
.rekanan-card {
    animation: fadeInUp 0.5s ease backwards;
}

.rekanan-card:nth-child(1) { animation-delay: 0.05s; }
.rekanan-card:nth-child(2) { animation-delay: 0.1s; }
.rekanan-card:nth-child(3) { animation-delay: 0.15s; }
.rekanan-card:nth-child(4) { animation-delay: 0.2s; }
.rekanan-card:nth-child(5) { animation-delay: 0.25s; }
.rekanan-card:nth-child(6) { animation-delay: 0.3s; }
.rekanan-card:nth-child(7) { animation-delay: 0.35s; }
.rekanan-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive untuk tablet */
@media (max-width: 992px) {
    .rekanan-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 25px;
    }
    
    .rekanan-card {
        padding: 20px 12px 16px;
    }
    
    .rekanan-card img {
        max-width: 100px;
        height: 60px;
    }
    
    .rekanan-card h5 {
        font-size: 13px;
    }
    
    .tab-header h3 {
        font-size: 1.5rem;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .rekanan-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .rekanan-card {
        padding: 18px 10px 14px;
    }
    
    .rekanan-card img {
        max-width: 85px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .rekanan-card h5 {
        font-size: 12px;
    }
    
    .rekanan-card:hover {
        transform: translateY(-5px);
    }
    
    .alert-info {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .tab-header h3 {
        font-size: 1.3rem;
    }
    
    .tab-header p {
        font-size: 14px;
    }
    
    .tab-menu {
        gap: 12px;
    }
    
    .tab-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .tab-btn i {
        font-size: 14px;
    }
}

/* Responsive untuk mobile kecil */
@media (max-width: 480px) {
    .rekanan-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .rekanan-card {
        padding: 15px 8px 12px;
    }
    
    .rekanan-card img {
        max-width: 70px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .rekanan-card h5 {
        font-size: 11px;
    }
}

/* Dark mode support (opsional) */
@media (prefers-color-scheme: dark) {
    .rekanan-card {
        background: #1a2a3a;
        border-color: #2c3e50;
    }
    
    .rekanan-card h5 {
        color: #e2e8f0;
    }
    
    .rekanan-card:hover h5 {
        color: #d4af37;
    }
    
    .tab-header h3 {
        color: #e2e8f0;
    }
    
    .tab-header p {
        color: #94a3b8;
    }
}

@media (max-width: 768px) {
    #sejarah-tab .tab-header p {
        color: #000000 !important;
        opacity: 1 !important;
    }
}

/* Desktop - Hamburger hidden */
@media (min-width: 993px) {
    .hamburger-btn {
        display: none !important;
    }
    
    .menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}