/* --- NEW HERO DESIGN (Omfai V3) --- */
.new-hero-design {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: visible;
}

.new-hero-design .hero-inner {
    position: relative;
    z-index: 30;
    overflow: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

/* Tabs New */
.hero-tabs-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-tab-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-tab-new.active {
    background: var(--primary);
    border-color: var(--primary);
}

.service-tab-new .tab-icon {
    font-size: 20px;
}

.service-tab-new span {
    font-weight: 700;
    font-size: 15px;
}

/* Pill Search Form */
.search-pill-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 40;
}

.search-pill-form {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: visible;
}

.search-pill-field {
    flex: 1;
    padding: 10px 25px;
    border-right: 1px solid #e2e8f0;
    position: relative;
    text-align: left;
}

.search-pill-field:last-of-type {
    border-right: none;
}

.search-pill-field label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 5px;
    text-transform: none;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    cursor: pointer;
}

.input-wrapper i {
    color: var(--primary);
    font-size: 16px;
}

.pill-select, .pill-input, .pill-display {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    outline: none;
    padding: 0;
}

.hero-package-field .pill-select:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.pill-date-input {
    cursor: pointer;
    min-width: 145px;
}

.pill-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.date-picker-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 340px;
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.date-picker-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.calendar-head strong {
    color: #1e293b;
    font-size: 16px;
    font-weight: 900;
}

.calendar-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calendar-nav:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    color: var(--primary);
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
}

.calendar-weekdays {
    margin-bottom: 8px;
}

.calendar-weekdays span {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.calendar-day {
    aspect-ratio: 1;
    border: 0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1e293b;
    font-weight: 800;
    cursor: pointer;
}

.calendar-day:hover {
    background: #fff7ed;
    color: var(--primary);
}

.calendar-day.today {
    box-shadow: inset 0 0 0 2px #fed7aa;
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.28);
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    background: #f8fafc;
}

.calendar-day.empty {
    background: transparent;
    box-shadow: none;
}

.search-pill-btn {
    background: #22c55e;
    color: white;
    border: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.search-pill-btn:hover {
    background: #16a34a;
    transform: scale(1.05);
}

/* Pax Picker Dropdown */
.pax-picker-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 100;
    display: none; /* JS will toggle this */
}

.pax-picker-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.picker-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.picker-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e293b;
    font-weight: 700;
}

.picker-label i {
    font-size: 20px;
    color: #64748b;
}

.picker-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.picker-controls button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--primary);
    font-weight: 800;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picker-controls button:hover {
    background: #f1f5f9;
}

.picker-controls span {
    font-weight: 800;
    font-size: 18px;
    min-width: 25px;
    text-align: center;
    color: #1e293b; /* Ensure numbers are visible on white background */
}

.btn-done {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .search-pill-container {
        border-radius: 30px;
        padding: 20px;
    }
    .search-pill-form {
        flex-direction: column;
        gap: 15px;
    }
    .search-pill-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 0;
    }
    .search-pill-btn {
        width: 100%;
        border-radius: 15px;
        height: 55px;
    }
    .hero-title {
        font-size: 32px;
    }
}

/* Abstract BG */
.hero-abstract-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.abs-el {
    position: absolute;
    border-radius: 50%;
}

.abs-el.p1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.abs-el.p2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.abs-el.plane {
    top: 15%;
    right: 10%;
    font-size: 40px;
    color: rgba(255, 107, 53, 0.1);
    transform: rotate(-15deg);
    animation: float 4s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg);
    }

    50% {
        transform: translate(-15px, -15px) rotate(-10deg);
    }
}

/* --- PROMO SLIDER (Mister Aladin Style) --- */
.promo-slider-section {
    background: var(--bg-body);
    padding: 60px 20px;
}

