/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Reset dan Variabel CSS */
:root {
    --primary-color: #003366;
    --secondary-color: #005A9C;
    --accent-color: #FDB813;
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --bg-light: #f8f9fa;
    --sidebar-width: 300px;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Perbaikan: Mengatur overflow agar tidak ada scrollbar horizontal */
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    /* Perbaikan: Mengatur overflow agar tidak ada scrollbar horizontal */
    overflow-x: hidden;
}

/* Navigasi & Sidebar */
.nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.nav-toggle:hover {
    transform: scale(1.1);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform var(--transition-speed) ease-in-out;
    overflow-y: auto;
}
.sidebar.show {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.sidebar-logo { max-width: 120px; }
.nav-close {
    background: none;
    border: none;
    color: var(--light-text-color);
    font-size: 28px;
    cursor: pointer;
}
.sidebar ul {
    list-style: none;
    flex-grow: 1;
    padding-left: 0;
}
.sidebar ul li a {
    display: block;
    padding: 15px;
    color: var(--light-text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
    font-weight: 600;
}
.sidebar ul li a:hover, .sidebar ul li a.active {
    background-color: var(--secondary-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Hero Section & Page Header */
.hero, .page-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text-color);
    overflow: hidden;
    background-image: url('images/headerimage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.page-header { min-height: 60vh; }

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-content, .page-header-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}
.hero h1, .page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero p, .page-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Tombol */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(253, 184, 19, 0.4);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(253, 184, 19, 0.6);
}
.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Kontainer dan Seksi Umum */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-section, .content-section { padding: 80px 0; }
.home-section h2, .content-section h2, .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* Layanan di Beranda */
.services-spotlight { background-color: var(--bg-light); }
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.card {
    background: #fff;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Counter Section */
.home-section.stats-counter {
    padding: 60px 20px;
    background-color: #002244;
    color: #fff;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    padding: 20px;
}
.stat-item i {
    font-size: 3em;
    color: #40E0D0;
    margin-bottom: 15px;
}
.stat-item .counter {
    display: block;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-item h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Tentang Kami di Beranda */
.home-section.about-preview {
    text-align: center;
}
.about-preview-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-preview-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
}
.about-preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.about-preview-content {
    flex: 2;
    min-width: 300px;
    text-align: left;
}
.about-preview-content .btn-secondary {
    display: inline-block;
}

/* Proyek & Layanan Highlight (Slider) */
.home-section.project-highlight {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.project-highlight h2 {
    margin-bottom: 40px;
    font-size: 2.2em;
    color: #002244;
}
.project-slider .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.project-slide-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 280px;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.project-slide-item:hover {
    transform: scale(1.05);
}
.project-slide-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: none;
    -webkit-filter: none;
}
.partnership-slider.project-slider .slide img {
    filter: none;
    -webkit-filter: none;
}
.project-slide-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.1em;
    color: #002244;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-slider .slide-track {
    width: calc(300px * 14);
    animation: scroll 40s linear infinite;
}
.project-slider:hover .slide-track {
    animation-play-state: paused;
}

/* Berita Highlight */
.news-highlight {
    background-color: #f9f9f9;
    padding: 60px 0;
}
.news-highlight h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #002244;
}
.news-highlight-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-card-content span {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
    display: block;
}
.news-card-content h3 {
    font-size: 1.25rem;
    color: #002244;
    margin-bottom: 15px;
}
.news-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}
.news-card-content a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: color 0.3s ease;
}
.news-card-content a:hover {
    color: #003366;
}

/* Footer */
.footer-main {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 60px 0 20px;
}
.footer-top {
    text-align: center;
    margin-bottom: 40px;
}
.footer-top h3 { font-size: 1.8rem; }
.partnership-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}
.slide-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
}
.slide {
    width: 200px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide img {
    max-width: 100%;
    opacity: 1;
    transition: transform 0.3s ease;
}
.slide img:hover {
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 5)); }
}
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--secondary-color);
    margin-top: 40px;
}
.footer-contact h4, .footer-map h4 { font-size: 1.5rem; margin-bottom: 15px; }
.footer-contact p { margin-bottom: 10px; }
.footer-contact p i { margin-right: 10px; width: 20px; text-align: center;}
.social-media { margin-top: 20px; }
.social-media a {
    color: var(--light-text-color);
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-media a:hover { color: var(--accent-color); }
.footer-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);
    margin-top: 20px;
}

