/* =====================================================
   RiauGo Travel — Global Responsive CSS
   Cakupan: H-Utama layout + semua halaman User
   ===================================================== */

/* ─── GLOBAL PROTECTION ─────────────────────────────── */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

img {
    max-width: 100%;
}

/* ─── LAYOUT / NAVBAR ────────────────────────────────── */
.layout-page {
    width: 100% !important;
    max-width: 100vw;
}

/* ─── HERO SECTION (Halaman-Awal) ────────────────────── */
.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.15;
    word-break: break-word;
}

.hero-title2 {
    font-size: clamp(1.6rem, 6vw, 3rem);
}

/* ─── SEARCH FORM ────────────────────────────────────── */
.search-form-container {
    width: 100%;
}

/* ─── HORIZONTAL SCROLL (Layanan / Penyedia cards) ───── */
.horizontal-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.service-card {
    min-width: 220px;
    width: 220px;
}

/* ─── AUTOCOMPLETE DROPDOWN ──────────────────────────── */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
}

.autocomplete-item:hover {
    background-color: #e8f4ff;
}

/* ─── PENYEDIA PAGE — Hero Section ───────────────────── */
.divider-line {
    width: 2px;
    background-color: rgba(0,0,0,0.15);
    height: 180px;
}

.kontak-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
}

.wa-btn {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    white-space: nowrap;
}

.wa-btn:hover {
    background-color: #1ebe57;
    color: #fff;
}

.wa-icon {
    width: 24px;
    height: 24px;
}

/* ─── TABLET (≤ 991px) ───────────────────────────────── */
@media (max-width: 991.98px) {
    .divider-line {
        display: none;
    }

    .kontak-grid {
        font-size: 0.95rem !important;
    }
}

/* ─── MOBILE (≤ 767px) ───────────────────────────────── */
@media (max-width: 767.98px) {

    /* Layout body */
    body {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 16px !important;
        min-height: auto !important;
    }

    .hero-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* Gambar mobil di hero — sembunyikan di mobile untuk tidak overflow */
    .hero-section .col-lg-5 {
        display: none !important;
    }

    /* Search form container */
    .search-form-container {
        max-width: 100% !important;
        padding: 0 4px;
    }

    /* Horizontal scroll cards — jadikan satu kolom */
    .horizontal-scroll .d-flex {
        gap: 20px !important;
    }

    .service-card {
        min-width: 180px;
        width: 180px;
    }

    /* Tentang Kami section */
    .container .row[style*="width: 90%"] {
        width: 100% !important;
    }

    /* Penyedia hero */
    .hero-section h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
    }

    .hero-section p {
        font-size: 1rem !important;
    }

    /* Kontak pengelola */
    .kontak-grid span {
        font-size: 0.95rem !important;
    }

    .wa-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }

    /* Filter section */
    .filter-dropdown-group {
        width: 100%;
    }

    .filter-divider {
        width: 100% !important;
        height: 1px !important;
    }

    /* Rute cards pada CariTiket & Penyedia */
    .rute-card .card-body {
        padding: 16px !important;
    }

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

    /* CekTiket / Halaman-Tiket heading margin */
    .hero-title2[style*="margin-top: 65px"] {
        margin-top: 30px !important;
    }

    /* Login & Regis card */
    .col-md-5,
    .col-md-8 {
        padding: 0 12px !important;
    }

    /* Navbar body width override */
    .layout-navbar {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* Footer kolom */
    footer .row {
        width: 100% !important;
    }

    /* Modal */
    .modal-dialog {
        margin: 60px 10px 10px !important;
    }
}

/* ─── SMALL MOBILE (≤ 480px) ─────────────────────────── */
@media (max-width: 480px) {

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero-title2 {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    /* Penyedia hero full width stack */
    .hero-section .row.align-items-center > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
    }

    .hero-section .text-end {
        text-align: center !important;
    }

    /* Rute card route text wrap */
    .route-grid {
        flex-wrap: wrap !important;
    }

    /* Button pesan lebar penuh */
    .btn-pesan {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ─── INVOICE & DATA TIKET PAGE ──────────────────────── */
@media (max-width: 767.98px) {
    .invoice-card .fw-bolder,
    .invoice-card .fw-semibold {
        font-size: 14px !important;
    }
    .invoice-card img {
        max-height: 120px !important;
        margin-bottom: 10px !important;
    }
}
