/* --- HERO CLEAN (Modern Premium Style) --- */
.hero-clean {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8fafc 100%);
    padding: 180px 20px 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-greeting h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-greeting p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

/* Tab Navigation Style */
.hero-card-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.service-tab-item {
    background: white;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.service-tab-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-tab-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.tab-icon-box {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-label {
    font-weight: 700;
    font-size: 14px;
}

/* Search Container Box */
.search-card-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-form {
    display: none !important;
}

.service-form.active {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.multi-row-form .form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.multi-row-form .form-row.second-row {
    margin-bottom: 0;
    align-items: flex-end;
}

.form-col {
    flex: 1;
}

.form-col.wide {
    flex: 2;
}

.form-col.shrink {
    flex: 0 0 auto;
}

.form-col.full {
    flex: 1;
    width: 100%;
}

.form-col label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 5px;
}

.form-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 0 20px;
    height: 55px;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.form-input-group i {
    font-size: 18px;
    color: var(--primary);
    margin-right: 15px;
}

.form-input-group input,
.form-input-group select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
}

.btn-search-hero {
    background: var(--primary);
    color: white;
    border: none;
    height: 55px;
    padding: 0 40px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    width: 100%;
}

.btn-search-hero.icon-only {
    width: 60px;
    padding: 0;
}

.btn-search-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* 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: white;
    padding: 60px 20px;
}

.promo-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.promo-header-side {
    width: 300px;
    flex-shrink: 0;
}

.promo-main-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.view-all-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.view-all-promo:hover {
    gap: 12px;
}

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

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

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

.promo-slide-card {
    min-width: 420px;
    height: 200px;
    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;
}

/* --- MOBILE RESPONSIVE HERO --- */
@media (max-width: 768px) {
    .hero-clean {
        padding: 150px 15px 60px; /* Ditingkatkan dari 110px ke 150px untuk mobile */
    }

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

    .hero-greeting p {
        font-size: 15px;
        margin-bottom: 30px;
    }

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

    .service-card-item {
        min-width: 0;
        padding: 15px 10px;
        border-radius: 16px;
    }

    .card-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 14px;
    }

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

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

    .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-container {
        flex-direction: column;
        gap: 20px;
        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-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: 15px;
        padding-bottom: 10px;
    }

    .promo-slide-card {
        min-width: 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 */
    }
}

/* 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;
    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: 12px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 8px;
    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: 72px; /* Matches form height better */
    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: 15px 0;
    }
}

.search-btn.car { background: #ff5a1f; box-shadow: 0 10px 25px rgba(255, 90, 31, 0.25); }
.search-btn.hotel { background: #ffb800; box-shadow: 0 10px 25px rgba(255, 184, 0, 0.25); }
.search-btn.tour { background: #0084ff; box-shadow: 0 10px 25px rgba(0, 132, 255, 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, #ffffff 0%, #f1f5f9 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-color);
    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);
}

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

.minimal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    transition: 0.3s;
    cursor: pointer;
}

.minimal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #eee;
}

.minimal-img {
    height: 200px;
    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.1);
}

.premium-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.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: 20px;
}

.item-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.item-location-minimal {
    font-size: 13px;
    color: #777;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.item-price-minimal strong {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 900;
}

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

.minimal-blog-card {
    display: flex;
    gap: 20px;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.minimal-blog-card:hover {
    transform: translateX(10px);
}

.blog-visual-minimal {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    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: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-link-minimal {
    color: var(--primary-color);
    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;
    }

    .card-grid-minimal {
        grid-template-columns: 1fr;
    }

    .blog-grid-minimal {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}