/* Berita & Lainnya */
.news-highlight .news-list, .project-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-card, .project-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.news-card img, .project-card img {
    width: 100%;
    display: block;
}
.news-content, .project-card-info { padding: 20px; }
.news-content h4, .project-card-info h3 { margin-bottom: 10px; color: var(--primary-color); }
.news-content a, .project-card-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}
.news-content a:hover, .project-card-info a:hover { text-decoration: underline; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1, .page-header h1 { font-size: 2.5rem; }
    .footer-bottom, .vision-mission { grid-template-columns: 1fr; }
    .service-item-full { flex-direction: column !important; }
    .service-item-full.reverse { flex-direction: column !important; }
}
@media (max-width: 768px) {
    :root { --sidebar-width: 280px; }
    .project-gallery { grid-template-columns: 1fr; }
    .hero h1, .page-header h1 { font-size: 2.2rem; }
}

.home-section.project-highlight {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.project-highlight h2 {
    margin-bottom: 40px;
    font-size: 2.2em;
    color: #002244;
}

.project-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card-simple {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.project-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 34, 68, 0.15);
}

.project-card-simple img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-card-simple h3 {
    padding: 20px;
    margin: 0;
    font-size: 1.25em;
    color: #002244;
}

.project-highlight .btn-secondary {
    display: inline-block;
    margin-top: 20px;
}
.project-slider .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.project-slide-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 280px;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.project-slide-item:hover {
    transform: scale(1.05);
}

.project-slide-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: none;
    -webkit-filter: none;
}
.partnership-slider.project-slider .slide img {
    filter: none;
    -webkit-filter: none;
}

.project-slide-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.1em;
    color: #002244;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slider .slide-track {
    width: calc(300px * 14);
    animation: scroll 40s linear infinite;
}

.project-slider:hover .slide-track {
    animation-play-state: paused;
}

.slide-track img {
    width: 200px;
    height: auto;
    margin: 0 40px;
    transition: transform 0.3s ease;
}

.slide-track img:hover {
    transform: scale(1.05);
}

.home-section.stats-counter {
    padding: 60px 20px;
    background-color: #002244;
    color: #fff;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 3em;
    color: #40E0D0;
    margin-bottom: 15px;
}

