/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.swal2-container {
    z-index: 9999 !important;
}

.menu .app-brand.demo {
    height: 64px;
    margin-top: 12px;
}

.app-brand-logo.demo svg {
    width: 22px;
    height: 38px;
}

.app-brand-text.demo {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.btn-outline-primary:hover {
    background-color: #4DA3FF;
    border-color: #4DA3FF;
    color: #fff;
}

.dropdown-hover-blue:hover {
    background-color: #4CACFF !important;
    color: #ffffff !important;
}

.navbar-custom {
    background-color: #2887FF !important;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
    display: block !important;
}

.demo-inline-spacing>* {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir='rtl'] .rtl-only {
    display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

.footer-card {
    background-color: #f3f4f5;
    width: 100%;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

.footer-card p {
    margin: 0;
}

.hero-title {
    font-size: clamp(48px, 6vw, 64px);
    line-height: 1.15;
}

.hero-title2 {
    font-size: clamp(38px, 6vw, 48px);
    line-height: 1.15;
}

.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-card {
    min-width: 320px;
    max-width: 320px;
    background-color: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    /* biar rapi */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.divider-line {
    width: 4px;
    height: 220px;
    background-color: #000;
}

@media (max-width: 991.98px) {
    .divider-line {
        width: 100%;
        height: 4px;
        margin: 20px 0;
    }
}

.kontak-grid {
    display: grid;
    grid-template-columns: 150px auto;
    row-gap: 10px;
    column-gap: 110px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .kontak-grid {
        display: grid;
        grid-template-columns: 150px auto;
        row-gap: 10px;
        column-gap: 35px;
        align-items: center;
    }
}

.wa-btn {
    background-color: #00FF8C;
    color: black;
    border-radius: 8px;
    padding: 8px 20px;
    transition: all 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wa-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: 0.3s;
    transform: scale(1.6);
}

.wa-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .wa-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
        transform: scale(1.6);
    }
}

.rute-container::-webkit-scrollbar {
    width: 6px;
}

.rute-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.rute-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.rute-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Custom width for Pesan Tiket button */
.btn-pesan-wrapper,
.btn-pesan {
    width: 100%;
}

@media (min-width: 992px) {

    .btn-pesan-wrapper,
    .btn-pesan {
        width: auto !important;
    }

    .route-grid {
        display: grid !important;
        grid-template-columns: 1fr 30px 1fr 1.2fr 1fr 30px 1fr;
        align-items: center;
        flex-grow: 1;
    }

    .route-item,
    .route-sebaliknya {
        text-align: center;
        word-wrap: break-word;
    }

    .route-grid>span:first-child {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .route-grid {
        grid-template-columns: 1fr 40px 1fr 1.2fr 1fr 40px 1fr;
    }
}

.rute-info-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.rute-item {
    flex: 1;
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.rute-item.rute-col-large {
    flex: 1.5;
}

.rute-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.rute-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #333;
}

@media (max-width: 768px) {
    .rute-info-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
        column-gap: 15px;
    }

    .rute-item {
        padding-right: 0;
        margin-right: 0;
        width: 100%;
    }

    .rute-item.rute-col-large {
        flex: unset;
    }

    .rute-item:not(:last-child)::after {
        display: none;
    }
}

.rute-label {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.rute-value {
    font-size: 16px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.form-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 15px;
    text-transform: none !important;
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    z-index: 9999;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f1f1f1;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f8f9fa;
    color: #0d6efd;
}


.dashboard-title {
    font-size: 26px;
    font-weight: 800;
    color: #004B87;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    font-family: 'Public Sans', sans-serif;
}

.dashboard-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background-color: #004B87;
    border-radius: 2px;
}

.subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Public Sans', sans-serif;
}

.stat-card {
    background: #fff;
    border: 1.5px solid #b2b2b2 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.chart-card {
    background: #fff;
    border: 1.5px solid #d9d9d9 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Public Sans', sans-serif;
}

@media print {
    @page {
        size: landscape;
        margin: 15mm;
    }

    /* Sembunyikan elemen navigasi, sidebar, footer, dan tombol */
    #layout-menu,
    .layout-menu,
    #layout-navbar,
    .layout-navbar,
    .footer,
    .layout-overlay,
    .drag-target,
    .modal,
    .hide-on-print,
    .hero-title2 {
        display: none !important;
        visibility: hidden !important;
    }

    /* Setel container agar transparan dan penuh */
    body,
    .layout-wrapper,
    .layout-container,
    .layout-page,
    .content-wrapper,
    .container-xxl,
    .container-xxxl,
    .container {
        background: none !important;
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    /* Styling invoice card di printout */
    .invoice-card {
        border: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .invoice-selesai {
        background-image: url('/img/bg-selesai.png') !important;
        background-size: 750px !important;
    }

    .invoice-batal {
        background-image: url('/img/bg-batal.png') !important;
        background-size: 750px !important;
    }

    /* Jaga posisi logo, nama penyedia, dan info pemesan sejajar ke samping (flex row) */
    .invoice-card .container .row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        width: 100% !important;
    }

    .invoice-card .col-lg-3 {
        flex: 0 0 25% !important;
        width: 25% !important;
        max-width: 25% !important;
        text-align: center !important;
    }

    .invoice-card .col-lg-4 {
        flex: 0 0 33.3333% !important;
        width: 33.3333% !important;
        max-width: 33.3333% !important;
    }

    .invoice-card .col-lg-5 {
        flex: 0 0 41.6667% !important;
        width: 41.6667% !important;
        max-width: 41.6667% !important;
    }

    /* Jaga styling baris info agar tetap inline */
    .info-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: baseline !important;
    }

    .info-label {
        flex: 0 0 185px !important;
        min-width: 185px !important;
    }

    .info-sep {
        flex: 0 0 24px !important;
    }

    .info-value {
        flex: 1 !important;
    }

    /* Jaga format tabel */
    .table {
        width: 100% !important;
        border-collapse: collapse !important;
    }

    .table th,
    .table td {
        background-color: transparent !important;
        color: #000 !important;
    }

    .table-borderless th,
    .table-borderless td {
        border: none !important;
    }

    .border-bottom {
        border-bottom: 1px solid #dee2e6 !important;
    }

    /* Jaga posisi biaya agar di kanan */
    .invoice-card .row.justify-content-end {
        display: flex !important;
        justify-content: flex-end !important;
    }

    /* Paksa print background warna/gambar */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* ============================================
   RIAUGO-TRAVEL LANDING PAGE STYLES
============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f9fd 0%, #d4eaf8 100%);
    padding: 70px 0 80px;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* Animated floating circles */
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    animation: bubbleFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-bubble:nth-child(1) {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -80px;
    animation-delay: 0s;
}

.hero-bubble:nth-child(2) {
    width: 220px;
    height: 220px;
    top: 10%;
    right: -60px;
    animation-delay: 2s;
}

.hero-bubble:nth-child(3) {
    width: 140px;
    height: 140px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

.hero-bubble:nth-child(4) {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 22%;
    animation-delay: 1.5s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-22px) scale(1.04);
    }
}

/* Hero text */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', 'Public Sans', sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #2563eb, #0284c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    max-width: 480px;
}

