:root {
    --primary: #1239e6;
    --primary-dark: #0b2847;
    --secondary: #003b70;
    --accent: #ffd25c;
    --muted: #657487;
    --body: #f3f5f7;
    --card: #ffffff;
    --line: #dce2ea;
    --shadow: 0 16px 40px rgba(12, 30, 56, .10);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--body);
    color: #0c2138;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.fw-black { font-weight: 900 !important; }
main { padding-top: 74px; }
.container { max-width: 1120px; }

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 248, 251, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12, 32, 56, .06);
}
.navbar { padding: 9px 0; }
.navbar-brand img { width: 150px; height: auto; }
.nav-link {
    font-weight: 800;
    font-size: 13px;
    color: #0d233b;
    padding: 10px 14px !important;
    border-radius: 999px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(18, 57, 230, .07); }
.btn-nav, .btn-primary-gradient {
    background: linear-gradient(135deg, #3427d8, #1b64ff);
    color: #fff !important;
    border: 0;
    border-radius: 9px;
    padding: 11px 19px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(18, 57, 230, .22);
}
.btn-primary-gradient { font-size: 14px; text-transform: none; border-radius: 12px; padding: 12px 18px; }
.btn-primary-gradient:hover, .btn-nav:hover { transform: translateY(-1px); filter: brightness(1.03); }

.hero { padding: 20px 0 34px; }
.hero-panel {
    min-height: 365px;
    border-radius: 24px;
    background-image: linear-gradient(180deg, rgba(7, 29, 57, .78), rgba(7, 29, 57, .40) 62%, rgba(243,245,247,.92)), url('../images/hero-airport.svg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 26px 40px;
}
.hero-content { width: min(880px, 100%); color: #fff; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: #ffe18a;
    letter-spacing: .2px;
    font-size: 13px;
    margin-bottom: 8px;
}
.hero h1 { font-size: clamp(44px, 7vw, 76px); font-weight: 900; line-height: .98; margin-bottom: 28px; letter-spacing: -2px; }
.search-shell {
    background: #fff;
    border: 4px solid rgba(255,255,255,.65);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(7, 27, 52, .22);
    padding: 2px;
}
.search-shell select {
    border: 0;
    border-radius: 999px;
    padding: 16px 22px;
    color: #526274;
    font-weight: 700;
    box-shadow: none !important;
}
.category-strip {
    width: min(800px, 94%);
    margin: -34px auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.category-card {
    min-height: 74px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.category-card:before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.58)); z-index: -1; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.dots span { width: 6px; height: 6px; border-radius: 50%; background: #cbd4de; }
.dots span.active { width: 18px; border-radius: 8px; background: #0d2540; }

.section { padding: 72px 0; }
.section-heading { text-align: center; margin: 0 auto 34px; max-width: 780px; }
.section-heading h2, .about-preview h2 { color: #0d233b; font-weight: 900; font-size: clamp(28px, 4vw, 38px); letter-spacing: -1px; }
.section-heading p { color: var(--muted); margin: 8px auto 0; }

.visa-grid { margin-top: 26px; }
.visa-card {
    display: block;
    background: var(--card);
    border: 1px solid rgba(12, 32, 56, .06);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 236px;
    box-shadow: 0 16px 36px rgba(12, 30, 56, .06);
    transition: .28s ease;
    position: relative;
    overflow: hidden;
}
.visa-card:after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -60px;
    top: -60px;
    background: rgba(18,57,230,.08);
    transition: .28s ease;
}
.visa-card:hover { transform: translateY(-9px); box-shadow: 0 24px 55px rgba(12,30,56,.14); }
.visa-card:hover:after { transform: scale(1.2); background: rgba(18,57,230,.12); }
.visa-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.flag-badge { width: 42px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #e3e8ef; border-radius: 8px; font-size: 22px; box-shadow: 0 8px 18px rgba(12,30,56,.06); overflow: hidden; }
.flag-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.discount-badge { background: #0a4f89; color: #fff; border-radius: 999px; font-size: 11px; padding: 6px 9px; font-weight: 900; }
.visa-card h3 { font-size: 18px; font-weight: 900; color: #0e263f; margin-bottom: 12px; }
.mini-list { padding: 0; margin: 0; list-style: none; color: #627181; font-size: 13px; display: grid; gap: 7px; }
.mini-list i { width: 20px; color: #52677a; }
.visa-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 13px; margin-top: 13px; border-top: 1px solid #edf1f5; }
.visa-tags span { font-size: 11px; color: #47576a; background: #f1f5fb; border-radius: 999px; padding: 6px 8px; font-weight: 700; }
.visa-tags i { margin-right: 5px; color: var(--primary); }
.price-row { display: flex; justify-content: space-between; align-items: end; margin-top: 20px; }
.price-row small { display: block; color: #2761a2; font-weight: 800; }
.price-row strong { display: block; color: #0f61a8; font-weight: 900; font-size: 16px; }
.price-row del { color: #99a4b2; font-size: 12px; }
.arrow { color: var(--primary); font-size: 23px; transition: .25s ease; }
.visa-card:hover .arrow { transform: translateX(4px); }

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    min-height: 144px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 12px 28px rgba(12,30,56,.06);
    border: 1px solid rgba(12, 32, 56, .05);
    transition: .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(12,30,56,.12); }
.service-card img { width: 88px; height: 66px; object-fit: cover; border-radius: 12px; flex: 0 0 auto; }
.service-card h3 { margin: 0 0 4px; font-size: 17px; font-weight: 900; }
.service-card p { margin: 0; color: #3b4959; font-size: 13px; line-height: 1.45; }

.rounded-img { border-radius: 16px; width: 100%; }
.shadow-soft { box-shadow: var(--shadow); }
.about-preview p { color: #3b4959; }

.review-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    min-height: 190px;
    box-shadow: 0 12px 26px rgba(12,30,56,.06);
    border: 1px solid rgba(12, 32, 56, .05);
    transition: .25s ease;
}
.review-card:hover { transform: translateY(-7px); box-shadow: 0 24px 48px rgba(12,30,56,.12); }
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.review-head h3 { font-size: 14px; font-weight: 900; margin: 0; }
.review-head small { color: #8290a1; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #ff8d3f, #633df6); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.google-g { margin-left: auto; color: #4285f4; font-weight: 900; }
.stars { color: #ffb800; letter-spacing: 1px; font-size: 14px; margin-bottom: 10px; }
.stars i { color: #4285f4; letter-spacing: 0; }
.review-card p { color: #111c2b; font-size: 13px; margin: 0; }

.page-hero { padding: 34px 0 30px; }
.soft-hero {
    min-height: 300px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 54px 22px;
    overflow: hidden;
}
.soft-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 12px; color: #0d233b; }
.soft-hero p { max-width: 830px; margin: 0 auto; color: #24364b; }
.dark-hero { color: #fff; background-image: linear-gradient(rgba(10,34,68,.66), rgba(10,34,68,.66)), url('../images/foreign-hero.svg'); }
.dark-hero h1, .dark-hero p { color: #fff; }
.nonvisa-hero { background-image: url('../images/non-visa-hero.svg'); }

.detail-page { padding: 50px 0 72px; }
.detail-title { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.detail-title h1 { font-weight: 900; font-size: clamp(32px, 4vw, 42px); margin: 0; }
.detail-tabs { border-bottom: 1px solid #cfd7e1; margin-bottom: 28px; }
.detail-tabs .nav-link { background: transparent; color: #0d233b; border-radius: 0; padding-left: 0 !important; }
.info-alert { background: #d9f2f4; border: 0; color: #174e57; font-weight: 700; border-radius: 8px; }
.info-box { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 12px 30px rgba(12,30,56,.08); margin: 16px 0; }
.info-box h3 { font-size: 18px; font-weight: 900; }
.requirements li { margin-bottom: 8px; }
.accordion-item { background: transparent; border: 0; border-bottom: 1px solid #909eac; border-radius: 0 !important; }
.accordion-button { background: transparent; color: #10243c; box-shadow: none !important; font-weight: 800; padding-left: 0; }
.accordion-body { padding-left: 0; color: #48596b; }
.booking-card { position: sticky; top: 100px; background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); overflow: hidden; }
.booking-card:before { content: 'ⓘ Silakan isi form berikut ini untuk memulai'; display: block; margin: -20px -20px 16px; padding: 10px 16px; background: #e8e5ff; color: #3b2cc0; font-weight: 800; font-size: 12px; }
.booking-card h2 { font-size: 20px; font-weight: 900; margin-bottom: 14px; }
.booking-card label { font-size: 13px; font-weight: 800; color: #506173; }
.booking-card .form-control, .booking-card .form-select { border-color: #8b9aad; border-radius: 4px; }
.submit-wide { width: 100%; background: #2457f4; color: #fff; border: 0; border-radius: 4px; padding: 12px; font-weight: 900; }
.related-card { background: #fff; border-radius: 14px; padding: 18px; display: flex; align-items: center; gap: 16px; min-height: 82px; box-shadow: 0 12px 24px rgba(12,30,56,.07); transition: .25s ease; }
.related-card:hover { transform: translateY(-6px); }
.related-card h3 { margin: 0; font-size: 16px; font-weight: 900; }
.related-card p { margin: 0; font-weight: 700; color: #0b2f51; }

.foreign-section { padding: 34px 0 64px; }
.foreign-block { position: relative; margin-bottom: 58px; }
.foreign-block img { width: 55%; border-radius: 16px; box-shadow: var(--shadow); }
.foreign-content { position: absolute; top: 50%; transform: translateY(-50%); right: 0; width: 55%; background: #fff; border-radius: 18px; padding: 34px; box-shadow: var(--shadow); }
.foreign-block.reverse img { margin-left: auto; }
.foreign-block.reverse .foreign-content { left: 0; right: auto; }
.foreign-content h2 { font-size: 22px; font-weight: 900; }
.foreign-content h3 { font-size: 20px; font-weight: 900; color: #0d233b; }
.foreign-content li { margin-bottom: 6px; color: #3d4d5e; }
.btn-chat { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; background: #004170; color: #fff; border-radius: 999px; font-weight: 900; margin-top: 8px; }
.client-card { overflow: hidden; background: #fff; border-radius: 14px; text-align: center; box-shadow: 0 12px 26px rgba(12,30,56,.06); transition: .25s ease; }
.client-card:hover { transform: translateY(-7px); }
.client-card img { height: 160px; width: 100%; object-fit: cover; }
.client-card h3 { font-size: 15px; font-weight: 900; padding: 14px; margin: 0; }
.why-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.why-list { padding: 46px; }
.why-list h2 { font-weight: 900; font-size: 42px; margin-bottom: 26px; }
.why-list p { padding: 16px 0; border-bottom: 1px solid #e4e9ef; font-weight: 800; color: #304256; margin: 0; }

.about-hero-title { background: #fff; padding: 46px 0 20px; text-align: center; }
.about-hero-title h1 { font-size: clamp(42px, 7vw, 64px); font-weight: 300; text-transform: uppercase; letter-spacing: -1px; }
.about-hero-title strong { font-weight: 900; }
.about-copy { background: #fff; padding: 32px 0 18px; text-align: center; }
.about-copy p { max-width: 1040px; margin: 0 auto 16px; color: #435267; }
.legal-box { background: #f2f5f8; border-radius: 16px; padding: 28px; text-align: center; margin-top: 26px; }
.team-card { text-align: center; }
.team-card img { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 12px; }
.team-card h3 { font-size: 14px; font-weight: 900; }
.cta-banner { background-image: linear-gradient(90deg, rgba(9,42,94,.9), rgba(15,74,168,.65)), url('../images/cta-travel.svg'); background-size: cover; background-position: center; color: #fff; padding: 76px 0; }
.cta-banner h2 { font-weight: 900; font-size: clamp(32px, 5vw, 50px); }

.contact-page { padding: 60px 0 70px; }
.contact-title { text-align: center; margin-bottom: 42px; }
.contact-title h1 { font-weight: 300; font-size: clamp(40px, 6vw, 64px); letter-spacing: -2px; }
.contact-title h1 strong { font-weight: 900; }
.branch-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.branch-tabs button { border: 0; background: #e5e9f0; padding: 12px 22px; border-radius: 6px; font-weight: 900; color: #1c2d45; }
.branch-tabs button.active { background: #3524d8; color: #fff; }
.map-box img { border-radius: 4px; width: 100%; height: 255px; object-fit: cover; border: 1px solid #d3dbe5; }
.contact-list { margin-top: 26px; display: grid; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.contact-icon { width: 44px; height: 44px; background: #0d243e; color: #fff; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
.contact-item h3 { margin: 0; font-size: 16px; font-weight: 900; }
.contact-item p { margin: 0; font-size: 18px; font-weight: 900; }
.contact-form-wrap { border-left: 1px solid #d2d9e2; padding-left: 32px; }
.form-control, .form-select { min-height: 52px; border: 1px solid #738194; border-radius: 2px; background: #fff; }
textarea.form-control { min-height: 170px; }
.btn-submit { background: #204cf4; color: #fff; border: 0; padding: 12px 22px; border-radius: 3px; font-weight: 900; }

.blog-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: var(--shadow); height: 100%; }
.blog-card h2 { font-size: 22px; font-weight: 900; }
.blog-card p { color: #536477; }

.site-footer { background: #f7f8fa; border-top: 1px solid #dfe4eb; }
.footer-main { padding: 58px 0; }
.site-footer h3 { font-size: 16px; font-weight: 900; margin-bottom: 12px; }
.site-footer p, .site-footer a { font-size: 13px; color: #0d233b; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 6px; }
.wa-pill { display: inline-flex; align-items: center; gap: 8px; background: #23c46a; color: #fff !important; border-radius: 999px; padding: 8px 14px; font-weight: 900; }
.socials { display: flex; gap: 12px; }
.socials a { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,.05); }
.footer-bottom { background: #003d73; color: #fff; padding: 22px 0; font-size: 12px; }
.footer-bottom a, .footer-bottom span { color: #fff; }
.floating-wa { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; z-index: 999; display: flex; align-items: center; justify-content: center; font-size: 29px; box-shadow: 0 12px 28px rgba(37, 211, 102, .35); }
.floating-wa:hover { color: #fff; transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
    main { padding-top: 68px; }
    .navbar-collapse { background: #fff; padding: 16px; border-radius: 16px; margin-top: 10px; box-shadow: var(--shadow); }
    .category-strip { grid-template-columns: repeat(2, 1fr); margin-top: 12px; }
    .hero-panel { min-height: 460px; }
    .foreign-block img, .foreign-block.reverse img { width: 100%; margin: 0; }
    .foreign-content, .foreign-block.reverse .foreign-content { position: static; transform: none; width: 94%; margin: -50px auto 0; }
    .why-list { padding: 30px; }
    .why-list h2 { font-size: 34px; }
    .contact-form-wrap { border-left: 0; padding-left: 0; margin-top: 36px; }
}

@media (max-width: 575.98px) {
    body { font-size: 14px; }
    .hero { padding-top: 12px; }
    .hero-panel { border-radius: 18px; padding: 52px 14px 30px; min-height: 430px; }
    .hero h1 { letter-spacing: -1px; }
    .category-strip { grid-template-columns: 1fr; width: 90%; }
    .section { padding: 50px 0; }
    .visa-card, .service-card, .review-card { padding: 18px; }
    .service-card { align-items: flex-start; }
    .service-card img { width: 72px; height: 58px; }
    .soft-hero { min-height: 260px; }
    .booking-card { position: static; margin-top: 32px; }
    .foreign-content { padding: 22px; }
    .footer-main { padding: 42px 0; }
}

/* Patch responsive detail and contact pages */
.detail-layout-row { --bs-gutter-x: 4.2rem; }
.compact-list { margin-top: -4px; }

.contact-page,
.contact-page * {
    box-sizing: border-box;
}
.contact-form-wrap form {
    width: 100%;
    max-width: 100%;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select,
.contact-form-wrap textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .detail-layout-row { --bs-gutter-x: 1.5rem; }
    .detail-title { align-items: flex-start; }
    .detail-title h1 { line-height: 1.08; }
    .contact-page .row { --bs-gutter-x: 1.5rem; }
    .contact-form-wrap {
        border-left: 0;
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
        margin-top: 34px;
    }
}

@media (max-width: 575.98px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    .site-header .container,
    .contact-page .container,
    .detail-page .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }
    .contact-page {
        padding: 34px 0 54px;
        overflow-x: hidden;
    }
    .contact-title {
        margin-bottom: 26px;
    }
    .contact-title h1 {
        font-size: 38px;
        letter-spacing: -1px;
        line-height: 1.05;
    }
    .contact-title p {
        font-size: 14px;
    }
    .contact-page .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
        --bs-gutter-y: 1.5rem;
    }
    .contact-page .row > * {
        padding-left: 0;
        padding-right: 0;
        min-width: 0;
    }
    .branch-tabs {
        width: 100%;
        gap: 8px;
    }
    .branch-tabs button {
        flex: 1 1 0;
        padding: 11px 10px;
    }
    .map-box img {
        height: 210px;
    }
    .contact-item {
        align-items: flex-start;
    }
    .contact-item p {
        font-size: 15px;
        word-break: break-word;
    }
    .contact-form-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }
    .contact-form-wrap form {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }
    .contact-form-wrap label {
        display: block;
        font-size: 13px;
        margin-bottom: 7px;
    }
    .contact-form-wrap .form-control,
    .contact-form-wrap .form-select {
        min-height: 48px;
        font-size: 14px;
    }
    .contact-form-wrap textarea.form-control {
        min-height: 150px;
    }
    .btn-submit {
        width: 100%;
        min-height: 46px;
    }
    .detail-page {
        padding: 34px 0 56px;
        overflow-x: hidden;
    }
    .detail-layout-row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }
    .detail-layout-row > * {
        padding-left: 0;
        padding-right: 0;
        min-width: 0;
    }
    .detail-title {
        gap: 10px;
        margin-bottom: 14px;
    }
    .detail-title h1 {
        font-size: 30px;
        line-height: 1.1;
    }
    .detail-tabs .nav-link {
        font-size: 13px;
        padding-right: 18px !important;
    }
    .info-box {
        padding: 18px;
    }
    .booking-card {
        width: 100%;
        max-width: 100%;
    }
    .related-card {
        min-height: 76px;
    }
}

/* Homepage visa load more */
.visa-load-item.is-hidden {
    display: none !important;
}
.btn-load-more {
    border: 0;
    border-radius: 999px;
    padding: 13px 34px;
    background: linear-gradient(135deg, #204cf4, #3120ba);
    color: #fff;
    font-weight: 900;
    letter-spacing: .5px;
    box-shadow: 0 14px 30px rgba(32, 76, 244, .22);
    transition: .25s ease;
}
.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(32, 76, 244, .30);
}
.btn-load-more:focus {
    outline: 3px solid rgba(32, 76, 244, .22);
    outline-offset: 3px;
}
