:root {
    /* Brand colors - dibikininweb */
    --primary-color: #18A7D2; /* Biru cyan - warna utama */
    --primary-color-2: #634AE2; /* Ungu - warna sekunder */
    --light-gray: #6c757d;
    --dark-gray: #444;
    --card-bg: rgba(255,255,255,0.55);
    --card-border: rgba(255,255,255,0.18);
    --glass-overlay: rgba(255,255,255,0.22);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0ff 50%, #f5f8ff 100%);
    -webkit-font-smoothing: antialiased;
    color: #111;
    /* Optimasi scrolling untuk performa lebih baik */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

/* --- DESKTOP NAVBAR STYLES  --- */
.header-desktop {
    position: sticky;
    top: 1rem;
    z-index: 1000;
    padding: 0 1rem;
}

.navbar-custom {
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.45));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.25s ease-in-out;
    height: 65px;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* --- MOBILE NAVBAR STYLES --- */
.mobile-bottom-navbar {
    /* Positioning & Centering */
    position: fixed;
    z-index: 1000;
    bottom: 1rem;
    left: 50%; 
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);

    /* Sizing */
    width: calc(100% - 2rem); 
    max-width: 500px; 
    
    /* Visuals - Mengurangi transparansi */
    display: flex; /* Untuk menata item di dalamnya */
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    /* Hardware acceleration */
    will-change: transform;
}

.mobile-nav-item {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.65rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.2s ease;
}
        
.mobile-nav-item i {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary-color);
}
        
/* --- STATS CARD SECTION STYLES --- */
.stats-section-cards {
    background-color: transparent; 
}

/* Glassy cards used across the site */
.card,
.stat-card,
.pricing-card,
.portfolio-card,
.testimonial-card,
.info-card,
.cta-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(20,20,40,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #111;
    /* Hardware acceleration untuk performa lebih baik */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.card:hover,
.stat-card:hover,
.portfolio-card:hover,
.pricing-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 18px 50px rgba(20,20,40,0.09);
}

/* Optimasi untuk touch devices - tidak ada hover */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .stat-card:hover,
    .portfolio-card:hover,
    .pricing-card:hover {
        transform: none;
        box-shadow: 0 12px 40px rgba(20,20,40,0.06);
    }
}

.stat-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(24,167,210,0.12), rgba(99,74,226,0.08));
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.75rem;
    backdrop-filter: blur(6px);
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
        

/* Penyesuaian padding body di mobile agar konten tidak tertutup navbar bawah */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 90px; 
    }
    
    /* Optimasi performa untuk mobile - mengurangi backdrop-filter */
    .navbar-custom,
    .mobile-bottom-navbar,
    .card,
    .stat-card,
    .pricing-card,
    .portfolio-card,
    .testimonial-card,
    .info-card,
    .cta-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Mengurangi box-shadow untuk performa lebih baik */
    .card,
    .stat-card,
    .pricing-card,
    .portfolio-card,
    .testimonial-card,
    .info-card,
    .cta-card {
        box-shadow: 0 4px 15px rgba(20,20,40,0.04);
    }
    
    /* Menonaktifkan hover effects di mobile */
    .card:hover,
    .stat-card:hover,
    .portfolio-card:hover,
    .pricing-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(20,20,40,0.04);
    }
    
    /* Optimasi hero section */
    .hero-section {
        will-change: auto;
        transform: translateZ(0);
    }
    
    /* Optimasi stat card */
    .stat-card {
        will-change: auto;
    }
    
    /* Optimasi service icon */
    .service-icon {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Optimasi portfolio card */
    .portfolio-card .card-img-top {
        will-change: auto;
    }
    
    /* Optimasi pricing card */
    .pricing-card {
        will-change: auto;
    }
    
    /* Menonaktifkan animasi rocket di mobile untuk performa */
    .rocket-icon {
        animation: none;
    }
    
    .rocket-trail {
        animation: none;
    }
    
    .speed-line {
        animation: none;
        display: none;
    }
    
    /* Optimasi metric box */
    .metric-box {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Optimasi contact form */
    .contact-form .form-control,
    .contact-form .form-select,
    .contact-form .input-group-text {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,0.9);
        /* Menghilangkan transisi yang berat saat scroll */
        transition: none;
    }
    
    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        transition: border-color 0.15s ease;
        background: #ffffff;
    }
    
    /* Optimasi contact section untuk performa scrolling */
    .contact-section {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Mengurangi kompleksitas background */
        background: #f8f9fa;
    }
    
    .info-card {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Menghilangkan backdrop-filter yang berat */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,0.95);
    }
    
    .info-icon {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Optimasi form kontak - menghilangkan semua transisi saat scroll */
    .contact-form {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .contact-form .input-group {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Optimasi floating nugget */
    .floating-nugget {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(180deg, rgba(232,245,255,0.6) 0%, rgba(255,255,255,0.2) 70%);
    margin-top: -5rem;
    z-index: 1;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
        
.hero-section .display-6{
    font-weight:700;
    line-height:1.3
}
.hero-section .lead{
    color:var(--light-gray);
    font-weight:400
}
.badge-pill-custom{
    display:inline-block;
    padding:.5rem 1rem;
    font-size:.85rem;
    font-weight:600;
    color:var(--primary-color);
    background-color: rgba(24,167,210,0.08);
    border-radius:50px;
    margin-bottom:1.5rem
}
.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-2));
    border: none;
    color: #fff;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform .18s ease, box-shadow .18s ease;
    height: 50px;
    width: auto;
    box-shadow: 0 8px 30px rgba(24,167,210,0.12);
}
.btn-primary-custom:hover{
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 18px 40px rgba(24,167,210,0.12);
}

@media (hover: none) and (pointer: coarse) {
    .btn-primary-custom:hover {
        transform: none;
    }
}
.hero-illustration {
    max-width: 80%; 
    height: auto; 
}
          
/* --- ABOUT US SECTION --- */
.about-us-section {
    background-color: transparent;
}

.checklist-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.6; 
}

