/* ============================================================
   Yudhistira Trans — main stylesheet
   Tokens: navy #091E3D (Oxford Blue) | navy-2 #103562 (Yale Blue) |
           gold #C4A236 (Satin Sheen Gold) | gold-light #ECCE60 (Saffron) |
           black #020814 (Rich Black) | white #FFFFFF | gray #5A6B80 |
           bg #F6F8FB | radius 12px | shadow
   ============================================================ */
:root {
    --navy: #091E3D;
    --navy-2: #103562;
    --gold: #C4A236;
    --gold-light: #ECCE60;
    --black: #020814;
    --white: #FFFFFF;
    --gray: #5A6B80;
    --bg: #F7F9FC;
    --radius: 16px;
    --shadow: 0 10px 28px rgba(9, 30, 61, .07);
    --shadow-lg: 0 20px 45px rgba(9, 30, 61, .14);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--navy); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.25; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: 20px; }

/* ---------- nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--navy-2);
    box-shadow: 0 2px 16px rgba(9, 30, 61, .14);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.nav-brand img { border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255, 255, 255, .88); padding: 8px 12px; border-radius: 8px; font-weight: 500; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--gold-light); background: rgba(255, 255, 255, .08); }
.nav-links a.active { color: var(--gold-light); font-weight: 700; }
.nav-wa { margin-left: 10px; padding: 9px 20px; border-radius: 999px; background: var(--gold); color: var(--black) !important; font-weight: 700; box-shadow: 0 4px 14px rgba(196, 162, 54, .35); }
.nav-wa:hover { background: var(--gold-light); color: var(--black) !important; transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 14px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(9, 30, 61, .16); }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 6px 18px rgba(196, 162, 54, .35); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-navy { border-color: var(--navy-2); color: var(--navy-2); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-2); color: var(--white); }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 { font-size: 2rem; color: var(--navy-2); }
.section-head p { color: var(--gray); margin-top: 8px; }
.section-more { text-align: center; margin-top: 32px; }
.section-more a { color: var(--gold); font-weight: 600; }
.section-more a:hover { color: var(--navy); }

/* ---------- hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F7F9FC 0%, #EEF3F8 30%, #DCE6F0 62%, #103562 118%);
}
.hero-atmo { position: absolute; inset: 0; pointer-events: none; }
.hero-cloud {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
    filter: blur(26px);
}
.hero-cloud.c1 { width: 520px; height: 260px; top: 8%; left: -6%; }
.hero-cloud.c2 { width: 460px; height: 230px; top: 30%; right: -8%; }
.hero-cloud.c3 { width: 380px; height: 190px; bottom: 16%; left: 22%; }
.hero-glow {
    position: absolute;
    width: 620px;
    height: 620px;
    top: -16%;
    right: -8%;
    background: radial-gradient(closest-side, rgba(236, 206, 96, .32), transparent 72%);
    filter: blur(10px);
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding: 72px 20px 120px;
}
.hero-content > * { animation: fadeUp .7s ease-out both; }
.hero-content > *:nth-child(2) { animation-delay: .08s; }
.hero-content > *:nth-child(3) { animation-delay: .16s; }
.hero-content > *:nth-child(4) { animation-delay: .24s; }
.hero-badge {
    margin-bottom: 22px;
    display: inline-block;
    background: rgba(196, 162, 54, .16);
    color: var(--navy-2);
    border-color: rgba(196, 162, 54, .45);
    font-size: .85rem;
    font-weight: 700;
    padding: 7px 18px;
}
.hero-content h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--navy-2);
    margin-bottom: 18px;
}
.hero-content h1 .hl { color: var(--gold); }
.hero-content p {
    font-size: 1.08rem;
    color: #40536B;
    max-width: 560px;
    margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    z-index: 2;
    animation: busIn .9s ease-out both;
}
.bus-glow {
    position: absolute;
    inset: 8% -6% -4% -6%;
    background: radial-gradient(closest-side, rgba(236, 206, 96, .4), rgba(255, 255, 255, 0) 72%);
    filter: blur(18px);
}
.bus-main {
    position: relative;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(9, 30, 61, .28);
}
.bus-side {
    position: absolute;
    bottom: -34px;
    left: -44px;
    width: 52%;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 18px 44px rgba(9, 30, 61, .24);
    animation: busIn 1s ease-out .18s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes busIn { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
.hero-stats { position: relative; z-index: 3; margin-top: -56px; padding: 0 0 24px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(16, 53, 98, .14);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(9, 30, 61, .12);
}
.stat { background: rgba(255, 255, 255, .45); padding: 28px 12px; text-align: center; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat span { color: var(--navy-2); font-size: .95rem; font-weight: 600; }

/* ---------- cards ---------- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; background: var(--navy-2); }
.armada-card .card-img { aspect-ratio: 4 / 3; height: auto; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.08rem; }
.card-body h3 a:hover { color: var(--gold); }
.card-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.card-date { color: var(--gray); font-size: .9rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card-cta { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.card-cta .btn { flex: 1; padding: 10px 14px; }
.galeri-card img { height: 240px; }
.gallery-slider { position: relative; margin-top: 18px; }
.gallery-viewport { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-viewport:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery-track { display: flex; transition: transform .35s ease; }
.gallery-slide { width: 100%; flex-shrink: 0; height: 420px; object-fit: cover; display: block; background: var(--navy-2); }
.gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(2, 8, 20, .55); color: #fff; font-size: 1.05rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, opacity .2s; z-index: 2; }
.gallery-btn:hover { background: var(--gold); color: var(--navy); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.gallery-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(9, 30, 61, .25); cursor: pointer; transition: background .2s, transform .2s; }
.gallery-dots button.active { background: var(--gold); transform: scale(1.25); }
.info-grid { margin: 20px 0; border-top: 1px solid rgba(11, 29, 51, .08); }
.detail-wa { margin-top: 22px; width: 100%; }

/* ---------- grids ---------- */
.grid-3, .grid-2, .grid-4 { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature svg { color: var(--gold); margin-bottom: 14px; }
.feature h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature p { color: var(--gray); font-size: .93rem; }

/* ---------- badge ---------- */
.badge {
    display: inline-block;
    background: rgba(196, 162, 54, .14);
    color: var(--gold);
    border: 1px solid rgba(196, 162, 54, .4);
    padding: 3px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    width: fit-content;
}

/* ---------- page header band (list/detail pages) ---------- */
.page-hero {
    background: linear-gradient(180deg, #EEF3F8 0%, #DCE6F0 100%);
    color: var(--navy-2);
    padding: 64px 0;
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--navy-2); }
.page-hero p { color: #40536B; margin-top: 10px; max-width: 640px; margin-inline: auto; }

/* ---------- breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; color: var(--gray); margin-bottom: 26px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(90, 107, 128, .5); }

/* ---------- armada detail ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.detail-grid .card-img { height: 420px; }
.info-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(11, 29, 51, .08); }
.info-row dt { color: var(--gray); font-weight: 500; }
.info-row dd { font-weight: 600; text-align: right; }
.spec { margin-top: 14px; }
.spec ul { padding-left: 20px; list-style: disc; display: grid; gap: 6px; }
.spec li { color: var(--gray); }
.features-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.features-list li { background: rgba(196, 162, 54, .1); color: var(--navy); padding: 6px 14px; border-radius: 999px; font-size: .88rem; font-weight: 500; }
.faq { margin-top: 26px; display: grid; gap: 14px; }
.faq details { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 20px; }
.faq summary { font-weight: 700; cursor: pointer; color: var(--navy); }
.faq details p { color: var(--gray); margin-top: 10px; font-size: .95rem; }

/* ---------- blog ---------- */
.meta-row { display: flex; flex-wrap: wrap; gap: 16px; color: var(--gray); font-size: .9rem; margin-bottom: 22px; }
.meta-row a:hover { color: var(--gold); }
.article-title { margin-bottom: 14px; }
.article-wrap { max-width: 860px; }
.article-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 26px; display: block; }
.card-excerpt { color: var(--gray); font-size: .95rem; }
.read-more { color: var(--gold); font-weight: 600; font-size: .92rem; margin-top: auto; }
.read-more:hover { color: var(--navy); }
.article-cta { margin-top: 44px; }
.article { font-size: 1.04rem; color: #24344A; }
.article p { margin-bottom: 18px; }
.article h2, .article h3, .article h4 { margin: 28px 0 12px; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 18px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 6px; }
.article a { color: var(--gold); text-decoration: underline; }
.article blockquote { border-left: 4px solid var(--gold); padding: 10px 18px; margin: 0 0 18px; background: rgba(196, 162, 54, .07); border-radius: 0 var(--radius) var(--radius) 0; color: var(--gray); }
.article img { border-radius: var(--radius); margin: 10px 0 18px; }
.article strong { color: var(--navy); }
.article iframe { max-width: 100%; border-radius: var(--radius); }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.pagination a, .pagination span {
    padding: 10px 18px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    box-shadow: var(--shadow);
}
.pagination a:hover { background: var(--gold); color: var(--navy); }
.pagination .disabled { opacity: .45; pointer-events: none; }

/* ---------- cta panel ---------- */
.cta-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: 22px;
    padding: 54px 40px;
    text-align: center;
    box-shadow: 0 22px 55px rgba(9, 30, 61, .22);
}
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(236, 206, 96, .22), transparent 70%);
    pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }

