html,
body {
    overflow-x: hidden;
}

/* HERO TITLE */
.hero-title {
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 24px 20px 18px;
}

.hero-title h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-title p {
    font-size: 14px;
}

/* SEARCH */
.search-section {
    max-width: 1000px;
    margin: 20px auto 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 0 16px;
}

.search-box {
    flex: 1;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 16px;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.btn-request {
    text-decoration: none;
    background: #3b82f6;
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* CATALOG */
.catalog-section {
    padding: 0 20px 16px;
}

.catalog-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    overflow: hidden;
}

.catalog-card {
    background: #efefef;
    border: 2px solid #4b8cff;
    border-radius: 28px;
    overflow: hidden;
    width: 300px;
}

.catalog-card img {
    width: calc(100% - 22px);
    height: 150px;
    object-fit: cover;
    display: block;
    margin: 12px auto 0;
    border-radius: 20px;
}

.catalog-body {
    padding: 12px 16px 16px;
}

.catalog-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
}

.catalog-body p {
    font-size: 11px;
    color: #222;
    margin-bottom: 7px;
}

.catalog-body .location {
    font-size: 11px;
    margin-bottom: 8px;
}

.paket-info-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 7px;
}

.paket-info-label {
    font-size: 11px;
    color: #555;
    line-height: 1.4;
    min-width: 140px;
}

.paket-info-value {
    font-size: 11px;
    color: #111;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
}

.label-harga {
    color: #6b6b6b;
    font-size: 11px;
}

.label-harga {
    color: #6b6b6b;
    font-size: 11px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    gap: 8px;
}

.card-footer strong {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.card-footer a {
    text-decoration: none;
    background: #3b82f6;
    color: white;
    padding: 5px 11px;
    border-radius: 14px;
    font-size: 11px;
    white-space: nowrap;
}

/* FOOTER */
.footer {
    background: #cfe8f8;
    padding: 10px 30px 10px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
}

.footer-brand img {
    width: 52px;
    display: block;
}

.footer-brand h3,
.footer-right h3 {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    color: #222;
    max-width: 470px;
    text-align: justify;
}

.footer-divider {
    width: 2px;
    height: auto;
    align-self: stretch; /* ⬅️ ikut tinggi konten */
    background: #6d6d6d;
}

.footer-contact-list {
    display: flex;
    gap: 26px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-col p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1180px;
    margin: 16px auto 0;
    padding-top: 10px;
    border-top: 1.5px solid #5d5d5d;
    text-align: center;
    font-size: 12px;
}

/* TITLE + BADGE */
.paket-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.paket-title-row h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.tipe-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Open Trip → biru */
.tipe-badge.open-trip {
    background: #e0f2fe;
    color: #0284c7;
}

/* Paket Wisata → hijau */
.tipe-badge.paket-wisata {
    background: #dcfce7;
    color: #16a34a;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        width: 100%;
        min-height: 2px;
    }
}

@media (max-width: 768px) {
    .search-section {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-list {
        flex-direction: column;
        gap: 0;
    }
}