.about-us-section img {
    box-shadow: 0 12px 36px rgba(20,20,40,0.06); 
    border-radius: .75rem;
}

/* --- HOW WE WORK SECTION --- */
.process-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.42));
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.process-item:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 14px 36px rgba(20,20,40,0.06);
}

@media (hover: none) and (pointer: coarse) {
    .process-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Trik untuk membuat angka di background */
.process-item::before {
    content: attr(data-step); 
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 800; 
    color: rgba(0, 0, 0, 0.03); 
    z-index: 0; 
}

/* Wrapper untuk ikon dan teks */
.process-item .d-flex {
    position: relative;
    z-index: 1; 
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    color: #ffffff;
    border-radius: 1rem; 
    font-size: 2rem;
    flex-shrink: 0; 
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: transparent;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-2));
    border-radius: 5px;
    margin-top: 1rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(24,167,210,0.12), rgba(99,74,226,0.08)); 
    color: var(--primary-color);
    border-radius: 1rem;
    font-size: 2rem;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
}

.learn-more-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--primary-color-2);
    text-decoration: underline;
}

.learn-more-link i {
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(5px); 
}

/* --- PORTFOLIO SECTION --- */
.portfolio-filters .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.portfolio-filters .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24,167,210,0.2);
}

.portfolio-card .portfolio-img-wrapper {
    overflow: hidden;
}

.portfolio-card .card-img-top {
    transition: transform 0.4s ease;
    height: 220px; 
    object-fit: cover;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.portfolio-card:hover .card-img-top {
    transform: translate3d(0, 0, 0) scale(1.05); 
}

@media (hover: none) and (pointer: coarse) {
    .portfolio-card:hover .card-img-top {
        transform: none;
    }
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* --- PORTFOLIO SLIDER --- */
.portfolio-slider-wrapper {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.portfolio-slider {
    overflow: visible;
    padding-bottom: 3rem;
}

.portfolio-slide-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.portfolio-slide-item:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 15px 40px rgba(24, 167, 210, 0.2);
}

@media (hover: none) and (pointer: coarse) {
    .portfolio-slide-item:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

.portfolio-slide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Portfolio Slider Navigation */
.portfolio-slider-next,
.portfolio-slider-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(24, 167, 210, 0.3);
    transition: all 0.3s ease;
}

.portfolio-slider-next::after,
.portfolio-slider-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.portfolio-slider-next:hover,
.portfolio-slider-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 167, 210, 0.4);
}

@media (hover: none) and (pointer: coarse) {
    .portfolio-slider-next:hover,
    .portfolio-slider-prev:hover {
        transform: none;
    }
}

