.service-details .service-sidebar .contact-card,
.service-details .service-sidebar .key-benefits,
.service-details .service-sidebar .service-overview {
    background: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}
.page-title {
    position: relative;
    min-height: 400px !important;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}
.page-title > .bg-slide-1,
.page-title > .bg-slide-2,
.page-title > .bg-slide-3 {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: 15s ease-in-out infinite bgFade;
    z-index: 0;
}
.page-title > .bg-slide-1 {
    background-image: url("path/to/image1.jpg");
    animation-delay: 0s;
}
.page-title > .bg-slide-2 {
    background-image: url("path/to/image2.jpg");
    animation-delay: 5s;
}
.page-title > .bg-slide-3 {
    background-image: url("path/to/image3.jpg");
    animation-delay: 10s;
}
@keyframes bgFade {
    0%,
    100% {
        opacity: 0;
    }
    10%,
    30%,
    40% {
        opacity: 1;
    }
}
.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}
.page-title .container {
    position: relative;
    z-index: 2;
    margin-top: 100px;
}
.page-title .detail-logo {
    font-size: 60px;
    color: var(--orange-color);
    animation: 0.6s ease-in-out fadeInDown;
}
.page-title h1 {
    font-size: 4rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 6px transparent;
    animation: 0.9s ease-in-out fadeInUp;
}
@media (max-width: 768px) {
    .page-title {
        min-height: 500px !important;
        padding: 20px;
        background-position: center center;
    }
    .page-title > .bg-slide-1,
    .page-title > .bg-slide-2,
    .page-title > .bg-slide-3 {
        background-position: 70% center;
    }
    .page-title h1 {
        font-size: 3rem !important;
    }
}
@media (max-width: 576px) {
    .page-title h1 {
        font-size: 2rem !important;
    }
}
.project-button-container {
    text-align: center;
    margin-top: 13px;
}
.project-button {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #007ce200, #24630000);
    border: 2px solid #fff;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 124, 226, 0);
    cursor: pointer;
}
.project-button:hover {
    background: #fff;
    color: var(--orange-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(143, 45, 0, 0.4);
}
@keyframes fadeInUp {
    0%,
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    100%,
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =============================================================
   GSPI SERVICE DETAILS SECTION STYLING
   ============================================================= */

/* --- Container & Layout --- */
#service-details.service-details {
    background-color: #f8fafb; /* Latar cerah agar konten menonjol */
    padding: 80px 0;
}

/* --- Sidebar Styling (Kiri) --- */
#service-details .service-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

#service-details .service-overview, 
#service-details .key-benefits {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Header Sidebar (Gaya Portofolio/Layanan) */
#service-details .overview-header {
    background: #144c4d; /* Warna Hijau/Biru Tua GSPI */
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#service-details .overview-header i {
    font-size: 22px;
    color: #ffffff;
}

#service-details .overview-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List Manfaat di Sidebar */
#service-details .key-benefits {
    padding: 30px;
}

#service-details .key-benefits h3 {
    color: #144c4d;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 5px solid #f8931f; /* Aksen Oranye GSPI */
    padding-left: 15px;
}

#service-details .key-benefits ul {
    list-style: none;
    padding: 0;
}

#service-details .key-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555555;
    font-size: 0.95rem;
    font-weight: 500;
}

#service-details .key-benefits ul li i {
    color: #f8931f;
    font-size: 18px;
    margin-top: 2px;
}

/* --- Content Styling (Kanan) --- */
#service-details .section-header h2 {
    color: #144c4d;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 12px;
}

#service-details .section-header .divider {
    width: 60px;
    height: 5px;
    background: #f8931f;
    border-radius: 10px;
    margin-bottom: 25px;
}

#service-details .details-content p {
    color: #636e72;
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

#service-details .details-content b {
    color: #144c4d;
}

/* --- Feature Cards (Grid Manfaat) --- */
#service-details .feature-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.35s ease;
}

#service-details .feature-card:hover {
    transform: translateY(-10px);
    border-color: #f8931f;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#service-details .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(248, 147, 31, 0.1);
    color: #f8931f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: 0.3s;
}

#service-details .feature-card:hover .icon-wrapper {
    background: #f8931f;
    color: #ffffff;
}

#service-details .feature-card h3 {
    color: #144c4d;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

#service-details .feature-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    #service-details .service-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