.stat-item .counter {
    display: block;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
.home-section.about-preview,
.home-section.services-spotlight {
    text-align: center;
}

.about-preview-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-preview-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.about-preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-preview-content {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.about-preview-content .btn-secondary {
    display: inline-block;
}

@media (max-width: 768px) {
    .about-preview-layout {
        flex-direction: column;
        gap: 30px;
    }

    .about-preview-content {
        text-align: center;
    }
}

.news-highlight {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.news-highlight h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #002244;
}

.news-highlight-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-content span {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

.news-card-content h3 {
    font-size: 1.25rem;
    color: #002244;
    margin-bottom: 15px;
}

.news-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.news-card-content a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.news-card-content a:hover {
    color: #003366;
}

.news-highlight .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.whatsapp-fab {
    position: fixed;
    width: 300px;
    height: auto;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
    background: none; 
    border: none;
    box-shadow: none;
    padding: 0;
}

.whatsapp-fab img {
    width: 100%;
    height: auto;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #ccc;
    position: fixed;
    top: 0;
    z-index: 2000;
}

.progress-bar {
    height: 5px;
    background: #0056b3;
    width: 0%;
}

.article-hero-header {
    position: relative;
    width: 100%;
    height: 60vh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.article-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    width: 100%;
}

.article-meta {
    background-color: #0056b3;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.article-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.article-publish-date {
    font-size: 1rem;
    opacity: 0.9;
}

.article-layout {
    display: flex;
    gap: 40px;
    padding-top: 50px;
}

.article-body {
    flex: 3;
}

article .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

article p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

article blockquote {
    border-left: 4px solid #0056b3;
    padding-left: 25px;
    margin: 30px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
}

article blockquote footer {
    margin-top: 10px;
    font-size: 1rem;
    font-style: normal;
    color: #777;
}

.article-sidebar {
    flex: 1;
}

.sticky-sidebar {
    position: sticky;
    top: 40px;
}

.share-widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.share-widget h4 {
    margin-bottom: 15px;
    color: #002244;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.share-btn:hover {
    transform: scale(1.1);
}
.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter { background-color: #1DA1F2; }
.share-btn.linkedin { background-color: #0A66C2; }
.share-btn.whatsapp { background-color: #25D366; }

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transform: translateY(20px);
}
.fade-in-up {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transform: translateY(40px);
}
.fade-in.is-visible,
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .article-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .article-hero-header {
        height: 45vh;
    }

    .article-layout {
        flex-direction: column;
        gap: 0;
    }

    .article-sidebar {
        margin-top: 40px; 
    }

    .sticky-sidebar {
        position: static;
        top: auto;
    }

    article p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .whatsapp-fab {
        display: block;
        position: fixed; 
        z-index: 1000;
        width: 180px;
        height: auto;
        bottom: 20px;
        right: 20px;
    }
}

.article-featured-image {
    padding: 0;
    margin-top: -80px; 
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.article-featured-image img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
    box-sizing: border-box;
}

.article-layout {
    display: flex;
    gap: 40px;
    padding-top: 0;
}

@media (max-width: 768px) {
    .article-featured-image {
        margin-top: -50px;
        padding-bottom: 30px;
    }

    .article-featured-image img {
        border-width: 3px;
    }
}

.video-embed-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-embed-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; 
}

.video-embed-container iframe,
.video-embed-container blockquote {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

@media (max-width: 768px) {
    .news-highlight-container {
        grid-template-columns: 1fr;
    }

    .news-highlight h2 {
        font-size: 2rem;
    }
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 30px 0;
}

.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2.5rem;
    color: #002244;
    margin-bottom: 20px;
}
.about-text p {
    line-height: 1.8;
}

.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #002244;
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.team-card img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    transform: translateY(30%);
    transition: transform 0.4s ease;
}
.team-card:hover .team-info {
    transform: translateY(0);
}

.team-social {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.team-social a:hover {
    color: #ffc107;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }
}

.services-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-page .section-title {
    margin-bottom: 15px;
}
.services-page .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.layanan-interaktif-container {
    display: flex;
    gap: 50px;
}

.layanan-deskripsi-scroll {
    flex: 1;
    width: 50%;
}

.deskripsi-item {
    padding: 30px;
    margin-bottom: 50vh;
    min-height: 250px;
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}
.deskripsi-item:last-child {
    margin-bottom: 0;
}

.deskripsi-item.is-active {
    background-color: #ffffff;
    border-color: var(--primary-color);
}

.deskripsi-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.deskripsi-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.layanan-gambar-sticky {
    flex: 1;
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gambar-wrapper {
    width: 100%;
    height: 70vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

/* ========================================= */
/* ==   STYLE BARU HALAMAN LAYANAN PARALLAX == */
/* ========================================= */

/* Menghapus padding default agar parallax menempel di tepi */
.services-page-parallax {
    padding: 0; 
}

.parallax-section {
    position: relative;
    height: 75vh; /* Tinggi setiap bagian layanan */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.parallax-bg {
    position: absolute;
    top: -50%; /* Trik agar parallax bisa bergerak naik-turun */
    left: 0;
    width: 100%;
    height: 200%; /* Dibuat 2x lebih tinggi dari .parallax-section */
    background-size: cover;
    background-position: center;
    z-index: -1; /* Letakkan di paling belakang */
}



.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 800px; /* Batas lebar konten */
    background-color: rgba(0, 0, 0, 0.2); /* Sedikit latar belakang transparan */
    border-radius: 12px;
    backdrop-filter: blur(5px); /* Efek blur (opsional, tapi keren) */
    -webkit-backdrop-filter: blur(5px);
}

.parallax-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color); /* Teks menjadi biru tua */
}

.parallax-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #FFFFFF; /* Teks menjadi putih */
    font-weight: 600; /* Teks menjadi tebal (bold) */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); /* INI KUNCINYA: Menambah bayangan hitam pekat di belakang teks */
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .parallax-section {
        height: 60vh;
    }
    .parallax-content h3 {
        font-size: 2.2rem;
    }
    .parallax-content p {
        font-size: 1rem;
    }
}
/* ========================================= */
/* ==   STYLE SESI CALL TO ACTION      == */
/* ========================================= */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 80px 20px;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* =============================================== */
/* == STYLE BARU HALAMAN PENGALAMAN (TIMELINE SLIDER) == */
/* =============================================== */
.experience-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.experience-page .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

.timeline-track {
    display: flex;
    position: relative;
    padding: 20px 0;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Animasi slide dengan efek 'bounce' */
}

/* Garis linimasa horizontal di tengah */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
}