/* Portfolio Slider Pagination */
.portfolio-slider-pagination {
    position: relative;
    margin-top: 2rem;
}

.portfolio-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d1d1;
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-slider-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 991.98px) {
    .portfolio-slider-wrapper {
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .portfolio-slider-next,
    .portfolio-slider-prev {
        width: 40px;
        height: 40px;
        display: none; /* Sembunyikan navigation arrows di mobile */
    }
    
    .portfolio-slider-pagination {
        margin-top: 1.5rem;
    }
}

/* --- PRICING SECTION --- */
.pricing-card h4 {
    font-size: 1.25rem;
}

.pricing-card p, .pricing-card ul li {
    font-size: 0.9rem;
}

.price-display .price-amount {
    font-size: 1.4rem; 
    font-weight: 700;
    color: var(--primary-color);
}

.price-display .price-period {
    font-size: 0.9rem; 
    color: var(--light-gray);
}

.pricing-card ul li i {
    font-size: 1.1rem; 
    line-height: 1.5;
}

.highlighted-plan {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-color-2));
    color: #ffffff;
    border: none;
    transform: translateZ(0) scale(1.03);
    z-index: 10;
}

.highlighted-plan:hover {
    transform: translate3d(0, 0, 0) scale(1.05);
}

@media (hover: none) and (pointer: coarse) {
    .highlighted-plan:hover {
        transform: translateZ(0) scale(1.03);
    }
}

.highlighted-plan .price-amount,
.highlighted-plan .price-period,
.highlighted-plan p,
.highlighted-plan h4,
.highlighted-plan h6,
.highlighted-plan ul li,
.highlighted-plan ul li i {
    color: #ffffff;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: transparent;
}

.testimonial-card { padding: 1rem; }

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.rating .bi-star-fill {
    color: #ffc107; 
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
}

/* --- CONTACT SECTION --- */
.contact-section {
    /* Hardware acceleration untuk performa scrolling */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    position: relative;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(24,167,210,0.12), rgba(99,74,226,0.08));
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.75rem;
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Kustomisasi Form Kontak */
.contact-form .form-control,
.contact-form .form-select,
.contact-form .input-group-text {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.14);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    backdrop-filter: blur(6px);
    /* Hardware acceleration untuk performa lebih baik */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Mengurangi transisi yang berat */
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form .input-group-text {
    border-right: none;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    color: var(--primary-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border-left: none;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    /* Optimasi focus untuk performa */
    outline: none;
    background: rgba(255,255,255,0.8);
}

.contact-form textarea.form-control {
    border-left: none;
}

/* --- FOOTER SECTION (Revised Colors) --- */
#footer { font-size: 14px; }

#footer .footer-top { background-color: rgba(233,236,239,0.6); color: #32353a; padding: 60px 0 5px 0; }

#footer .footer-top .footer-info .logo span { color:#32353a; }

#footer .footer-top .footer-info p { font-size: 14px; padding-top: 1rem; }

#footer .footer-top .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); color:#32353a; margin-right: 10px; transition: all 0.3s ease; }

#footer .footer-top .social-links a:hover { color: #484d55; background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2)); border-color: var(--primary-color); }

#footer .footer-top h4 { font-size: 16px; font-weight: bold; color: #32353a; position: relative; padding-bottom: 12px; }

#footer .footer-top .footer-links { margin-bottom: 30px; }

#footer .footer-top .footer-links ul { list-style: none; padding: 0; margin: 0; }

#footer .footer-top .footer-links ul li { padding: 10px 0; display: flex; align-items: center; }

#footer .footer-top .footer-links ul i { padding-right: 8px; color: var(--primary-color); font-size: 12px; }

#footer .footer-top .footer-links ul a { color: #32353a; transition: 0.3s; display: inline-block; line-height: 1; text-decoration: none; }

#footer .footer-top .footer-links ul a:hover { color: #45494e; }

#footer .footer-top .footer-contact p { line-height: 26px; }

#footer .footer-bottom { background-color: rgba(233,236,239,0.6); color: #32353a; padding: 5px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); }

#footer .copyright { margin-bottom: 5px; }

#footer .credits { font-size: 13px; }

#footer .credits a { color: var(--primary-color); text-decoration: none; transition: 0.3s; }

#footer .credits a:hover { color: var(--primary-color-2); }

/* --- CTA SECTION  --- */
.cta-section { background: transparent; }

.cta-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.5));
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(20,20,40,0.06);
    overflow: hidden;
    width: 100%;
    margin: 0;
}