/* =============================================================
   GSPI SERVICE - EXAMPLE PROJECT GALLERY STYLING
   ============================================================= */

/* Container Utama */
#example-project.example-comparison {
    background-color: #ffffff; /* Latar putih bersih */
    padding: 100px 0;
    border-top: 1px solid #f0f0f0;
}

/* Judul Section */
#example-project .title {
    color: #144c4d; /* Warna Hijau/Biru Tua GSPI */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

#example-project .title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #f8931f; /* Oranye GSPI */
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Grid Gallery */
#example-project .example-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom di desktop */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Item Wrapper */
#example-project .example-viewer {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f8fafb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

/* Efek Hover Card */
#example-project .example-viewer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
#example-project .example-viewer img {
    width: 100%;
    height: 300px; /* Tinggi seragam agar rapi */
    object-fit: cover; /* Gambar tetap proporsional */
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95);
}

/* Overlay & Zoom Effect */
#example-project .example-viewer:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Dekorasi Overlay */
#example-project .gallery::after {
    content: "\f00e"; /* Icon Search FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(248, 147, 31, 0.9); /* Oranye GSPI */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

#example-project .example-viewer:hover .gallery::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    #example-project .example-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    #example-project .title {
        font-size: 2rem;
    }
    
    #example-project .example-container {
        grid-template-columns: 1fr; /* 1 kolom di HP */
        gap: 20px;
    }
    
    #example-project .example-viewer img {
        height: 250px;
    }
}

/* Potree Section Styling */
.potree-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f4f8f9, #ffffff);
}
.potree-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 650px; /* Sedikit lebih tinggi agar lega */
}
.potree-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.2);
}

/* Click to Play Overlay dengan Background Gambar */
.potree-play-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Menggunakan gambar lidar-1 sebagai background preview */
background: linear-gradient(rgba(20, 76, 77, 0.7), rgba(0, 0, 0, 0.85)), 
            url('/assets/img/services/header/lidar/load-image.webp');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    text-align: center;
    padding: 20px;
    transition: 0.5s ease;
}

.potree-play-wrapper h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.potree-play-wrapper p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Custom Tools */
#potree_container {
    width: 100%;
    height: 100%;
    display: none;
}
.gspi-tools {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    gap: 10px;
    z-index: 20;
}
.tool-btn-custom {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #144c4d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tool-btn-custom:hover {
    background: #f8931f;
    color: #fff;
    transform: translateY(-3px);
}

/* Tombol Load Utama */
#potree_load_btn {
    background: linear-gradient(135deg, #f8931f, #e67e22);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(248, 147, 31, 0.3);
}
#potree_load_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(248, 147, 31, 0.4);
}

@media (max-width: 768px) {
    .potree-wrapper { height: 450px; }
    .potree-play-wrapper h3 { font-size: 1.4rem; }
}






























:root {
    --primary-teal: #0f4c4d;
    --glass-bg: rgba(255, 255, 255, 0.85);
}
.example-slider-comparison {
    padding: 80px 20px;
    background: #0f4c4d;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container-title {
    text-align: center;
    margin-bottom: 40px;
}

.example-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.example-subtitle {
    color: #f8931f;
    font-size: 1rem;
}

.example-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #eee;
    /* Cursor diubah ke grab agar lebih user-friendly */
    cursor: grab;
}

.example-slider-wrapper:active {
    cursor: grabbing;
}

.example-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Mencegah drag gambar default browser */
}

.example-right-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    clip-path: inset(0 0 0 50%); /* Start di tengah */
    will-change: clip-path;
}

/* Handle Line */
.example-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    pointer-events: auto; /* Agar bisa di-klik sesuai JS */
}

/* Bulatan Tengah Handle */
.handle-center-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.handle-arrows::before, .handle-arrows::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.handle-arrows::before { border-right: 8px solid white; margin-right: 4px; }
.handle-arrows::after { border-left: 8px solid white; margin-left: 4px; }

/* Labels Modern */
.example-label-left, .example-label-right {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--primary-teal);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.example-label-left { left: 20px; }
.example-label-right { right: 20px; }

/* Hint Modern */
.slider-hint-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    z-index: 20;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.slider-hint-modern.hide {
    opacity: 0;
    transform: translate(-50%, 20px);
}

