:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a2e;
    --text-secondary: #555555;
    --accent: #256a56;
    --accent-dark: #1a4d3e;
    --accent-light: #2e8a70;
    --accent-soft: #e8f3ef;
    --header-bg: rgba(255, 255, 255, 0.98);
    --topbar-bg: #1a4d3e;
    --border: #e0e0e0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body.dark {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111827;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --header-bg: rgba(10, 10, 10, 0.98);
    --topbar-bg: #0f2a22;
    --border: #1e293b;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== TOP BAR ========== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--topbar-bg);
    z-index: 1002;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.top-bar-info i {
    margin-right: 8px;
    color: white;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dark-mode-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.lang-switcher a {
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.lang-switcher a:hover {
    color: var(--accent-light);
}

.lang-switcher a.active {
    color: var(--accent-light);
    font-weight: bold;
}

.lang-switcher .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-carousel {
    margin-top: 104px;
    height: 85vh;
    min-height: 550px;
}

.hero-slide {
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 55px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.clientsSwiper {
    padding: 40px 0;
}

.clientsSwiper .swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clientsSwiper img {
    max-width: 160px;
    max-height: 90px;
    width: auto;
    height: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
    object-fit: contain;
}

.clientsSwiper img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent);
    margin-top: 10px;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info li i {
    width: 24px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-primary);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: white;
}

.floating-wa .tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.floating-wa:hover .tooltip {
    opacity: 1;
}

/* About Page */
.about-section {
    padding: 130px 0 80px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-secondary);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Services Detail */
.services-detail-section {
    padding: 130px 0 80px;
}

/* Contact Page */
.contact-section {
    padding: 130px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-form {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 106, 86, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-success {
    background: var(--accent);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.form-success i {
    margin-right: 10px;
}

/* Clients Page */
.clients-page-section {
    padding: 130px 0 80px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.client-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card img {
    max-width: 120px;
    margin-bottom: 15px;
}

.client-card i {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

.client-card h3 {
    font-size: 18px;
}

/* Swiper Custom */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .dark-mode-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .lang-switcher {
        padding: 4px 12px;
        font-size: 12px;
    }
    
    .header {
        top: 46px;
        padding: 10px 0;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 94px;
        flex-direction: column;
        background: var(--header-bg);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        transition: 0.3s;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-carousel {
        margin-top: 94px;
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-slide {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .about-section,
    .services-detail-section,
    .contact-section,
    .clients-page-section {
        padding: 110px 0 60px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-section,
    .clients-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
/* ========== LEADERSHIP SECTION ========== */
.leadership-section {
    padding: 60px 0 80px;
    background: var(--bg-secondary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.leader-card {
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

/* PERBAIKAN: Foto CEO tidak terpotong */
.leader-image {
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 400px;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.5s ease;
    background: #f5f5f5;
}

/* Alternatif: Jika ingin foto full width tapi tetap utuh */
.leader-image-alt {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0f0f0;
}

.leader-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.03);
}

.leader-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 10;
}

.leader-card:hover .leader-social {
    opacity: 1;
    transform: translateY(0);
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.leader-social a:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
}

.leader-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.leader-position {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    display: inline-block;
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.leader-bio p {
    margin-bottom: 10px;
}

.leader-quote {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
    border-left: 4px solid var(--accent);
}

.leader-quote i {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.6;
}

.leader-quote p {
    font-style: italic;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leader-image {
        max-height: 350px;
    }
    
    .leader-image img {
        max-height: 350px;
    }
    
    .leader-name {
        font-size: 22px;
    }
    
    .leader-info {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .leader-image {
        max-height: 300px;
    }
    
    .leader-image img {
        max-height: 300px;
    }
    
    .leader-name {
        font-size: 20px;
    }
}
/* ========== VISI & MISI ========== */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.vision-card,
.mission-card {
    background: var(--bg-primary);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
}

.vision-card i,
.mission-card i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card ul li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.mission-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ========== RESPONSIVE LEADERSHIP ========== */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 40px 0 60px;
    }
    
    .leader-image {
        height: 320px;
    }
    
    .leader-name {
        font-size: 22px;
    }
    
    .leader-info {
        padding: 25px;
    }
    
    .vision-card,
    .mission-card {
        padding: 25px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 24px;
    }
    
    .leader-quote p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .leader-image {
        height: 280px;
    }
    
    .leader-name {
        font-size: 20px;
    }
    
    .leader-position {
        font-size: 14px;
    }
    
    .leader-bio p {
        font-size: 14px;
    }
    
    .vision-card,
    .mission-card {
        padding: 20px;
    }
}
/* ========== MAP SECTION ========== */
.map-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.map-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-title i {
    color: var(--accent);
    font-size: 28px;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
    transition: var(--transition);
}

.map-container iframe:hover {
    transform: scale(1.01);
}

.map-address {
    background: var(--bg-secondary);
    padding: 20px 25px;
    border-radius: 16px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.map-address p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.map-address p i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
}

.map-address a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.map-address a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* ========== JAM OPERASIONAL DI CONTACT CARD ========== */
.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card .fas.fa-clock {
    color: var(--accent);
}

/* ========== RESPONSIVE MAP ========== */
@media (max-width: 768px) {
    .map-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .map-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .map-title i {
        font-size: 24px;
    }
    
    .map-container iframe {
        height: 280px;
    }
    
    .map-address {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .map-address p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 220px;
    }
    
    .map-address {
        padding: 12px 15px;
    }
}
/* ========== PORTFOLIO PAGE ========== */
.portfolio-section {
    padding: 130px 0 80px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    padding: 10px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay a {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.portfolio-overlay a:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.portfolio-location {
    font-size: 13px;
    color: var(--accent);
}

.portfolio-load-more {
    text-align: center;
    margin-top: 50px;
}

/* ========== LEGALITAS PAGE ========== */
.legalitas-section {
    padding: 130px 0 80px;
}

.legal-card {
    display: flex;
    gap: 30px;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-5px);
}

.legal-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-icon i {
    font-size: 40px;
    color: var(--accent);
}

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.legal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.legal-list li i {
    color: var(--accent);
    font-size: 18px;
}

.legal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.legal-stat-item {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ========== GALLERY PAGE ========== */
.gallery-section {
    padding: 130px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item a {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 13px;
    opacity: 0.8;
}

/* ========== BLOG PAGE ========== */
.blog-section {
    padding: 130px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-readmore {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-readmore i {
    transition: var(--transition);
}

.btn-readmore:hover {
    color: var(--accent-dark);
}

.btn-readmore:hover i {
    transform: translateX(5px);
}

/* ========== BLOG DETAIL PAGE ========== */
.blog-detail-section {
    padding: 130px 0 80px;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.blog-detail-meta i {
    margin-right: 8px;
    color: var(--accent);
}

.blog-detail-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-detail-body {
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-detail-body h3 {
    color: var(--text-primary);
    margin: 25px 0 15px;
    font-size: 22px;
}

.blog-detail-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.blog-detail-body li {
    margin-bottom: 8px;
}

.blog-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.blog-share h4 {
    margin-bottom: 15px;
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.share-links a:hover {
    background: var(--accent);
    color: white;
}

.blog-sidebar .sidebar-widget {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.related-posts,
.categories {
    list-style: none;
}

.related-posts li,
.categories li {
    margin-bottom: 12px;
}

.related-posts li a,
.categories li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts li a:hover,
.categories li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.related-posts li a i,
.categories li a i {
    font-size: 12px;
    color: var(--accent);
}

.blog-back {
    margin-top: 50px;
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .portfolio-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-icon {
        margin: 0 auto;
    }
    
    .legal-list {
        text-align: left;
    }
    
    .legal-stats {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}