/* Stats badges */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 18px;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s;
}

.hero-stat-pill:hover {
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.15);
}

.hero-stat-pill i {
    font-size: 1.2rem;
    color: #3b82f6;
}

/* Hero car image */
.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img-wrap img {
    position: relative;
    z-index: 2;
    max-height: 370px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
    animation: carFloat 5s ease-in-out infinite;
}

@keyframes carFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-img-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Search card */
.search-card {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(196, 220, 255, 0.7) !important;
    margin-top: 40px;
}

.search-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.search-card-header .icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Input custom designs */
.search-input-group {
    position: relative;
}

.search-input-group label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 700;
    margin-bottom: 8px;
}

.search-input-group .form-control {
    border-radius: 12px !important;
    border: 1.5px solid #cbd5e1 !important;
    padding: 12px 16px 12px 42px !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    background-color: #f8fafc !important;
    transition: all 0.25s ease;
}

.search-input-group .form-control:focus {
    border-color: #3b82f6 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3.5px rgba(59, 130, 246, 0.15) !important;
}

.search-input-group .input-icon {
    position: absolute;
    left: 15px;
    top: 43px;
    color: #64748b;
    font-size: 1.25rem;
    z-index: 5;
    transition: color 0.25s ease;
}

.search-input-group .form-control:focus+.input-icon {
    color: #3b82f6;
}

