:root {
    --primary: #FFD700; /* Kuning emas */
    --black: #000000; /* Hitam */
    --light: #b3b3b3; /* Putih */ 
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --accent: #FFC107; /* Kuning lebih terang */

    --w-20: 20%;
    --w-25: 25%;
    --w-30: 33.333%;
    --w-50: 50%;
    --w-100: 100%;

}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--light);
    font-size: 14px;
}
.container {
    max-width: 1024px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 480px;
    }
}


a {
    text-decoration: none;
}

.ratio-9x16 {
    --bs-aspect-ratio: 177.77%; /* 16:9 terbalik untuk vertikal */
}


/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.video-thumbnail img {
    width: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: #000;
    font-size: 24px;
    margin-left: 3px;
}

.video-thumbnail:hover .play-button {
    background: #ffc107;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 20px 15px 15px;
}

.video-overlay h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-overlay small {
    opacity: 0.8;
    font-size: 0.75rem;
}

.video-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Swiper customization */
.mySwiperVideoThumbs {
    padding: 20px 0;
}

.mySwiperVideoThumbs .swiper-slide {
    width: 300px;
}

/* Modal customization */
#videoModal .modal-content {
    background: #1a1a1a;
    border: 1px solid #333;
}

#videoModal .modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

#videoContainer iframe {
    border: none;
    border-radius: 0 0 10px 10px;
}

.video-category-filter {
    margin-bottom: 20px;
}

.category-btn {
    background: #252525;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

@media (max-width: 768px) {
    .mySwiperVideoThumbs .swiper-slide {
        width: 280px;
    }
    
    .video-thumbnail img {
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin: 2px;
    }
}






.section-title {
    background: linear-gradient(to right, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.accordion-button {
    font-size: 1rem;
    color: var(--light);
    font-size: 15px;
}
.accordion-item {
    background-color: var(--black);
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    border: none;
}
.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--black);
    font-weight: 600;
}
.accordion-button:focus {
    box-shadow:none;
}
.accordion-item:first-of-type {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    overflow: hidden;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
    overflow: hidden;
}
.swiper {
    /* width: 100%;
    height: 100%; */
}

.swiper-slide {
}

.swiper-slide img {
    /* display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; */
}

.mySwiperAuto .swiper-slide{ width: 65%;}
.mySwiperAuto .swiper-slide:nth-child(2n){ width: 65%;}
.mySwiperAuto .swiper-slide:nth-child(3n){ width: 65%;}

@media (max-width: 768px) {
    .mySwiperAuto .swiper-slide{ width: 85%;}
    .mySwiperAuto .swiper-slide:nth-child(2n){ width: 85%;}
    .mySwiperAuto .swiper-slide:nth-child(3n){ width: 85%;}
}











/* 
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://jagoanseragam.com/landing/banner1.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--light);
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}
.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .hero {
        height: auto !important;
        padding: 80px 0 !important;
    }
    .trust-number {
        font-size: 2rem;
    }
}
 */






.section-title h2 {
    color: var(--light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}
.section-title p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 20px auto 0;
}



.about-text h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.values {
    margin-top: 30px;
}

.value-item {
    display: flex;
    margin-bottom: 20px;
}

.value-icon {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    display: block;
}















.client-thumb img {
    max-height: 80px;
}
.client-thumb {
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100px;
    display: inline-flex;
    width: 100%; 
    align-items: center;
    justify-content: center;
}






.service-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-gray);
}
.service-card h5 {
    color: var(--white);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 30px;
}
.detail-item {
    display: flex;
}

.detail-label {
    min-width: 100px;
    color: var(--primary);
    font-weight: 600;
}





















/* Testimonials */
.testimonials {
    background: var(--dark-gray);
}

.testimonial-container {
    /* max-width: 800px; */
    /* margin: 0 auto; */
}

.testimonial-card {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 20px;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: var(--primary);
}

.author-info h4 {
    color: var(--light);
    margin-bottom: 5px;
}

.author-info p {
    color: #b0b0b0;
}

.rating {
    color: var(--primary);
    margin-top: 10px;
}















.urgency-banner {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #000;
    font-weight: 600;
    padding: 8px 0;
    font-size: 0.9rem;
}

.pain-points {
    background: #1a1a1a;
    padding: 60px 0;
}

.pain-item {
    background: #252525;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ffc107;
}

.lead-magnet {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
}


.client-logos {
    transition: opacity 0.3s;
}

.client-logos:hover {
}

.real-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.stats-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px; */
}

.stat-card {
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
}



















/* Process */
.process {
    /* background: var(--medium-gray); */
}

.process-steps {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: row;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary);
    z-index: 1;
}
.process-step {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
    min-width: auto;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--black);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 20px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 18px;
}




@media (max-width: 992px) {
    .process-steps {
        flex-wrap: nowrap;
        gap: 14px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        text-align: left;
        min-width: 220px;
        background: #2b3035;
        padding: 24px;
    }
    .step-number {
        margin: 0 0 20px;
    }
}









/* Footer */
footer {

}

footer a {
    color: var(--light);
}
footer a:hover {
    color: var(--white);
}


.footer-column .title {
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
    font-size: 15px;
    color: var(--bs-light);
}
.footer-column .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
}




/* Social Media */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--medium-gray);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}




/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 42px;
    height: 42px;
    bottom: 14px;
    right: 14px;
    background-color: #149043;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px #00000080;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