.hint-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet (iPad/Large Mobile) */
@media (max-width: 992px) {
    .example-slider-comparison {
        padding: 60px 15px;
    }
    
    .example-title {
        font-size: 1.75rem;
    }

    .example-slider-wrapper {
        aspect-ratio: 4 / 3; /* Lebih kotak agar gambar lebih terlihat jelas di layar sedang */
        border-radius: 16px;
    }

    .handle-center-point {
        width: 42px;
        height: 42px;
    }
}

/* Mobile (Smartphone) */
@media (max-width: 576px) {
    .example-slider-comparison {
        padding: 40px 10px;
    }

    .example-title {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .example-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.4;
    }

    .example-slider-wrapper {
        aspect-ratio: 1 / 1; /* Rasio square (1:1) adalah yang terbaik untuk navigasi jempol di HP */
        border-radius: 12px;
    }

    /* Perkecil label agar tidak menutupi terlalu banyak area gambar */
    .example-label-left, .example-label-right {
        top: 10px;
        padding: 6px 10px;
        font-size: 9px;
        border-radius: 6px;
    }
    .example-label-left { left: 10px; }
    .example-label-right { right: 10px; }

    /* Sesuaikan handle untuk sentuhan jari (Touch Area) */
    .example-slider-handle {
        width: 3px;
    }

    .handle-center-point {
        width: 38px;
        height: 38px;
        border-width: 3px;
    }

    /* Perkecil Hint */
    .slider-hint-modern {
        bottom: 15px;
        font-size: 11px;
        padding: 6px 14px;
        width: 80%; /* Agar teks tidak terpotong */
        text-align: center;
    }
}

/* Efek Hover (Hanya aktif di Desktop) */
@media (min-width: 993px) {
    .example-slider-handle:hover .handle-center-point {
        transform: translate(-50%, -50%) scale(1.1);
        transition: transform 0.2s ease;
    }
}


/* Tambahkan ini di CSS Anda */
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.7); }
    100% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

.handle-center-point {
    /* Animasi ini akan berhenti setelah user mulai menggeser (opsional) */
    animation: pulse-animation 2s infinite;
}

.example-slider-handle {
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    width: 2px; /* Lebih tipis lebih elegan */
}
















.title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
    color: #144c4d;
    font-weight: 700;
}
:root {
    --primary-teal: #0f4c4d;
    --accent-orange: #f8931f;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-soft: #f4f7f7;
}

.applications {
    padding: 100px 20px;
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif;
}

.applications-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 15px;
}

.applications-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.app-link {
    text-decoration: none;
    display: block;
    padding: 40px 30px;
    height: 100%;
}

/* Icon Styling */
.app-icon-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start; /* Aliran kiri lebih profesional untuk card */
}

.app-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.app-icon {
    width: 35px;
    height: 35px;
    position: absolute;
    transition: all 0.3s ease;
}

.app-icon.hover {
    opacity: 0;
    transform: translateY(10px);
}

/* Content Styling */
.app-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.app-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* --- HOVER EFFECTS --- */
.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 77, 0.12);
    border-color: var(--accent-orange);
}

.app-card:hover .app-icon-circle {
    background: var(--primary-teal);
    transform: rotate(-5deg);
}

.app-card:hover .app-icon.default {
    opacity: 0;
    transform: translateY(-10px);
}

.app-card:hover .app-icon.hover {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(0) invert(1); /* Membuat ikon jadi putih saat hover */
}

.app-card:hover .app-more {
    opacity: 1;
    transform: translateX(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .applications { padding: 60px 20px; }
    .applications-title { font-size: 2rem; }
    .applications-grid { grid-template-columns: 1fr; }
    .app-card { text-align: left; }
    .app-icon-container { justify-content: flex-start; }
}


/* --- Video Background Hero (Jika dipakai) --- */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4; /* Agar teks tetap terbaca */
}

/* --- Project Video Section Styling --- */
.project-video-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f4c4d;
    margin-bottom: 10px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Adjustment untuk Halaman Tanpa Slider --- */
/* Jika tidak ada slider, kita beri sedikit padding extra pada section penutup */
.example-comparison {
    padding-bottom: 100px;
}

/* Mempercantik Tombol Showcase (Sesuai standar sebelumnya) */
.showcase-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.showcase-button-hero:hover {
    background: #ffffff;
    color: #0f4c4d;
    transform: translateY(-3px);
}