/* Dropdown autocomplete */
.autocomplete-dropdown {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    background: #ffffff !important;
    margin-top: 6px !important;
    overflow-y: auto;
    max-height: 200px;
    z-index: 1050;
}

.autocomplete-item {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.autocomplete-item:hover {
    background-color: #e0f2fe !important;
    color: #0284c7 !important;
}

/* Search button gradient styling */
.btn-search-ticket {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.btn-search-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3) !important;
    filter: brightness(1.05);
}

.btn-search-ticket:active {
    transform: translateY(0);
}

/* Modern Card Styling & Interactive Layouts */
.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 10px 30px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll .card-wrapper {
    flex: 0 0 auto;
    width: 320px;
    max-width: 100%;
}

.scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1e293b;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-nav-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
}

.scroll-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

@media (max-width: 991px) {
    .scroll-nav-btn {
        display: none !important;
    }
}

.service-card {
    position: relative;
    border-radius: 24px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
}

.card-theme-blue {
    background: #ffffff !important;
    border-bottom: 5px solid #3b82f6 !important;
}

.card-theme-teal {
    background: #ffffff !important;
    border-bottom: 5px solid #0d9488 !important;
}

.card-theme-indigo {
    background: #ffffff !important;
    border-bottom: 5px solid #6366f1 !important;
}

.card-theme-purple {
    background: #ffffff !important;
    border-bottom: 5px solid #9333ea !important;
}

.card-theme-orange {
    background: #ffffff !important;
    border-bottom: 5px solid #f97316 !important;
}

.card-theme-rose {
    background: #ffffff !important;
    border-bottom: 5px solid #f43f5e !important;
}

.main-content-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 30%, #e0f2fe 70%, #f8fafc 100%) !important;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* 2D Travel Background Elements */
.main-content-section::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 3%;
    width: 320px;
    height: 320px;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M10 60 C 25 35, 45 85, 90 60' stroke='rgba(59, 130, 246, 0.05)' stroke-width='1.5' fill='none' stroke-dasharray='4,4'/%3E%3Cpolygon points='90,60 82,56 85,60 82,64' fill='rgba(59, 130, 246, 0.06)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.main-content-section::after {
    content: "";
    position: absolute;
    bottom: 8%;
    right: 3%;
    width: 350px;
    height: 350px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cpath d='M15 110 Q 70 20 125 45' stroke='rgba(59, 130, 246, 0.05)' stroke-width='1.5' fill='none' stroke-dasharray='4,4'/%3E%3Cpath d='M123 41 L127 45 L123 49 L125 45 Z' fill='rgba(59, 130, 246, 0.06)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.card-bg-icon {
    position: absolute;
    right: -15px;
    bottom: -20px;
    font-size: 8.5rem;
    color: rgba(59, 130, 246, 0.035);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .card-bg-icon {
    transform: rotate(0deg) scale(1.15);
    color: rgba(59, 130, 246, 0.07);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
}

.img-wrapper {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .img-wrapper {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.05);
}

.img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.service-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.hero-title2 {
    font-family: 'Outfit', 'Public Sans', sans-serif;
    font-weight: 800 !important;
    color: #1e293b !important;
}

/* Section badge label */
.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #dbeafe, #e0f2fe);
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* Centered scroll container when items are few */
.scroll-centered {
    justify-content: center;
}

/* Uniform card height */
.card-wrapper {
    display: flex;
}

.card-wrapper .service-card {
    width: 100%;
    min-height: 320px;
}

/* Tentang Kami cards */
.hover-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(226, 232, 240, 0.7) !important;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.hover-card:hover .icon-circle {
    background-color: #3b82f6 !important;
}

.hover-card:hover .icon-circle i,
.hover-card:hover .icon-circle iconify-icon {
    color: #ffffff !important;
}

.icon-circle {
    transition: all 0.35s ease !important;
}

.icon-circle i,
.icon-circle iconify-icon {
    transition: all 0.35s ease !important;
}

/* Floating travel SVG decorations */
.travel-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.travel-deco-1 {
    top: 5%;
    left: 1%;
    width: 180px;
}

.travel-deco-2 {
    bottom: 8%;
    right: 1%;
    width: 200px;
}

.travel-deco-3 {
    top: 40%;
    left: 0.5%;
    width: 120px;
    opacity: 0.35;
}

.travel-deco-4 {
    top: 20%;
    right: 0.5%;
    width: 130px;
    opacity: 0.35;
}

/* ============================================
   RIAUGO-TRAVEL TICKET SEARCH PAGE STYLES
============================================ */
.rute-container::-webkit-scrollbar {
    width: 6px;
}

.rute-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.rute-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.rute-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Filter styles */
.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.filter-label {
    font-weight: 800;
    font-size: 0.85rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

/* Custom Dropdown Button */
.custom-filter-dropdown {
    position: relative;
    width: 100%;
}

.filter-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    text-align: left;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.015) !important;
}

