:root {
    --color-background: #cfe4ff; /* Warna latar belakang */
    --color-background-seondary:#F6F6F6;
    --color-primary: #AFCFF4; /* Warna utama */
    --color-text: #333; /* Warna teks */
    --color-button: #4891E1; /* Warna tombol */
    --color-button-secondary:#FF5100;
    --gradient-background: linear-gradient(135deg, var(--color-background), var(--color-primary)); /* Gradien latar belakang */

    --spacing-large: 55px; /* Padding besar */
    --spacing-medium: 20px; /* Padding sedang */
    --spacing-small: 10px; /* Padding kecil */

    --border-radius-large: 50px; /* Border radius besar */
    --border-radius-medium: 20px; /* Border radius sedang */
    --border-radius-small: 10px; /* Border radius sedang */

    --tc-orange: #FF6100;
    --tc-yellow: #FFA500;
    --tc-green: #2F9251;
    --tc-gray: #757575;
    --tc-black: #212121;
}


.fa-star{
    color: var(--color-button-secondary);
}

/* Modal styles */
.modal-content {
    min-height: 100vh;
}

.btn-close-white {
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 1050;
    opacity: 1;
}

/* Thumbnail styles */
.thumbnails {
    display: flex;
    margin: 1rem auto;
    padding: 0;
    justify-content: center;
    gap: 0.5rem;
}

.thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
    border-radius: 4px;
}

.thumbnail.is-active {
    opacity: 1;
    border-color: #fff;
}

.thumbnail {
    width: 176px;
    height: 176px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

/* TESTIMONIAL */
.testimonial {
    background: var(--color-background);
    padding: 61px;
    margin-top: var(--spacing-small);
    color: var(--color-text);
}

.arrow-left {
    margin-left: -23px;
}

.arrow-left, .arrow-right {
    cursor: pointer;
}

.bg-driver{
    margin-top: -300px;
    z-index: -9999;
    position: relative;
}

.see-all-more {
    height: 46px;
}

.sec2_card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border: none;
    border-radius: var(--border-radius-small);
    background-color: white;
}

.sec2_card h1 p {
    margin: 0;
    padding: 0;
}

.sec2-card-transport .rating{
    font-size: 12px;
}




/* Gallery */
.gallery{
    background: #E5F3FE;
    padding: 50px 20px;
    border-radius: var(--border-radius-medium);
    margin: 43px auto;
}

.btn-galery{
    background-color: white;
    border: none;
    border-radius: var(--border-radius-medium);
    padding: 5px 20px;
}

/* VIDEO GALERRY */
.videogallery {
    background: var(--color-background);
    border-radius: var(--border-radius-medium);
    color: black;
    padding: 40px;
}

.btn-secondary{
    background-color: var(--color-button-secondary);
    border: none;
    border-radius: 20px;
}

/* TRANSPORT */
.transport {
    background-color: var(--color-background-seondary);
    border-radius: var(--border-radius-medium);
    color: black;
    position: relative;
    padding: 40px;
    margin: 43px 0;
}



.section-divider {
    display: flex;
    width: 100%;
    height: 5px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.section-divider .divider-line1 {
    height: 100%;
    width: 200px;
    background-color: #D9D9D9;
}
.section-divider .divider-line2 {
    height: 100%;
    width: 200px;
    background-color: #D9D9D9;
}

.section-divider .divider-line.active {
    width: 100px;
    height: 100%;
    background-color: var(--tc-orange);
}

.sec2-card-transport {
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    background-color: white;
}

.sec2-card-transport p {
    color: gray;
    font-size: 14px;

}

.price-line{
    width: 100%;
    height: 10px;
    background-color: var(--tc-orange);
}

.price-tag-transport {
    background-color: var(--tc-orange);
    width: fit-content;
    padding: 10px 12px;
    color: white;
    font-weight: 700;
    border-top-left-radius: 20px;
}

/* Responsive */

@media screen and (max-width: 425px) {
    .testimonial {
        padding: 20px;
        z-index: 0;
    }

    .bg-driver{
        display: none;
    }

    .transport {
        padding: 40px 10px;
    }


}

.scrollable-container {
    display: flex;
    gap: 8px;
    overflow-x: auto; 
    white-space: nowrap;
    padding-bottom: 5px;
}

.scrollable-container::-webkit-scrollbar {
    height: 6px;
}

.scrollable-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.scrollable-container::-webkit-scrollbar-track {
    background: transparent;
}