/* ---------- wa float ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- footer ---------- */
.map-strip { width: 100%; height: 340px; }
.map-strip iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer { background: var(--black); color: rgba(255, 255, 255, .8); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 20px 40px; }
.footer-col h3 { color: var(--white); margin-bottom: 16px; font-size: 1.05rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.footer-brand img { border-radius: 8px; }
.footer-tagline { font-size: .93rem; margin-bottom: 16px; }
.footer-sosmed { display: flex; gap: 14px; font-size: .88rem; }
.footer-sosmed a { color: var(--gold-light); }
.footer-sosmed a:hover { color: var(--gold); }
.footer-links { display: grid; gap: 9px; font-size: .93rem; }
.footer-links a { color: rgba(255, 255, 255, .78); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0; font-size: .88rem; text-align: center; color: rgba(255, 255, 255, .55); }

/* ---------- galeri ---------- */
.galeri-grid { columns: 3 260px; column-gap: 20px; }
.galeri-item {
    break-inside: avoid;
    margin: 0 0 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.galeri-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.galeri-img { width: 100%; cursor: pointer; background: var(--navy-2); }
.galeri-item figcaption { padding: 12px 16px; font-size: .9rem; color: var(--gray); }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(5, 12, 24, .94);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1080px;
}
.lightbox-img { max-width: 80vw; max-height: 66vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { color: rgba(255, 255, 255, .85); font-size: .95rem; text-align: center; max-width: 640px; margin: 0; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}
.lightbox-close { top: 16px; right: 20px; font-size: 28px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, .3); }
.lightbox-thumbs {
    display: flex;
    gap: 10px;
    max-width: 92vw;
    overflow-x: auto;
    padding: 8px 4px 2px;
}
.lightbox-thumbs button {
    flex-shrink: 0;
    width: 76px;
    height: 50px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s;
}
.lightbox-thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox-thumbs button:hover { opacity: .9; }
.lightbox-thumbs button.active { border-color: var(--gold); opacity: 1; }
@media (max-width: 640px) {
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
    .lightbox-img { max-width: 88vw; }
}

/* ---------- tentang ---------- */
.about-wrap { max-width: 860px; margin-inline: auto; }
.about-text { color: #24344A; margin-bottom: 18px; font-size: 1.02rem; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 34px; }
.about-col { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; }
.about-col h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.about-col p { color: var(--gray); font-size: .95rem; }
.about-col ul { list-style: disc; padding-left: 20px; display: grid; gap: 8px; color: var(--gray); font-size: .95rem; }

/* ---------- kontak ---------- */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.kontak-info h2, .kontak-form h2 { margin-bottom: 20px; font-size: 1.5rem; }
.kontak-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 20px;
    margin-bottom: 14px;
}
.kontak-card svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.kontak-card h3 { font-size: .98rem; margin-bottom: 2px; }
.kontak-card p { color: var(--gray); font-size: .93rem; }
.kontak-card a { color: var(--navy); }
.kontak-card a:hover { color: var(--gold); }
.kontak-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.kontak-form .form-row { margin-bottom: 16px; }
.kontak-form label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.kontak-form input, .kontak-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font: inherit;
    font-size: .95rem;
    color: var(--navy);
    background: var(--bg);
}
.kontak-form input:focus, .kontak-form textarea:focus { outline: 2px solid rgba(196, 162, 54, .5); border-color: var(--gold); }
.kontak-error { background: #fee2e2; color: #b91c1c; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; font-size: .92rem; }
.kontak-ok { background: #dcfce7; color: #15803d; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; font-size: .92rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- media queries ---------- */
@media (max-width: 1200px) {
    .container { padding-inline: 24px; }
}
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
    .detail-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 104px; }
    .hero-content p { margin-bottom: 30px; }
    .hero-visual { max-width: 540px; margin-inline: auto; }
    .hero-stats { margin-top: -48px; padding: 0 0 24px; }
}
@media (max-width: 768px) {
    .map-strip { height: 260px; }
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--navy-2);
        padding: 12px 20px 20px;
        gap: 4px;
        border-bottom: 1px solid rgba(236, 206, 96, .25);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 14px; }
    .nav-wa { margin-left: 0; margin-top: 8px; text-align: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .about-cols, .kontak-grid { grid-template-columns: 1fr; }
    .galeri-grid { columns: 2 160px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { padding: 44px 20px 80px; }
    .hero-stats { margin-top: -32px; padding: 0 0 16px; }
    .stat { padding: 18px 10px; }
    .stat strong { font-size: 1.4rem; }
    .section-head h2 { font-size: 1.6rem; }
    .cta-panel { padding: 42px 24px; }
}
@media (max-width: 480px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; border-radius: 14px; }
    .stat { padding: 14px 6px; }
    .stat strong { font-size: 1.3rem; }
    .stat span { font-size: .85rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .bus-side { left: -14px; bottom: -22px; border-width: 4px; }
    .card-cta { flex-direction: column; }
    .pagination a, .pagination span { padding: 8px 14px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- sewa modal ---------- */
.sewa-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sewa-modal.open { display: flex; }
.sewa-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 24, .6);
    backdrop-filter: blur(2px);
}
.sewa-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px 26px;
    animation: sewaPop .25s ease;
}
@keyframes sewaPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.sewa-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--bg);
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    transition: background .2s;
}
.sewa-close:hover { background: #E5E9F0; }
.sewa-box h2 { color: var(--navy); font-size: 1.35rem; margin-bottom: 6px; }
.sewa-sub { color: var(--gray); font-size: .9rem; margin-bottom: 18px; }
.sewa-row { margin-bottom: 14px; }
.sewa-row label { display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.sewa-row .req { color: #C0392B; }
.sewa-row input, .sewa-row select, .sewa-row textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1.5px solid #D9DEE7;
    border-radius: 10px;
    font: inherit;
    font-size: .95rem;
    color: var(--navy);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.sewa-row input:focus, .sewa-row select:focus, .sewa-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 162, 54, .18);
}
.btn-block { width: 100%; justify-content: center; }
.sewa-note { font-size: .78rem; color: var(--gray); text-align: center; margin-top: 12px; }

/* ---------- testimonial ---------- */
.testimonial-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; }
.testimonial-card .testimonial-head { display: flex; align-items: center; gap: 12px; }
.testimonial-card .testimonial-head figcaption { font-weight: 700; color: var(--navy); font-size: .95rem; }
.testimonial-card .testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.testimonial-card .testimonial-stars { margin-top: 2px; }
.testimonial-card blockquote { font-size: .95rem; line-height: 1.65; color: #24344A; flex: 1; }
.testimonial-card figcaption { font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.25; }
.testimonial-stars { color: #D9A441; letter-spacing: 3px; font-size: 1.05rem; }
.testimonial-stars-empty { color: #D9DEE7; }

.tslider { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.tslider-viewport { flex: 1; overflow: hidden; }
.tslider-track { display: flex; transition: transform .5s ease; }
.tslide { flex-shrink: 0; margin-right: 18px; }
.tslider-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #D9DEE7;
    background: #fff;
    color: var(--navy);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s, color .2s;
}
.tslider-btn:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.tslider-progress { position: relative; flex: 1 0 100%; height: 6px; margin-top: 20px; border-radius: 99px; background: #E3E9F1; overflow: hidden; }
.tslider-progress-thumb { position: absolute; top: 0; left: 0; height: 100%; width: 8%; border-radius: 99px; background: var(--gold); transition: transform .35s ease; }
.tslider-more { flex: 1 0 100%; display: inline-block; text-align: center; margin-top: 16px; font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.tslider-more:hover { color: var(--gold); }
@media (max-width: 640px) {
    .tslider { flex-wrap: wrap; }
    .tslider-btn { order: 3; }
    .tslider-prev { order: 1; }
    .tslider-next { order: 2; }
}

/* ===== SIMPLE CATALOG FORMAT (Armada Detail) ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }

.gallery-col { position: sticky; top: 100px; }
.gallery-slider { border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.gallery-viewport { overflow: hidden; }
.gallery-track { display: flex; transition: transform .4s ease; }
.gallery-slide { flex-shrink: 0; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--navy); font-size: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.12); cursor: pointer; transition: background .2s, transform .2s; }
.gallery-btn:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.gallery-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #C9D2DE; transition: background .2s, transform .2s; }
.gallery-dots button.active { background: var(--gold); transform: scale(1.3); }

.info-col { display: flex; flex-direction: column; gap: 24px; }
.info-col h1 { font-size: 1.75rem; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
@media (max-width: 480px) { .info-col h1 { font-size: 1.4rem; } }

.short-desc { color: var(--gray); font-size: .95rem; line-height: 1.6; margin-bottom: 16px; }

/* Info Section */
.info-section { margin-top: 8px; }
.info-section h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--gold); padding-bottom: 6px; display: inline-block; }
.info-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; font-size: .9rem; }
@media (max-width: 480px) { .info-list { grid-template-columns: 1fr; } }
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-item dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); font-weight: 600; }
.info-item dd { font-weight: 600; color: var(--navy); font-size: .95rem; }

/* Facilities Section */
.facilities-section { margin-top: 24px; }
.facilities-section h2 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--gold); padding-bottom: 8px; display: inline-block; }
.facilities-inline { margin: 0; padding: 0; font-size: .95rem; color: #24344A; line-height: 1.8; }
.facilities-inline strong { color: var(--navy); }

/* Price & CTA — rebuilt */
.price-cta-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E3E9F1;
}

.price-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.price-value {
    display: block;
    margin-top: 6px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.cta-buttons .btn {
    height: 54px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 600;
    padding: 0 28px;
    line-height: 1;
    white-space: nowrap;
    border-radius: 8px;
}
.cta-buttons .btn-primary {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
}
.cta-buttons .btn-primary:hover {
    background: #C4A03D;
    border-color: #C4A03D;
    color: #fff;
}
.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.cta-buttons .btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

/* Gallery slider JS enhancement */
.gallery-slider[data-slider] { position: relative; }
.gallery-slider .gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.gallery-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #C9D2DE; transition: background .2s, transform .2s; }
.gallery-dots button.active { background: var(--gold); transform: scale(1.25); }
.gallery-btn { z-index: 10; }