/* Mengatur ulang ukuran elemen di dalam card */
.cta-content h2 { font-size: 2.0rem; line-height: 1.3; }

.cta-content p.text-muted { font-size: 1rem; }

.cta-person-img { transform: scale(1.0) translateX(10px); }

.btn-outline-custom { color: var(--dark-gray); border: 1px solid rgba(0,0,0,0.06); font-weight: 500; transition: all 0.3s ease; font-size: 0.9rem; padding: 0.5rem 1rem; }

.btn-outline-custom:hover { color: var(--primary-color); border-color: var(--primary-color); background-color: rgba(24,167,210,0.06); }

.floating-nugget {
    position: absolute;
    background: rgba(255,255,255,0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.65rem 0.9rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(20,20,40,0.06);
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.14);
}

.floating-nugget .text-primary {
    color: var(--primary-color) !important;
}

/* --- Floating CS Button --- */
.floating-cs-button {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 100px; 
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2)); 
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem; /* Ukuran ikon */
    box-shadow: 2px 2px 10px rgba(24,167,210,0.3);
    z-index: 1001; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-cs-button:hover { transform: scale(1.1); box-shadow: 2px 2px 15px rgba(24,167,210,0.4); }

/* Menambahkan 'ruang' di atas section saat navigasi anchor link */
section[id] { scroll-margin-top: 100px; }

/* =========================== */
/* KLIEN & PARTNER SECTION STYLES */
/* =========================== */
#clients-partners { background-color: transparent; }

#clients-partners .client-logo { opacity: 0.85; transition: all 0.3s ease; width: auto; height: 80px; object-fit: contain; border-radius: 0.5rem; }

#clients-partners .client-logo:hover { opacity: 1; transform: scale(1.05); }

/* =========================== */
/* SERVER QUALITY SECTION STYLES */
/* =========================== */
.server-quality-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.server-quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(24,167,210,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.rocket-illustration-wrapper {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-icon {
    font-size: 8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    animation: rocketFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(24,167,210,0.2));
    /* Hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

@keyframes rocketFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
    50% { transform: translate3d(0, -15px, 0) rotate(5deg); }
}

.rocket-trail {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    width: 120px;
    height: 80px;
    background: linear-gradient(180deg, rgba(99,74,226,0.3) 0%, rgba(24,167,210,0.2) 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
    animation: trailPulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes trailPulse {
    0%, 100% { opacity: 0.6; transform: translate3d(-50%, 0, 0) scaleY(1); }
    50% { opacity: 0.9; transform: translate3d(-50%, 0, 0) scaleY(1.2); }
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.speed-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(24,167,210,0.3), transparent);
    border-radius: 2px;
    animation: speedLine 2s linear infinite;
}

.speed-line:nth-child(1) {
    left: 20%;
    top: 30%;
    animation-delay: 0s;
}

.speed-line:nth-child(2) {
    left: 50%;
    top: 40%;
    animation-delay: 0.5s;
}

.speed-line:nth-child(3) {
    left: 80%;
    top: 35%;
    animation-delay: 1s;
}

@keyframes speedLine {
    0% { transform: translate3d(0, -100px, 0) scaleY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate3d(0, 200px, 0) scaleY(1); opacity: 0; }
}

.metric-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-box:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 10px 30px rgba(24,167,210,0.15);
}

@media (hover: none) and (pointer: coarse) {
    .metric-box:hover {
        transform: none;
    }
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--light-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-2));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(24,167,210,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loading-badge:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 35px rgba(24,167,210,0.35);
}

@media (hover: none) and (pointer: coarse) {
    .loading-badge:hover {
        transform: none;
    }
}

.loading-badge i {
    font-size: 1.2rem;
}

@media (max-width: 991.98px) {
    .rocket-illustration-wrapper {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .rocket-icon {
        font-size: 6rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    /* Optimasi tambahan untuk performa scrolling */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mengurangi kompleksitas gradient di mobile */
    .hero-section {
        background: rgba(232,245,255,0.4);
    }
    
    .server-quality-section {
        background: #f0f7ff;
    }
    
    .server-quality-section::before {
        display: none;
    }
    
    /* Optimasi pricing section */
    .highlighted-plan {
        transform: translateZ(0) scale(1);
    }
}