.filter-select-btn:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03) !important;
    color: #1e293b !important;
}

.filter-select-btn:focus,
.filter-select-btn[aria-expanded="true"] {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3.5px rgba(59, 130, 246, 0.12) !important;
    background-color: #ffffff !important;
}

.filter-icon {
    font-size: 1.25rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.filter-chevron {
    font-size: 1.15rem;
    color: #94a3b8;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

/* Rotate chevron when dropdown is open */
.filter-select-btn[aria-expanded="true"] .filter-chevron {
    transform: rotate(180deg);
}

/* Suppress Bootstrap default dropdown-toggle caret */
.filter-select-btn::after {
    display: none !important;
}

/* Custom Dropdown Menu */
.custom-filter-dropdown .dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
    padding: 6px !important;
    width: 100%;
    margin-top: 6px !important;
    background-color: #ffffff !important;
}

.custom-filter-dropdown .dropdown-item {
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    transition: all 0.2s ease !important;
}

.custom-filter-dropdown .dropdown-item:hover {
    background-color: #f1f5f9 !important;
    color: #1e293b !important;
}

.custom-filter-dropdown .dropdown-item.active,
.custom-filter-dropdown .dropdown-item:active {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .filter-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: auto;
    }

    .custom-filter-dropdown {
        width: auto;
        min-width: 195px;
    }
}

/* Rute Card styling */
.rute-card {
    background: #ffffff !important;
    border-radius: 18px !important;
    border: 1px solid rgba(203, 213, 225, 0.75) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.rute-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(59, 130, 246, 0.35) !important;
}

.rute-logo-container {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.015);
    transition: border-color 0.25s ease;
}

.rute-card:hover .rute-logo-container {
    border-color: rgba(59, 130, 246, 0.18);
}

.rute-logo-mobile {
    width: 68px;
    height: 68px;
    background: #ffffff;
    border: 1.2px solid #f1f5f9;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.rute-travel-title {
    font-family: 'Outfit', 'Public Sans', sans-serif;
    color: #0f172a !important;
    font-weight: 800 !important;
}

.rute-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Button Pesan Sekarang */
.btn-pesan-sekarang {
    background: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2) !important;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.btn-pesan-sekarang:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
    filter: brightness(1.05);
}

.btn-pesan-sekarang:active {
    transform: translateY(0);
}

/* Page wrapper with gradient background */
.search-page-wrapper {
    background:
        radial-gradient(circle at 5% 10%, rgba(59, 130, 246, 0.08), transparent 35%),
        radial-gradient(circle at 95% 85%, rgba(13, 148, 136, 0.06), transparent 35%),
        linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%) !important;
    min-height: calc(100vh - 120px) !important;
    width: 100%;
    margin: 0 !important;
    padding-bottom: 48px;
}

/* Search Card styling */
.search-card {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
    margin-top: 15px;
}

/* Input custom designs */
.search-input-group {
    position: relative;
}

.search-input-group label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 700;
    margin-bottom: 8px;
}

.search-input-group .form-control {
    border-radius: 12px !important;
    border: 1.5px solid #cbd5e1 !important;
    padding: 12px 16px 12px 42px !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    background-color: #f8fafc !important;
    transition: all 0.25s ease;
}

.search-input-group .form-control:focus {
    border-color: #3b82f6 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3.5px rgba(59, 130, 246, 0.15) !important;
}