.timeline-item {
    flex: 0 0 300px; /* Lebar setiap item/slide */
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease;
}
.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
}

/* Membuat konten berselang-seling di atas dan di bawah garis */
.timeline-item:nth-child(odd) .timeline-content {
    bottom: 60px;
}
.timeline-item:nth-child(even) .timeline-content {
    top: 60px;
}

.timeline-date {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.timeline-content p strong {
    color: #333;
}

/* Tombol Navigasi */
.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}
.timeline-nav:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.timeline-nav.prev {
    left: 15px;
}
.timeline-nav.next {
    right: 15px;
}
.timeline-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .timeline-item {
        flex: 0 0 80%; /* Lebar item lebih besar di HP */
    }
    .timeline-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-nav.prev { left: 5px; }
    .timeline-nav.next { right: 5px; }
}
/* =============================================== */
/* ==   STYLE BARU MENGGUNAKAN SWIPER.JS   == */
/* =============================================== */
.experience-page {
    background-color: var(--bg-light);
}
.experience-slider {
    width: 100%;
    padding: 20px 0 50px 0; /* Ruang untuk pagination */
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.exp-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    width: 100%;
    height: 220px; /* Tinggi kartu dibuat sama */
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}
.swiper-slide-active .exp-card {
    border-top-color: var(--accent-color);
    transform: scale(1.05);
}
.exp-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 15px;
}
.exp-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.exp-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}
.exp-card p i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Kustomisasi Navigasi Swiper */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
/* ================================================= */
/* ==   STYLE FINAL HALAMAN K3 & LINGKUNGAN      == */
/* ================================================= */

.k3-page {
    background-color: #fff;
}

/* Layout Split (Gambar & Teks) */
.k3-layout-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.k3-layout-split.reverse {
    flex-direction: row-reverse;
}
.k3-image-container {
    flex: 1;
    min-width: 40%;
}
.k3-image-container img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.k3-content-container {
    flex: 1.5;
}
.k3-content-container h2 {
    text-align: left;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.k3-content-container > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.principle-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
}
.principle-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Pusat Komitmen Interaktif (dengan Perbaikan Final) */
.commitment-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.commitment-section .section-title {
    margin-bottom: 0;
}
.commitment-hub-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    min-height: 400px;
}
.commitment-hub {
    flex: 1;
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}
.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}
.hub-center i { font-size: 2.5rem; margin-bottom: 10px; }
.hub-hotspot {
    position: absolute;
    top: 50%; left: 50%; width: 70px; height: 70px;
    background-color: #fff; border-radius: 50%;
    box-shadow: var(--box-shadow); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--secondary-color);
    cursor: pointer; z-index: 4;
    transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1)) translateX(140px) rotate(var(--angle));
    transition: all 0.3s ease;
}
.hub-hotspot:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1)) translateX(150px) rotate(var(--angle)) scale(1.1);
}
.hub-details { flex: 1.5; }
.hub-detail-item { display: none; animation: fadeIn 0.5s ease; }
.hub-detail-item.active { display: block; }
.hub-detail-item h4 { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo & Sertifikasi */
.k3-logos-section { padding: 80px 0; }
.logo-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-gallery img { height: 80px; opacity: 0.7; transition: opacity 0.3s ease; }
.logo-gallery img:hover { opacity: 1; }

/* Penyesuaian Mobile */
@media (max-width: 992px) {
    .k3-layout-split { flex-direction: column !important; }
    .k3-content-container h2 { text-align: center; }
    .commitment-hub-container { flex-direction: column; text-align: center; gap: 40px; }
}
@media (max-width: 768px) {
    .principles-grid { grid-template-columns: 1fr; }
}
/* ================================================= */
/* ==   STYLE BARU - AKORDEON KOMITMEN K3       == */
/* ================================================= */
.commitment-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.commitment-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    width: 100%;
    background-color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
    position: relative; /* <-- TAMBAHKAN INI */
    z-index: 2;         /* <-- DAN INI */
}
.accordion-header:hover {
    background-color: #f9f9f9;
}
.accordion-header > i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}
.accordion-header span {
    flex-grow: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}
