/* ==========================================================================
   Tour Pages — Extracted inline styles
   Source: Various Tour blade templates (detail, customize, inquiry, etc.)
   ========================================================================== */

/* ── Detail Page Overrides (detail.blade.php) ── */
html, body { overflow-x: clip !important; }
.header-sticky { position: relative !important; top: auto !important; animation: none !important; box-shadow: none !important; }
#header, #header-sticky { position: relative !important; top: auto !important; }
.v3-prose p { color: var(--fg-muted); font-size: 15px; line-height: 1.8; font-weight: 300; }
.v3-prose p:empty, .v3-prose p:blank { display: none; }
.v3-prose * { font-family: var(--font-body, 'Poppins', system-ui, sans-serif) !important; }
.v3-prose h2, .v3-prose h3, .v3-prose h4 { font-family: var(--font-display, 'Playfair Display', Georgia, serif) !important; color: var(--fg); font-weight: 500; }
.v3-highlights-wrap * { font-family: var(--font-body, 'Poppins', system-ui, sans-serif) !important; }
.v3-highlights-wrap li { list-style: none !important; }

/* ── Customize Trip Page (customize.blade.php) ── */
.custom-trip-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
}
.custom-trip-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.custom-trip-hero .container {
    position: relative;
    z-index: 1;
}
.referrer-alert {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

/* ── Inquiry Page (inquiry.blade.php) ── */
.tour-inquiry-page {
    padding: 60px 0;
    background: #f8f9fa;
}
.inquiry-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}
.tour-info-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--bs-primary);
    margin-bottom: 30px;
}
.tour-thumbnail img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.tour-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}
.tour-duration {
    font-size: 1rem;
    color: #6c757d;
}
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.btn-submit {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
}
.contact-info-sidebar {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-icon {
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-right: 15px;
    margin-top: 3px;
}
.contact-text h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-text p,
.contact-text a {
    color: #6c757d;
    margin-bottom: 0;
    text-decoration: none;
}
.contact-text a:hover {
    color: var(--bs-primary);
}

/* ── Search Map (search-map.blade.php) ── */
.bravo_topbar, .bravo_topbar ~ .footer, .search-map-page .footer {
    display: none;
}

/* ── Day Tour Gallery (day-tour/gallery) ── */
.dt-gallery-item { cursor: zoom-in; }

/* ── Activity Detail / Tourtype (activity-detail.blade.php) ── */
.recommended-section { display: none !important; }

/* ── Availability Calendar (user/availability.blade.php) ── */
.event-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* ── Tabular Tour Widget (v2widget/blocks/tour_list/tabular) ── */
.tabular-tour-widget .nav-tabs .nav-link {
    transition: all 0.3s ease;
    opacity: 0.8;
    border-bottom: 3px solid transparent !important;
}
.tabular-tour-widget .nav-tabs .nav-link.active {
    color: #000 !important;
    opacity: 1;
    border-bottom: 3px solid #ff5e31 !important;
}
.tabular-nav-wrapper::-webkit-scrollbar {
    display: none;
}
.tabular-nav-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tab-content > .tab-pane:not(.active) {
    display: block;
    height: 0;
    overflow: hidden;
}