.search-input-group .input-icon {
    position: absolute;
    left: 15px;
    top: 43px;
    color: #64748b;
    font-size: 1.25rem;
    z-index: 5;
    transition: color 0.25s ease;
}

.search-input-group .form-control:focus+.input-icon {
    color: #3b82f6;
}

/* Dropdown autocomplete */
.autocomplete-dropdown {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    background: #ffffff !important;
    margin-top: 6px !important;
    overflow-y: auto;
    max-height: 200px;
    z-index: 1050;
}

.autocomplete-item {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.autocomplete-item:hover {
    background-color: #e0f2fe !important;
    color: #0284c7 !important;
}

/* Search button gradient styling */
.btn-search-ticket {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.btn-search-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3) !important;
    filter: brightness(1.05);
}

.btn-search-ticket:active {
    transform: translateY(0);
}

/* ============================================
   RIAUGO-TRAVEL PENYEDIA (PROVIDER) PAGE STYLES
============================================ */
/* Hero penyedia — lebih ringkas dari hero landing */
.penyedia-hero {
    min-height: auto;
    padding: 56px 0 64px;
}

/* Logo penyedia dalam kartu putih */
.penyedia-logo-wrap {
    width: 190px;
    height: 190px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.penyedia-logo-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.24);
}

.penyedia-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Kartu kontak pengelola */
.penyedia-contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto;
}

.penyedia-contact-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.penyedia-contact-title i {
    color: #3b82f6;
    font-size: 1.15rem;
}

.penyedia-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    word-break: break-word;
}

.penyedia-contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* Tombol WhatsApp */
.wa-btn-modern {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 11px 20px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28) !important;
    transition: all 0.25s ease !important;
}

.wa-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.38) !important;
    color: #ffffff !important;
    filter: brightness(1.04);
}

.wa-btn-modern:active {
    transform: translateY(0);
}

/* Panel filter */
.filter-panel {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 16px 20px;
}

.filter-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #1e293b;
    white-space: nowrap;
}

.filter-panel-label i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.penyedia-filter-select {
    border-radius: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    background-color: #f8fafc !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    min-width: 170px;
    flex: 1 1 0;
}

.penyedia-filter-select:focus {
    border-color: #3b82f6 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3.5px rgba(59, 130, 246, 0.15) !important;
}

/* Kartu rute */
.penyedia-rute-card .card-body {
    padding: 20px 24px !important;
}

.penyedia-toggle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #3b82f6;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.penyedia-toggle-btn:hover {
    transform: scale(1.08);
    background: #2563eb;
    color: #ffffff;
}

.penyedia-toggle-btn.active {
    background: #0d9488;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25);
}

.penyedia-route-info {
    min-width: 0;
}

.penyedia-route-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.penyedia-route-city {
    font-weight: 800;
    font-size: 1.05rem;
    color: #0f172a;
}

.penyedia-route-arrow {
    color: #3b82f6;
    font-size: 1.1rem;
    display: inline-flex;
}

/* Badge nama layanan di samping titik akhir */
.penyedia-route-layanan {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1d4ed8;
    background: linear-gradient(90deg, #dbeafe, #e0f2fe);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.penyedia-route-layanan i {
    font-size: 0.95rem;
}

.penyedia-route-roundtrip {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.penyedia-route-roundtrip i {
    color: #0d9488;
    font-size: 1rem;
}

.penyedia-route-sub {
    font-weight: 600;
    color: #475569;
}

/* Harga & tombol pesan */
.penyedia-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.penyedia-price-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
}

.penyedia-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.2;
}

.penyedia-price-wrap .btn-pesan-sekarang {
    max-width: 200px;
}

/* Detail rute (expandable) */
.penyedia-detail-row {
    margin-top: 18px;
    background: #f8fafc;
    border: 1px dashed #dbe4f0;
    border-radius: 14px;
    padding: 16px;
}

.penyedia-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.penyedia-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.penyedia-detail-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    word-break: break-word;
}

/* Badge kapasitas armada */
.penyedia-seat-badge {
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
}

/* Kartu testimoni */
.testimoni-card {
    border-radius: 20px !important;
}

.testimoni-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}

.testimoni-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 1rem;
}