.accordion-header .icon-toggle {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.accordion-item.active .accordion-header .icon-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
}
.accordion-content p {
    padding: 0 25px 20px 70px;
    font-size: 1rem;
    line-height: 1.7;
}
@media (max-width: 992px) {
    .k3-image-container {
        width: 100%; /* Paksa lebar kontainer jadi 100% di HP */
        min-width: unset; /* Hapus aturan min-width dari desktop */
        max-width: 500px; /* Batasi lebar maks gambar agar tidak terlalu besar di tablet */
    }
}

/* 2. Pastikan gambar itu sendiri responsif */
.k3-image-container img {
    max-width: 100%; /* Pastikan gambar tidak pernah lebih lebar dari kontainernya */
    height: auto; /* Jaga rasio aspek gambar agar tidak gepeng */
    display: block; /* Hapus spasi ekstra di bawah gambar */
    margin: 0 auto; /* Pusatkan gambar di tengah kontainernya */
}


/* ================================================= */
/* ==   SEMUA STYLE BARU UNTUK HALAMAN-HALAMAN     == */
/* ================================================= */

/* STYLE HALAMAN LAYANAN (PARALLAX) */
.services-page-parallax { padding: 0; }
.parallax-section { position: relative; height: 75vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.parallax-bg { position: absolute; top: -50%; left: 0; width: 100%; height: 200%; background-size: cover; background-position: center; z-index: -1; }
.parallax-content { position: relative; z-index: 1; text-align: center; padding: 20px; max-width: 800px; background-color: rgba(0, 0, 0, 0.2); border-radius: 12px; }
.parallax-content h3 { font-size: 3rem; margin-bottom: 15px; color: var(--primary-color); }
.parallax-content p { color: #FFFFFF; font-weight: 600; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); }

/* STYLE HALAMAN PENGALAMAN (SWIPER) */
.experience-page { background-color: var(--bg-light); }
.experience-slider { width: 100%; padding: 20px 0 50px 0; }
.exp-card { background: #fff; border-radius: var(--border-radius); box-shadow: var(--box-shadow); padding: 25px; width: 100%; height: 220px; border-top: 5px solid var(--primary-color); transition: all 0.3s ease; }
.swiper-slide-active .exp-card { border-top-color: var(--accent-color); transform: scale(1.05); }
.exp-card h4 { font-size: 1.3rem; color: var(--primary-color); }
.slider-controls { display: flex; justify-content: center; align-items: center; margin-top: 30px; gap: 20px; }
.slider-controls .swiper-button-next, .slider-controls .swiper-button-prev { position: static; width: 45px; height: 45px; margin: 0; background-color: #fff; border: 1px solid #ddd; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); color: var(--primary-color); }
.slider-controls .swiper-button-next::after, .slider-controls .swiper-button-prev::after { font-size: 18px; font-weight: bold; }
.slider-controls .swiper-pagination { position: static; width: auto; }

/* STYLE HALAMAN K3 (AKORDEON & LAYOUT) */
.k3-layout-split { display: flex; gap: 50px; align-items: center; margin-bottom: 80px; }
.k3-layout-split.reverse { flex-direction: row-reverse; }
.k3-image-container { flex: 1; }
.k3-image-container img { width: 100%; max-width: 500px; height: auto; display: block; margin: 0 auto; border-radius: var(--border-radius); }
.k3-content-container { flex: 1.5; }
.k3-content-container h2 { text-align: left; font-size: 2.5rem; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.principle-item { display: flex; align-items: flex-start; gap: 15px; }
.principle-item i { font-size: 1.8rem; color: var(--accent-color); }
.principle-item h4 { color: var(--secondary-color); }
.commitment-section { padding: 80px 0; background-color: var(--bg-light); }
.commitment-accordion { max-width: 800px; margin: 0 auto; border-radius: var(--border-radius); box-shadow: var(--box-shadow); overflow: hidden; }
.accordion-item { border-bottom: 1px solid #e0e0e0; }
.accordion-header { width: 100%; background-color: #fff; padding: 20px 25px; display: flex; align-items: center; gap: 15px; cursor: pointer; border: none; text-align: left; }
.accordion-header span { flex-grow: 1; font-size: 1.2rem; font-weight: 600; }
.accordion-header .icon-toggle { transition: transform 0.4s ease; }
.accordion-item.active .accordion-header .icon-toggle { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-content p { padding: 0 25px 20px 70px; }
.k3-logos-section { padding: 80px 0; }
.logo-gallery { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-gallery img { height: 80px; opacity: 0.7; }

/* ================================================= */
/* == GABUNGAN KODE FINAL HALAMAN SERTIFIKASI == */
/* ================================================= */
.sertif-group {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}
.sertif-info-text {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.sertif-info-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.sertif-info-text p {
    font-size: 1rem;
    color: #555;
    max-width: 100%;
    margin: 0 auto;
}

/* Konfigurasi Swiper */
.sertif-slider {
    width: 100%;
    height: 500px;
    position: relative;
}

/* Kunci utama: Memusatkan gambar */
.sertif-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

/* Memastikan elemen link dan gambar berada di tengah */
.sertif-slider .swiper-slide a {
    display: flex; /* Ganti 'block' menjadi 'flex' untuk pemusatan */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.sertif-slider .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Navigasi dan Pagination Swiper */
.sertif-slider .swiper-button-next,
.sertif-slider .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.sertif-slider .swiper-button-next:hover,
.sertif-slider .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
}
.sertif-slider .swiper-pagination-fraction {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Perbaikan untuk wrapper */
.swiper-wrapper {
    width: 100%;
    transform: translate3d(0, 0, 0); /* Mengatasi bug rendering */
}

/* Perbaikan Responsif */
@media (max-width: 992px) {
    .k3-layout-split { flex-direction: column !important; }
}
@media (max-width: 768px) {
    .principles-grid { grid-template-columns: 1fr; }
    .sertif-slider { height: 400px; }
}
/* ================================================= */
/* == STYLE GALERI PROYEK == */
/* ================================================= */
.project-gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.short-desc {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}


/* ================================================= */
/* == STYLE GALERI PROYEK FINAL == */
/* ================================================= */
.project-gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.gallery-item:active { /* Menambahkan pseudo-class :active untuk perangkat sentuh */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:active img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay,
.gallery-item:active .item-overlay {
    transform: translateY(0);
}

.short-desc {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}


/* ================================================= */
/* == STYLE POP-UP FINAL (MOBILE-FRIENDLY) == */
/* ================================================= */
.project-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
    overflow-y: auto; /* Memungkinkan scrolling di dalam pop-up */
}

.project-popup.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    width: 95%; /* Menggunakan lebar yang lebih kecil untuk mobile */
    max-width: 900px;
    margin: 20px; /* Menambahkan margin untuk jarak dari tepi layar */
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.project-popup.active .popup-content {
    transform: scale(1);
}

.close-btn {
    position: sticky; /* Menempel di atas saat discroll */
    top: 10px;
    left: 100%; /* Menempatkan tombol di kanan atas */
    transform: translateX(-100%);
    font-size: 30px;
    color: #888;
    cursor: pointer;
    background-color: #fff; /* Latar belakang agar terlihat di atas konten */
    padding: 5px;
    border-radius: 50%;
    z-index: 1001;
}
.close-btn:hover {
    color: #333;
}

.popup-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.popup-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.popup-text h3 {
    font-size: 1.5rem; /* Ukuran font lebih kecil untuk mobile */
    color: var(--primary-color);
    margin-top: 0;
}

.popup-text p {
    font-size: 0.9rem; /* Ukuran font lebih kecil untuk mobile */
    line-height: 1.6;
    color: #555;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.project-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
}
.container {
    max-width: 1200px; /* Atau sesuai dengan desain Anda */
    margin: 0 auto;
    padding: 0 15px; /* Menambahkan padding untuk menjaga konten dari tepi layar */
}
/* Responsif untuk pop-up - Layout Desktop */
@media (min-width: 768px) {
    .popup-content {
        width: 90%;
    }
    .popup-body {
        flex-direction: row;
        gap: 20px;
    }
    .popup-image-container {
        flex: 1;
    }
    .popup-text {
        flex: 1;
    }
    .close-btn {
        position: absolute; /* Kembali ke posisi absolute di desktop */
        top: 15px;
        right: 25px;
        transform: none;
        background-color: transparent;
        padding: 0;
    }
    .popup-text h3 {
        font-size: 1.8rem; /* Mengembalikan ukuran font desktop */
    }
    .popup-text p {
        font-size: 1rem; /* Mengembalikan ukuran font desktop */
    }
}
/* ================================================= */
/* == STYLE SESI TESTIMONI == */
/* ================================================= */
.testimonials-section {
    padding: 60px 0;
    background-color: #f7f9fc;
}

.testimonials-slider {
    overflow: hidden; /* Menyembunyikan testimoni yang keluar dari area pandang */
    white-space: nowrap; /* Mencegah card turun ke baris baru */
    position: relative;
    max-width: 100%;
}

.testimonial-slide-track {
    display: flex; /* Menampilkan card secara horizontal */
    width: calc(300px * 40); /* 20 card asli + 20 card duplikasi */
    animation: scroll-left 40s linear infinite;
}

.testimonial-card {
    display: inline-block;
    flex-shrink: 0;
    width: 300px; /* Lebar setiap card */
    margin: 0 15px;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: normal;
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Mengatur ulang animasi saat hover untuk menghentikan pergerakan */
.testimonials-slider:hover .testimonial-slide-track {
    animation-play-state: paused;
}

/* Animasi geser */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ================================================= */
/* == STYLE GALERI UNIT CMK == */
/* ================================================= */
.unit-gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.gallery-item:active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.item-info {
    padding: 15px;
    text-align: center;
}

.unit-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 5px;
}

.unit-function {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* ================================================= */
/* == STYLE POP-UP (SAMA DENGAN PROYEK SEBELUMNYA) == */
/* ================================================= */
/* Gunakan kode CSS pop-up yang sudah kita buat sebelumnya untuk halaman proyek. */
/* Kode tersebut sudah mobile-friendly dan responsif. */
/* ================================================= */
/* == STYLE HALAMAN BERITA == */
/* ================================================= */
.news-list-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-card-content span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.news-card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.news-card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px;
}
.news-card.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.read-more {
    display: inline-block;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}
/* ================================================= */
/* == STYLE HALAMAN KONTAK BARU == */
/* ================================================= */
.contact-page-new {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card .card-content h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #333;
}

.contact-card .card-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.whatsapp-card {
    background-color: #25D366;
    color: #fff;
}
.whatsapp-card .card-icon {
    color: #fff;
}
.whatsapp-card .card-content h3, .whatsapp-card .card-content p {
    color: #fff;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #fff;
    color: #25D366;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.whatsapp-btn:hover {
    background-color: #e6e6e6;
}

.map-social-section {
    padding: 60px 0;
}

.map-social-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.map-container h2, .social-media-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link.youtube { background-color: #FF0000; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #9c23bc, #6d42c3, #5744c8, #405de6); }
.social-link.linkedin { background-color: #0077b5; }
.social-link.facebook { background-color: #1877f2; }
.social-link.twitter { background-color: #1DA1F2; }
.social-link.tiktok { background-color: #000; }

@media (min-width: 768px) {
    .map-social-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================== */
/* === STYLE POP-UP BAHASA MULAI === */
/* ================================== */

/* Lapisan Latar Belakang (Overlay) */
.language-popup-overlay {
    position: fixed; /* Tetap di layar bahkan saat di-scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Warna hitam transparan */
    z-index: 1000; /* Pastikan berada di atas konten lain */
    display: none; /* Sembunyikan secara default */
    justify-content: center;
    align-items: center;
}

/* Kotak Pop-up */
.language-popup-box {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
}

.language-popup-box h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

.language-popup-box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

/* Tombol Pilihan Bahasa */
.language-options {
    display: flex;
    justify-content: center;
    gap: 15px; /* Jarak antar tombol */
}

.lang-btn {
    padding: 12px 25px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    color: #333;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.lang-btn:hover {
    background-color: #007bff; /* Warna biru saat disentuh mouse */
    color: #ffffff;
    border-color: #007bff;
}

/* Tombol Close (X) */
.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
}

/* Class 'active' untuk menampilkan pop-up dengan JavaScript */
.language-popup-overlay.active {
    display: flex;
}

/* ================================ */
/* === STYLE POP-UP BAHASA SELESAI === */
/* ================================ */