.promo-container-alt {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promo-header-center {
    width: 100%;
    text-align: left;
}

.promo-main-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.promo-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-light-orange {
    background: #FFEFDE;
    color: #FF8200;
    border: 1px solid #FFD8A8;
    transition: 0.3s;
}

.btn-light-orange:hover {
    background: #FFD8A8;
    color: #994E00;
    transform: translateY(-2px);
}

.promo-slider-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.promo-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 15px 0 25px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.promo-track::-webkit-scrollbar {
    display: none;
}

.promo-slide-card {
    flex: 0 0 420px;
    height: 205px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.promo-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.promo-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.slider-nav:hover {
    background: #f8fafc;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.promo-nav {
    color: var(--primary);
}

/* --- MOBILE RESPONSIVE HERO --- */
@media (max-width: 768px) {
    .hero-clean {
        padding: 94px 15px 22px;
    }

    .hero-greeting h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-greeting p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    /* 3-Column Service Icons */
    .hero-card-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        margin-bottom: -12px;
    }

    .service-tab-item {
        min-width: 0;
        padding: 12px 10px;
        border-radius: 14px;
    }

    .tab-icon-box {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }

    .tab-label {
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
    }

    /* Improved Mobile Search Form */
    .search-card-box {
        padding: 16px;
        border-radius: 18px;
        margin-top: 12px;
    }

    .form-top-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .multi-row-form .form-row {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
        /* Override inline flex-end */
    }

    .form-col {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .form-col.action {
        margin-top: 10px;
    }

    .form-input-group {
        height: 50px;
    }

    .btn-search-hero {
        width: 100% !important;
        height: 50px;
    }

    /* Hotel Form Fix */
    .form-row-flex {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
    }

    .flex-item-group {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .flex-item-group.action {
        margin-top: 10px;
    }

    .btn-search-mister {
        width: 100%;
        height: 50px;
    }
}

/* --- MOBILE RESPONSIVE PROMO --- */
@media (max-width: 768px) {
    .promo-slider-section {
        padding: 24px 20px 18px;
    }

    .promo-container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .promo-header-side {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .promo-title-group {
        margin-bottom: 0;
    }

    .promo-main-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .view-all-promo {
        font-size: 12px;
    }

    .promo-subtitle {
        display: none;
        /* Hide subtitle on mobile to save space */
    }

    .promo-slider-wrapper {
        width: calc(100% + 40px);
        /* Fill screen width (negate 20px padding * 2) */
        margin: 0 -20px;
        padding: 0 20px;
    }

    .promo-track {
        gap: 12px;
        padding: 4px 0 8px;
    }

    .promo-slide-card {
        flex: 0 0 85vw;
        /* Fuller width card on mobile */
        height: auto;
        aspect-ratio: 21 / 9;
        /* Standard banner ratio to prevent cropping */
        border-radius: 16px;
    }

    .slider-nav {
        display: none;
        /* Hide nav arrows on mobile, rely on swipe/scroll */
    }

    .promo-nav {
        display: flex;
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--primary);
        border-color: #e5e7eb;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
        opacity: 0.9;
    }

    .promo-nav.prev {
        left: 8px;
    }

    .promo-nav.next {
        right: 8px;
    }

    .promo-nav i {
        font-size: 11px;
    }
}

/* REFINED SEARCH FORMS (Modern Grid Style) */
.search-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-end;
}

@media (min-width: 992px) {
    .search-form-grid {
        grid-template-columns: 1fr auto;
        gap: 0;
    }
}

.search-field {
    padding: 0 24px;
    height: 60px; /* Sama dengan tinggi tombol */
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field.lg {
    flex: 1.5;
}

.search-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px; /* Sedikit diperkecil */
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 4px; /* Diperkecil */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field label i {
    color: #4f46e5;
    font-size: 14px;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    width: 100%;
    padding: 2px 0;
}

.search-input.display-only {
    color: #64748b;
    cursor: default;
}

.double-input {
    display: flex;
    align-items: center;
    gap: 12px;
}

.double-input .compact {
    width: 80px;
    color: #4f46e5;
}

.search-btn {
    border: none;
    padding: 0 40px;
    height: 60px; /* Diperkecil dari 72px */
    border-radius: 0 24px 24px 0;
    color: white;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 991px) {
    .search-btn {
        border-radius: 16px;
        width: 100%;
        height: 56px;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 0;
    }
}

.search-btn.car { background: #22c55e; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25); }
.search-btn.hotel { background: #22c55e; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25); }
.search-btn.tour { background: #22c55e; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25); }

.search-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.clean-wide {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.wide-search-input {
    font-size: 18px !important;
}

/* Design System: Minimalist & Premium (Existing) */

/* TRUST SECTION */
.trust-section {
    background: linear-gradient(180deg, #FFEFDE 0%, #FFF8F0 100%);
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.trust-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.trust-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.trust-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .trust-wrapper {
        gap: 30px;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

.text-muted-minimal {
    color: #888;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 600;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s;
    vertical-align: middle;
}

.view-all-link i {
    font-size: 10px;
    margin-left: 4px;
    transition: 0.3s;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Horizontal rails for home product sections */
.home-rail-section {
    overflow: hidden;
}

.home-card-rail,
.home-blog-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    padding: 4px 2px 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.home-rail-shell {
    position: relative;
}

.home-rail-shell::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 12px;
    width: 44px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0), var(--bg-body));
    z-index: 2;
}

.home-rail-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-50%);
    transition: 0.2s ease;
}

.home-rail-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.home-rail-arrow.prev {
    left: -18px;
}

.home-rail-arrow.next {
    right: -18px;
}

.home-rail-arrow i {
    font-size: 13px;
}

.home-card-rail::-webkit-scrollbar,
.home-blog-rail::-webkit-scrollbar {
    display: none;
}

.home-card-rail .minimal-card,
.home-blog-rail .minimal-blog-card {
    scroll-snap-align: start;
    flex: 0 0 clamp(238px, 24vw, 286px);
}

.home-rail-section .section-header {
    margin-bottom: 22px;
}

/* Minimalist Cards */
.card-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card-grid-minimal.home-card-rail,
.blog-grid-minimal.home-blog-rail {
    display: flex;
}

.minimal-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.minimal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border-color: #eee;
}

.minimal-img {
    height: 155px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.minimal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.minimal-card:hover .minimal-img img {
    transform: scale(1.04);
}

.premium-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fbbf24;
    color: #111827;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.marketplace-location-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    max-width: calc(100% - 88px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #2563eb;
    color: #ffffff;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
}

.marketplace-location-badge i {
    font-size: 10px;
    flex: 0 0 auto;
}

.duration-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
}

.rating-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    color: #111;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rating-overlay i {
    color: #ffb800;
    margin-right: 3px;
}

.minimal-body {
    padding: 14px;
}

.item-title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.item-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.item-location-minimal {
    font-size: 13px;
    color: #777;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.item-price-minimal {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.item-price-minimal small {
    font-size: 10px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
}

.item-price-minimal strong {
    font-size: 21px;
    color: var(--primary);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.item-subnote {
    color: #8a8f98;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 7px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* Blog Minimalist */
.blog-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-grid-minimal.home-blog-rail {
    display: flex;
    gap: 18px;
}

.minimal-blog-card {
    display: flex;
    gap: 14px;
    border-radius: 14px;
    transition: 0.3s;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.minimal-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.blog-visual-minimal {
    width: 92px;
    height: 92px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-visual-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-minimal {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date-minimal {
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
    margin-bottom: 5px;
}

.blog-title-minimal {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-link-minimal {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    position: relative;
}

/* Misc */
.bg-soft-gray {
    background: #fafafa;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .promo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-header-side {
        width: 100%;
    }

    .promo-slide-card {
        min-width: 320px;
        height: 160px;
    }

    .form-row-grid,
    .form-row-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 20px;
    }

    .grid-item.action,
    .flex-item-group.action {
        width: 100%;
    }

    .btn-search-mister {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .multi-row-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .hero-greeting h2 {
        font-size: 30px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card {
        flex-direction: column;
        padding: 30px;
    }

    .promo-content {
        max-width: 100%;
    }

    .promo-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 26px;
    }

    .home-rail-section {
        margin: 26px auto;
        padding-right: 0;
    }

    .home-rail-section .section-header {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 12px;
        padding-right: 20px;
        margin-bottom: 10px;
    }

    .home-rail-section .section-header h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .home-rail-section .text-muted-minimal {
        font-size: 14px;
        margin-top: 4px;
    }

    .home-rail-section .view-all-link {
        white-space: nowrap;
        padding-top: 4px;
    }

    .home-card-rail,
    .home-blog-rail {
        width: calc(100% + 20px);
        margin-right: -20px;
        padding: 3px 32px 12px 0;
        gap: 12px;
    }

    .home-rail-arrow {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
        opacity: 0.88;
    }

    .home-rail-shell::after {
        width: 34px;
        bottom: 10px;
    }

    .home-rail-arrow i {
        font-size: 11px;
    }

    .home-rail-arrow.prev {
        left: 2px;
    }

    .home-rail-arrow.next {
        right: 6px;
    }

    .home-card-rail .minimal-card {
        flex-basis: 68vw;
        max-width: 268px;
    }

    .home-blog-rail .minimal-blog-card {
        flex-basis: 78vw;
        max-width: 318px;
    }

    .minimal-img {
        height: 142px;
    }

    .marketplace-location-badge {
        max-width: calc(100% - 76px);
        font-size: 10px;
        padding: 5px 8px;
    }

    .item-price-minimal strong {
        font-size: 20px;
    }

    .card-grid-minimal:not(.home-card-rail) {
        grid-template-columns: 1fr;
    }

    .blog-grid-minimal:not(.home-blog-rail) {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-header h3 {
        font-size: 26px;
    }
}

/* GlobalTix Specific Badges */
.globaltix-hot-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* --- NEW CAR CARD STYLES --- */
.car-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.car-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.premium-label-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFB800;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

.item-meta-new {
    display: flex;
    gap: 15px;
    margin: 12px 0;
}

.item-meta-new span {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
}

.item-price-new {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.item-price-new .label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.item-price-new .price {
    font-size: 18px;
    font-weight: 900;
    color: #1e293b;
}

/* --- SLIDER FIXES --- */
.promo-track, 
.home-card-rail, 
.home-blog-rail {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 10px;
}

.promo-track::-webkit-scrollbar,
.home-card-rail::-webkit-scrollbar,
.home-blog-rail::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Banner Wrapper */
.promo-banner-wrapper {
    overflow: hidden;
    border-radius: 20px;
    transition: 0.3s;
}

.promo-banner-wrapper:hover {
    transform: scale(1.01);
}

.slider-nav {
    z-index: 100 !important;
}

.home-rail-arrow {
    z-index: 100 !important;
}

/* --- APP PROMO BANNER (Combined Style) --- */
.app-promo-section {
    padding: 40px 0 80px;
    background: transparent;
}

.app-promo-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.app-promo-banner {
    width: 100%;
    position: relative;
    border-radius: 32px;
    overflow: visible; /* Allow char to overflow slightly if needed */
    background: #FFF0E0;
    box-shadow: 0 30px 60px rgba(255, 130, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-promo-banner:hover {
    transform: translateY(-5px);
}

.app-promo-bg-wrapper {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    line-height: 0;
}

.app-promo-bg {
    width: 100%;
    height: auto;
    display: block;
}

.app-promo-char {
    position: absolute;
    bottom: 0;
    left: 66%; /* Sempurna di tengah layar HP */
    width: 24%; /* Ukuran ideal (24%) */
    height: auto;
    z-index: 10;
    pointer-events: none;
    transform: translateX(-10%); 
}

@media (max-width: 992px) {
    .app-promo-char {
        width: 28%;
        left: 64%;
    }
}

@media (max-width: 768px) {
    .app-promo-section {
        padding: 30px 0 50px;
    }
    
    .app-promo-banner {
        border-radius: 20px;
    }

    .app-promo-bg-wrapper {
        border-radius: 20px;
    }

    .app-promo-char {
        width: 35%;
        left: 60%;
    }
}

/* TOP PROMO BANNER */
.top-promo-banner-section {
    position: relative;
    z-index: 20;
    padding-top: 70px;
    margin-bottom: -210px !important;
    overflow: visible;
}

.top-promo-character {
    position: relative;
    margin: 0 auto -38px;
    width: 245px;
    z-index: 1;
    pointer-events: none;
    transform: translateY(-230px);
}

.top-promo-character img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.top-promo-container {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-radius: 20px;
    transform: translateY(-250px);
}

.top-promo-container:hover {
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.top-promo-container img {
}

.top-promo-container:hover img {
}

@media (max-width: 768px) {
    .top-promo-banner-section {
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .top-promo-container img {
        min-height: 120px;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 992px) {
    .top-promo-banner-section {
        margin-bottom: -165px !important;
    }

    .top-promo-character {
        width: 215px;
        margin-bottom: -34px;
        transform: translateY(-185px);
    }

    .top-promo-container {
        transform: translateY(-200px);
    }
}

@media (max-width: 640px) {
    .top-promo-banner-section {
        padding-top: 50px;
        margin-bottom: -115px !important;
    }

    .top-promo-character {
        width: 178px;
        margin-bottom: -26px;
        transform: translateY(-135px);
    }

    .top-promo-container {
        transform: translateY(-145px);
    }
}

/* CAR ANIMATION SECTION */
.car-anim-wrapper {
    position: relative;
    height: 400px;
    background-color: #A3D9F2; /* Langit Paling Belakang */
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.city-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5; /* Di atas awan, di bawah mobil */
    pointer-events: none;
}

/* CLOUDS ANIMATION */
.cloud-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* Di bawah kota */
}

.cloud {
    position: absolute;
    opacity: 0.7;
}

.cloud img {
    width: 180px;
    height: auto;
}

.cloud.c1 { top: 10%; animation: cloudMove 45s linear infinite; }
.cloud.c2 { top: 25%; animation: cloudMove 65s linear infinite 5s; }
.cloud.c3 { top: 5%; animation: cloudMove 55s linear infinite 15s; }
.cloud.c4 { top: 30%; animation: cloudMove 75s linear infinite 25s; }

@keyframes cloudMove {
    0% { left: -200px; }
    100% { left: 110%; }
}

.car-track {
    position: absolute;
    bottom: 12%; /* Menyesuaikan posisi jalan raya pada gambar */
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 10;
}

.car-moving-element {
    position: absolute;
    right: -400px; /* Mulai dari luar layar sebelah kanan */
    width: 320px;
    animation: carDrive 15s linear infinite;
}

.car-assembly {
    position: relative;
    width: 100%;
}

.car-body {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

/* WHEELS ANIMATION */
.car-wheel {
    position: absolute;
    bottom: -2%; /* Sesuaikan posisi ban agar pas di bawah body mobil */
    width: 21%; /* Ukuran ban relatif terhadap bodi mobil */
    z-index: 10;
    animation: wheelSpin 1s linear infinite;
}

.car-wheel img {
    width: 100%;
    height: auto;
}

.wheel-front { left: 13.5%; } /* Sumbu roda depan */
.wheel-back { right: 13.5%; } /* Sumbu roda belakang */

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); } /* Berputar berlawanan jarum jam karena mobil ke kiri */
}

@keyframes carDrive {
    0% {
        right: -400px;
    }
    100% {
        right: 110%;
    }
}

@media (max-width: 992px) {
    .car-anim-wrapper {
        height: 300px;
    }
    .car-moving-element {
        width: 250px;
    }
    .cloud img { width: 120px; }
}

@media (max-width: 768px) {
    .car-anim-wrapper {
        height: 200px;
    }
    .car-moving-element {
        width: 180px;
        animation-duration: 10s;
    }
    .car-track {
        bottom: 10%;
    }
    .cloud img { width: 80px; }
}

/* QUICK NAVIGATION SECTION */
.quick-nav-section {
    background-color: #1a1e23; /* Warna gelap menyesuaikan footer */
    padding: 40px 0;
    color: #e2e8f0;
    margin-top: 0 !important;
}

.quick-nav-title {
    font-size: 24px;
    font-weight: 700;
    color: #475569; /* Abu-abu sesuai referensi */
    margin-bottom: 20px;
}

.quick-nav-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #334155;
    margin-bottom: 30px;
}

.qn-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qn-tab:hover {
    color: #cbd5e1;
}

.qn-tab.active {
    color: #ea580c; /* Oranye aktif */
}

.qn-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ea580c;
    border-radius: 3px 3px 0 0;
}

.qn-pane {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.qn-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.qn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qn-list li {
    margin-bottom: 12px;
}

.qn-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.qn-list a:hover {
    color: #ea580c;
}