.testimoni-comment {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

/* Responsive penyedia */
@media (min-width: 992px) {
    .penyedia-price-wrap {
        align-items: flex-end;
    }
}

@media (max-width: 991.98px) {
    .penyedia-logo-wrap {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .penyedia-hero {
        padding: 40px 0 44px !important;
    }

    .penyedia-logo-wrap {
        width: 130px;
        height: 130px;
        margin-bottom: 12px;
    }

    /* Hero: teks nama & deskripsi di tengah agar rapi */
    .penyedia-hero .col-lg-5 {
        text-align: center;
    }

    .penyedia-hero .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .penyedia-hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .penyedia-contact-card {
        max-width: 100%;
    }

    .penyedia-rute-card .card-body {
        padding: 16px !important;
    }

    .penyedia-rute-container {
        max-height: none !important;
        overflow-y: visible !important;
    }

    .penyedia-route-city {
        font-size: 0.95rem;
    }

    .filter-panel {
        padding: 14px 16px;
    }

    .penyedia-filter-select {
        min-width: 100%;
        width: 100% !important;
        flex: 1 1 100%;
    }

    .penyedia-price-wrap .btn-pesan-sekarang {
        max-width: 100%;
        width: 100%;
    }

    .penyedia-price-wrap {
        align-items: flex-start;
    }

    .penyedia-detail-row {
        padding: 14px;
    }

    /* Kartu armada & testimoni lebih ringkas di layar kecil */
    .main-content-section .horizontal-scroll .card-wrapper {
        width: 250px;
    }

    .main-content-section .horizontal-scroll .card-wrapper .service-card {
        width: 100% !important;
        min-width: 100% !important;
    }
}

/* Kartu "data belum tersedia" (empty state) */
.empty-state-card {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.empty-state-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   RIAUGO-TRAVEL LAYANAN (SERVICE) PAGE STYLES
============================================ */
.layanan-hero {
    min-height: auto;
    padding: 56px 0 64px;
}

/* Armada tampil horizontal (Rental) */
.armada-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.armada-scroll::-webkit-scrollbar {
    height: 6px;
}

.armada-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.armada-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.armada-card {
    width: 150px;
    flex-shrink: 0;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    background: #f8fafc;
    padding: 10px;
    text-align: center;
    transition: all 0.25s ease;
}

.armada-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.armada-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #eef2f7;
}

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

.armada-card .armada-thumb {
    width: 100%;
    height: 84px;
    margin-bottom: 8px;
}

/* Responsive layanan */
@media (max-width: 767.98px) {
    .layanan-hero {
        padding: 40px 0 44px !important;
    }

    .armada-thumb {
        width: 56px;
        height: 56px;
    }
}

/* Kartu penjelasan layanan */
.layanan-desc-card {
    max-width: 900px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.07);
    padding: 32px 40px;
    text-align: justify;
}

.layanan-desc-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
}

@media (max-width: 767.98px) {
    .layanan-desc-card {
        padding: 22px 20px;
        text-align: left;
    }

    .layanan-desc-text {
        font-size: 1.05rem;
    }
}

/* ============================================
   RIAUGO-TRAVEL CEK TIKET PAGE STYLES
============================================ */
.cek-hero {
    min-height: auto;
    padding: 56px 0 72px;
}

@media (max-width: 767.98px) {
    .cek-hero {
        padding: 40px 0 48px !important;
    }
}

/* ============================================
   RIAUGO-TRAVEL DATA TIKET PAGE STYLES
============================================ */
.table-desktop {
    width: 100%;
    min-width: 0;
}

/* Tombol aksi: Ubah Jadwal & Batalkan Tiket */
.btn-aksi {
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-aksi-ubah {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.btn-aksi-ubah:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
    color: #ffffff;
}

.btn-aksi-batal {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.btn-aksi-batal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.28);
    color: #ffffff;
}

.btn-aksi:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Zona unggah bukti pembayaran */
.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    padding: 28px 16px;
    transition: all 0.25s ease;
}

.upload-zone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* Tombol cetak invoice */
.btn-print {
    background: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25) !important;
    transition: all 0.25s ease !important;
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.35) !important;
    filter: brightness(1.05);
    color: #ffffff !important;
}

.btn-print:active {
    transform: translateY(0);
}