/* ============================================
   LIBURAN LOMBOK — Main Stylesheet
   ============================================ */

:root {
    --ll-primary:      #1A56DB;
    --ll-primary-dark: #1348B8;
    --ll-secondary:    #FF6B35;
    --ll-whatsapp:     #25D366;
    --ll-whatsapp-dark:#1DAF57;
    --ll-text:         #1a1a2e;
    --ll-text-light:   #64748b;
    --ll-bg:           #ffffff;
    --ll-bg-alt:       #f8fafc;
    --ll-border:       #e2e8f0;
    --ll-price:        #E65100;
    --ll-radius:       12px;
    --ll-radius-sm:    8px;
    --ll-shadow:       0 4px 24px rgba(0,0,0,.08);
    --ll-shadow-hover: 0 8px 32px rgba(0,0,0,.14);
    --ll-font:         'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ll-font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ll-container:    1200px;
    --ll-header-h:     64px;
    --ll-topbar-h:     34px;
    --ll-transition:   .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--ll-font);
    color: var(--ll-text);
    background: var(--ll-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ll-font-heading);
    letter-spacing: -.01em;
    line-height: 1.25;
}

/* UI chrome: keep sans-serif for nav, buttons, labels, metadata */
.ll-nav__link,
.ll-btn,
.ll-badge,
.ll-booking-card__price,
.ll-booking-card__price-label,
.ll-booking-card__price-note,
.ll-booking-card__pax,
.ll-filter-tab,
.ll-card__price,
.ll-card__meta,
.ll-card__duration,
.ll-breadcrumb,
.ll-search-form,
.ll-checklist,
.ll-highlight-list,
.ll-itinerary-timeline li,
.ll-time,
.ll-testimonial-card__quote,
.ll-testimonial-card__name,
.ll-testimonial-card__city,
.ll-testimonial-card__package,
.ll-footer,
.ll-single-content__duration,
.ll-single-content h3,
.ll-itinerary-timeline h4 {
    font-family: var(--ll-font);
    letter-spacing: normal;
}

/* ============================================
   LAYOUT
   ============================================ */
.ll-container {
    max-width: var(--ll-container);
    margin: 0 auto;
    padding: 0 24px;
}

.ll-section {
    padding: 60px 0;
}

.ll-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
}

.ll-section__title {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 700;
    color: var(--ll-text);
    line-height: 1.2;
}

.ll-section__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ll-primary);
    white-space: nowrap;
    transition: gap var(--ll-transition);
}
.ll-section__link:hover { gap: 8px; }

/* ============================================
   HEADER
   ============================================ */
/* ============================================
   TOP UTILITY BAR
   ============================================ */
.ll-topbar {
    position: relative;
    z-index: 1001;
    height: var(--ll-topbar-h);
    background: linear-gradient(90deg, #0f2a6b 0%, var(--ll-primary-dark) 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ll-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.ll-topbar__tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    white-space: nowrap;
}

.ll-topbar__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ll-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    transition: color var(--ll-transition);
    white-space: nowrap;
}

.ll-topbar__link:hover { color: #fff; }

.ll-topbar__sep {
    color: rgba(255,255,255,.25);
    font-size: .75rem;
}

/* ============================================
   HEADER
   ============================================ */
.ll-header {
    position: relative;
    z-index: 1000;
    height: var(--ll-header-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ll-border);
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: background var(--ll-transition), box-shadow var(--ll-transition);
}

.ll-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

/* Logo */
.ll-header__logo { display: flex; align-items: center; flex-shrink: 0; padding: 8px 0; }
.ll-header__logo img,
.ll-header__logo .custom-logo {
    width: auto;
    height: 44px;
    object-fit: contain;
    object-position: left center;
    display: block;
    flex-shrink: 0;
}

/* WP wraps custom logo in <a> — flatten it */
.ll-header__logo .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ll-header__logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ll-text);
}
.logo-icon { font-size: 1.5rem; }
.logo-tld { font-size: .75rem; color: var(--ll-text-light); font-weight: 400; }

/* Nav */
.ll-header__nav { flex: 1; display: flex; justify-content: center; }

.ll-nav__list {
    display: flex;
    align-items: center;
    gap: 1px;
}

.ll-nav__list li a {
    display: block;
    padding: 6px 12px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ll-text-light);
    border-radius: 6px;
    transition: background var(--ll-transition), color var(--ll-transition);
    white-space: nowrap;
    position: relative;
}

.ll-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--ll-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--ll-transition);
}

.ll-nav__list li a:hover { color: var(--ll-text); background: rgba(0,0,0,.03); }
.ll-nav__list li a:hover::after { transform: scaleX(1); }

.ll-nav__list li.current-menu-item > a {
    color: var(--ll-primary);
    font-weight: 600;
}
.ll-nav__list li.current-menu-item > a::after { transform: scaleX(1); }

/* Header Actions */
.ll-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hamburger */
.ll-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid var(--ll-border);
    border-radius: 6px;
}

.ll-header__hamburger span {
    display: block;
    height: 2px;
    background: var(--ll-text);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.ll-header__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ll-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.ll-header__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.ll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--ll-radius-sm);
    border: 2px solid transparent;
    transition: background var(--ll-transition), color var(--ll-transition),
                border-color var(--ll-transition), transform var(--ll-transition),
                box-shadow var(--ll-transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.ll-btn:hover { transform: translateY(-1px); }
.ll-btn:active { transform: translateY(0); }

.ll-btn--primary {
    background: var(--ll-primary);
    color: #fff;
    border-color: var(--ll-primary);
}
.ll-btn--primary:hover {
    background: var(--ll-primary-dark);
    border-color: var(--ll-primary-dark);
    box-shadow: 0 4px 16px rgba(26,86,219,.35);
}

.ll-btn--outline {
    background: transparent;
    color: var(--ll-primary);
    border-color: var(--ll-primary);
}
.ll-btn--outline:hover {
    background: var(--ll-primary);
    color: #fff;
}

.ll-btn--whatsapp {
    background: var(--ll-whatsapp);
    color: #fff;
    border-color: var(--ll-whatsapp);
}
.ll-btn--whatsapp:hover {
    background: var(--ll-whatsapp-dark);
    border-color: var(--ll-whatsapp-dark);
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

.ll-btn--sm { padding: 8px 16px; font-size: .8125rem; }
.ll-btn--full { width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.ll-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #1a3a5c;
}

.ll-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,30,64,.72) 0%, rgba(14,30,64,.45) 60%, rgba(14,30,64,.3) 100%);
}

.ll-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 64px;
    width: 100%;
}

.ll-hero__content {
    max-width: 700px;
    text-align: center;
}

.ll-hero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ll-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.88);
    line-height: 1.6;
}

/* Search Form */
.ll-hero__form-wrap {
    background: #fff;
    border-radius: var(--ll-radius);
    padding: 20px 24px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.2);
    width: 100%;
    max-width: 760px;
}

.ll-search-form__fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.ll-search-form__field { display: flex; flex-direction: column; gap: 4px; }

.ll-search-form__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--ll-text-light);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ll-search-form__input {
    width: 100%;
    padding: 10px 12px;
    font-size: .9375rem;
    font-family: inherit;
    color: var(--ll-text);
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius-sm);
    background: var(--ll-bg-alt);
    outline: none;
    transition: border-color var(--ll-transition);
    appearance: none;
    -webkit-appearance: none;
}

.ll-search-form__input:focus { border-color: var(--ll-primary); background: #fff; }

/* ============================================
   CATEGORIES
   ============================================ */
.ll-categories {
    padding: 48px 0;
    background: var(--ll-bg);
    border-bottom: 1px solid var(--ll-border);
}

.ll-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ll-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px 24px;
    border-radius: var(--ll-radius);
    border: 1.5px solid var(--ll-border);
    background: #fff;
    transition: border-color var(--ll-transition), box-shadow var(--ll-transition), transform var(--ll-transition);
    text-decoration: none;
}

.ll-category-card:hover {
    border-color: var(--ll-primary);
    box-shadow: 0 6px 24px rgba(0,0,0,.09);
    transform: translateY(-3px);
}

.ll-category-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ll-category-card__icon svg { width: 44px; height: 44px; }

.ll-category-card__label {
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.ll-packages { background: var(--ll-bg-alt); }

.ll-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ll-package-card {
    background: #fff;
    border-radius: var(--ll-radius);
    overflow: hidden;
    box-shadow: var(--ll-shadow);
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
    display: flex;
    flex-direction: column;
}

.ll-package-card:hover {
    box-shadow: var(--ll-shadow-hover);
    transform: translateY(-4px);
}

.ll-package-card__img-link { position: relative; display: block; }

.ll-package-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 2.8;
}

.ll-package-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.ll-package-card:hover .ll-package-card__img { transform: scale(1.04); }

.ll-package-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .6875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ll-package-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.ll-package-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.ll-package-card__title a:hover { color: var(--ll-primary); }

.ll-package-card__duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8125rem;
    color: var(--ll-text-light);
}

.ll-package-card__price { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }

.ll-package-card__price-label {
    font-size: .75rem;
    color: var(--ll-text-light);
}

.ll-package-card__price-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ll-price);
}

.ll-package-card__actions {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--ll-border);
}

/* ============================================
   DESTINATIONS
   ============================================ */
.ll-destinations { background: var(--ll-bg); }

.ll-destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ll-destination-card {
    position: relative;
    display: block;
    border-radius: var(--ll-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--ll-shadow);
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
}

.ll-destination-card:hover {
    box-shadow: var(--ll-shadow-hover);
    transform: translateY(-2px);
}

.ll-destination-card__img-wrap { width: 100%; height: 100%; }

.ll-destination-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.ll-destination-card:hover .ll-destination-card__img { transform: scale(1.06); }

.ll-destination-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 12px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    display: flex;
    align-items: flex-end;
}

.ll-destination-card__name {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* ============================================
   WHY US
   ============================================ */
.ll-why-us { background: var(--ll-bg-alt); }

.ll-why-us__head { margin-bottom: 48px; }
.ll-why-us__title { margin-bottom: 0; }

.ll-why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ll-why-us__card,
.ll-why-us__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 20px 24px;
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
}

.ll-why-us__card:hover,
.ll-why-us__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.ll-why-us__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ll-why-us__icon svg { width: 32px; height: 32px; }

.ll-why-us__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ll-why-us__label { font-size: 1rem; font-weight: 700; color: var(--ll-text); }
.ll-why-us__desc { font-size: .875rem; color: var(--ll-text-light); line-height: 1.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.ll-testimonials { background: var(--ll-bg); }

.ll-testimonials__swiper { padding-bottom: 40px !important; }

.ll-testimonial-card {
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.ll-testimonial-card__header { display: flex; align-items: center; gap: 12px; }

.ll-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ll-testimonial-card__name { font-size: .9375rem; font-weight: 700; display: block; }
.ll-testimonial-card__city { font-size: .8125rem; color: var(--ll-text-light); display: block; }

.ll-stars { display: flex; gap: 2px; }
.star--filled { color: #F59E0B; font-size: 1.125rem; }
.star--empty { color: #D1D5DB; font-size: 1.125rem; }

.ll-testimonial-card__quote {
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--ll-text);
    font-style: italic;
    flex: 1;
}

.ll-testimonial-card__package {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--ll-text-light);
    border-top: 1px solid var(--ll-border);
    padding-top: 12px;
}

.ll-testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--ll-primary) !important;
}

/* ============================================
   CTA
   ============================================ */
.ll-cta {
    background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%);
    padding: 60px 0;
}

.ll-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ll-cta__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.ll-cta__subtitle {
    font-size: .9375rem;
    color: rgba(255,255,255,.85);
    max-width: 400px;
}

.ll-cta__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

.ll-cta .ll-btn--primary {
    background: #fff;
    color: var(--ll-primary);
    border-color: #fff;
}

.ll-cta .ll-btn--primary:hover {
    background: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.ll-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ll-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: background var(--ll-transition), transform var(--ll-transition), box-shadow var(--ll-transition);
}

.ll-wa-float:hover {
    background: var(--ll-whatsapp-dark);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ============================================
   FOOTER
   ============================================ */
.ll-footer { background: #0F172A; color: #94A3B8; }

.ll-footer__main { padding: 60px 0; }

.ll-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
}

.ll-footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
}

.ll-footer__desc {
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #94A3B8;
}

.ll-footer__social {
    display: flex;
    gap: 10px;
}

.ll-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: background var(--ll-transition), color var(--ll-transition);
}

.ll-social-icon:hover { background: var(--ll-primary); color: #fff; }

.ll-footer__col-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.ll-footer__links li { margin-bottom: 8px; }
.ll-footer__links a {
    font-size: .875rem;
    color: #94A3B8;
    transition: color var(--ll-transition);
}
.ll-footer__links a:hover { color: #fff; }

.ll-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.ll-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .875rem;
    color: #94A3B8;
}
.ll-footer__contact svg { flex-shrink: 0; margin-top: 2px; }
.ll-footer__contact a { color: #94A3B8; transition: color var(--ll-transition); }
.ll-footer__contact a:hover { color: #fff; }

.ll-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}

.ll-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ll-footer__copy { font-size: .8125rem; color: #64748B; }

.ll-footer__legal {
    display: flex;
    gap: 20px;
}

.ll-footer__legal a {
    font-size: .8125rem;
    color: #64748B;
    transition: color var(--ll-transition);
}
.ll-footer__legal a:hover { color: #94A3B8; }

/* ============================================
   SINGLE PAGE
   ============================================ */
.ll-single-hero {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.ll-single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,.55));
}

.ll-single-hero .ll-container { position: relative; z-index: 1; padding-bottom: 24px; }

.ll-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    color: rgba(255,255,255,.8);
}

.ll-breadcrumb a { color: rgba(255,255,255,.8); }
.ll-breadcrumb a:hover { color: #fff; }

.ll-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 60px;
    align-items: start;
}

.ll-single-content__header { margin-bottom: 24px; }
.ll-single-content__title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800; margin-bottom: 8px; }
.ll-single-content__duration { display: flex; align-items: center; gap: 6px; color: var(--ll-text-light); font-size: .9375rem; }
.ll-single-content__highlights,
.ll-single-content__itinerary,
.ll-single-content__includes-excludes,
.ll-single-content__body { margin-bottom: 32px; }

.ll-single-content h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 16px; }
.ll-single-content h3 { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }

.ll-single-content__includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ll-single-content__includes,
.ll-single-content__excludes {
    border-radius: var(--ll-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--ll-border);
}

.ll-single-content__includes h3 {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #fff;
    padding: 12px 20px;
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
}

.ll-single-content__includes h3 svg { stroke: #fff; }

.ll-single-content__excludes h3 {
    background: linear-gradient(135deg, #7f1d1d 0%, #C62828 100%);
    color: #fff;
    padding: 12px 20px;
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
}

.ll-single-content__excludes h3 svg { stroke: #fff; }

.ll-highlight-list { display: flex; flex-direction: column; gap: 8px; }
.ll-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9375rem;
}
.ll-highlight-list li::before {
    content: '✦';
    color: var(--ll-primary);
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.ll-checklist { display: flex; flex-direction: column; gap: 0; background: #fff; }
.ll-checklist li {
    font-size: .875rem;
    padding: 10px 20px 10px 44px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid var(--ll-border);
    transition: background var(--ll-transition);
}
.ll-checklist li:last-child { border-bottom: none; }
.ll-checklist li:hover { background: var(--ll-bg-alt); }
.ll-checklist--include li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #2E7D32;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .65rem;
    font-weight: 900;
    box-shadow: 0 1px 4px rgba(46,125,50,.35);
}

.ll-checklist--exclude li::before {
    content: '✕';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #C62828;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .6rem;
    font-weight: 900;
    box-shadow: 0 1px 4px rgba(198,40,40,.35);
}

/* Booking Card */
.ll-booking-card {
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 24px;
    box-shadow: var(--ll-shadow);
}

.ll-booking-card__price-block { display: flex; flex-direction: column; gap: 4px; }
.ll-booking-card__price-label { font-size: .8125rem; color: var(--ll-text-light); }
.ll-booking-card__price { font-size: 1.625rem; font-weight: 800; color: var(--ll-price); }
.ll-booking-card__price-note { font-size: .8125rem; color: var(--ll-text-light); }
.ll-booking-card__pax {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    color: var(--ll-text-light);
    padding: 10px;
    background: var(--ll-bg-alt);
    border-radius: 6px;
}

/* ============================================
   ARCHIVE
   ============================================ */
.ll-archive-hero {
    /* Header is in normal flow (not fixed), so this section sits right below it.
       Plain symmetric padding — equal top & bottom. */
    padding: 32px 0;
    background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%);
}

.ll-archive-hero__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
}

.ll-archive-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    margin: 0;
    line-height: 1.5;
}

.ll-archive-layout { padding: 40px 24px 60px; }

.ll-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.ll-filter-tab {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 500;
    border: 1.5px solid var(--ll-border);
    color: var(--ll-text-light);
    transition: background var(--ll-transition), color var(--ll-transition), border-color var(--ll-transition);
}

.ll-filter-tab:hover,
.ll-filter-tab--active {
    background: var(--ll-primary);
    color: #fff;
    border-color: var(--ll-primary);
}

.ll-archive-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--ll-text-light);
}

/* Destinasi Archive Grid */
.ll-destarchive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) { .ll-destarchive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ll-destarchive-grid { grid-template-columns: 1fr; } }

.ll-destarchive-card {
    background: #fff;
    border-radius: var(--ll-radius);
    overflow: hidden;
    box-shadow: var(--ll-shadow);
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
    display: flex;
    flex-direction: column;
}

.ll-destarchive-card:hover {
    box-shadow: var(--ll-shadow-hover);
    transform: translateY(-3px);
}

.ll-destarchive-card__img-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ll-destarchive-card__img-wrap { width: 100%; height: 100%; }

.ll-destarchive-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.ll-destarchive-card:hover .ll-destarchive-card__img { transform: scale(1.05); }

.ll-destarchive-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.25));
    pointer-events: none;
}

.ll-destarchive-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ll-destarchive-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.ll-destarchive-card__title a { color: var(--ll-text); }
.ll-destarchive-card__title a:hover { color: var(--ll-primary); }

.ll-destarchive-card__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8125rem;
    color: var(--ll-text-light);
    margin: 0;
}

.ll-destarchive-card__excerpt {
    font-size: .875rem;
    color: var(--ll-text-light);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ll-destarchive-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ll-primary);
    margin-top: auto;
    padding-top: 4px;
}

.ll-destarchive-card__cta:hover { gap: 8px; }

/* Page content */
.ll-page-hero {
    padding: 56px 0;
    background: var(--ll-bg-alt);
    border-bottom: 1px solid var(--ll-border);
}

.ll-page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}
.ll-page-content { padding: 48px 24px 64px; }
.ll-page-content p,
.ll-page-content ul,
.ll-page-content ol { margin-bottom: 16px; }

/* Main padding-top for non-hero pages */
.ll-main--page,
.ll-main--archive,
.ll-main--single { padding-top: 0; }

/* ============================================
   GALLERY
   ============================================ */
.ll-single-content__gallery { margin-bottom: 32px; }
.ll-single-content__gallery h2 { margin-bottom: 16px; }

.ll-gallery-swiper {
    border-radius: var(--ll-radius);
    overflow: hidden;
}

.ll-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--ll-radius-sm);
    aspect-ratio: 4 / 3;
    background: var(--ll-bg-alt);
}

.ll-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.ll-gallery__item:hover img { transform: scale(1.05); }

.ll-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
}

.ll-gallery__item:hover .ll-gallery__zoom { opacity: 1; }

.ll-gallery-swiper .swiper-button-prev,
.ll-gallery-swiper .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,.45);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.ll-gallery-swiper .swiper-button-prev::after,
.ll-gallery-swiper .swiper-button-next::after { font-size: .875rem; font-weight: 700; }

.ll-gallery-swiper .swiper-pagination-bullet-active { background: var(--ll-primary) !important; }

/* Lightbox */
.ll-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.ll-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.ll-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(6px);
}

.ll-lightbox__wrap {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1200px);
    max-height: 90vh;
}

.ll-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--ll-radius-sm);
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    display: block;
}

.ll-lightbox__close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--ll-transition);
    backdrop-filter: blur(4px);
}

.ll-lightbox__close:hover { background: rgba(255,255,255,.25); }

/* ============================================
   ITINERARY TIMELINE
   ============================================ */
.ll-itinerary-timeline {
    counter-reset: ll-day;
}

.ll-itinerary-timeline {
    counter-reset: ll-day;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ll-itinerary-timeline h4 {
    counter-increment: ll-day;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%);
    border-radius: var(--ll-radius-sm) var(--ll-radius-sm) 0 0;
    margin: 0;
    box-shadow: 0 2px 12px rgba(26,86,219,.2);
}

.ll-itinerary-timeline h4::before {
    content: counter(ll-day);
    min-width: 32px;
    height: 32px;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8125rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0;
}

.ll-itinerary-timeline ul {
    padding: 0;
    margin: 0;
    border: 1.5px solid var(--ll-border);
    border-top: none;
    border-radius: 0 0 var(--ll-radius-sm) var(--ll-radius-sm);
    background: #fff;
}

.ll-itinerary-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 20px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--ll-text);
    border-bottom: 1px solid var(--ll-border);
    transition: background var(--ll-transition);
}

.ll-itinerary-timeline li:hover { background: var(--ll-bg-alt); }

.ll-itinerary-timeline li:last-child { border-bottom: none; }

.ll-time {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: .75rem;
    font-weight: 700;
    color: var(--ll-primary);
    background: rgba(26,86,219,.08);
    padding: 3px 9px;
    border-radius: 5px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .03em;
    white-space: nowrap;
    margin-top: 2px;
    min-width: 52px;
    justify-content: center;
}

.ll-itinerary-timeline li span.ll-act {
    flex: 1;
}

/* ============================================
   PAGE TEMPLATES — Sewa Mobil, Tentang, Kontak, Galeri, Blog
   ============================================ */

/* Page Hero variants */
.ll-page-hero__sub {
    font-size: 1rem;
    color: var(--ll-text-light);
    margin-top: 10px;
    line-height: 1.6;
}
.ll-page-hero--sewa,
.ll-page-hero--tentang,
.ll-page-hero--kontak,
.ll-page-hero--galeri,
.ll-page-hero--dokumentasi {
    background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%);
}
.ll-page-hero--sewa .ll-page-hero__title,
.ll-page-hero--tentang .ll-page-hero__title,
.ll-page-hero--kontak .ll-page-hero__title,
.ll-page-hero--galeri .ll-page-hero__title,
.ll-page-hero--dokumentasi .ll-page-hero__title { color: #fff; }
.ll-page-hero--sewa .ll-page-hero__sub,
.ll-page-hero--tentang .ll-page-hero__sub,
.ll-page-hero--kontak .ll-page-hero__sub,
.ll-page-hero--galeri .ll-page-hero__sub,
.ll-page-hero--dokumentasi .ll-page-hero__sub { color: rgba(255,255,255,.85); }

/* ---- Sewa Mobil ---- */
.ll-sewa-content { margin-bottom: 40px; }

.ll-sewa-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.ll-sewa-content h3 {
    font-size: 1.125rem;
    margin: 28px 0 10px;
}

.ll-sewa-content p { margin-bottom: 14px; color: var(--ll-text-light); line-height: 1.7; }

.ll-sewa-content ul,
.ll-sewa-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.ll-sewa-content li {
    margin-bottom: 6px;
    line-height: 1.65;
    color: var(--ll-text-light);
}

/* Vehicle table */
.ll-vehicle-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--ll-radius);
    overflow: hidden;
    box-shadow: var(--ll-shadow);
    margin: 20px 0 32px;
    font-size: .9375rem;
}

.ll-vehicle-table thead tr { background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%); }
.ll-vehicle-table thead th {
    padding: 14px 16px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .02em;
}

.ll-vehicle-table tbody tr { border-bottom: 1px solid var(--ll-border); background: #fff; }
.ll-vehicle-table tbody tr:nth-child(even) { background: var(--ll-bg-alt); }
.ll-vehicle-table tbody tr:hover { background: rgba(26,86,219,.04); }

.ll-vehicle-table td {
    padding: 13px 16px;
    color: var(--ll-text);
    vertical-align: middle;
}

.ll-vehicle-table td:nth-child(3) {
    font-weight: 700;
    color: var(--ll-price);
}

@media (max-width: 640px) {
    .ll-vehicle-table { font-size: .8125rem; }
    .ll-vehicle-table th,
    .ll-vehicle-table td { padding: 10px 10px; }
}

/* Sewa CTA bar */
.ll-sewa-cta {
    background: var(--ll-bg-alt);
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 28px 32px;
    margin-top: 8px;
}
.ll-sewa-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ll-sewa-cta__inner h3 { font-size: 1.25rem; margin-bottom: 6px; }
.ll-sewa-cta__inner p { color: var(--ll-text-light); margin: 0; }

/* ---- Tentang Kami ---- */
.ll-about-intro {
    max-width: 760px;
    margin-bottom: 40px;
}
.ll-about-intro h2 { font-size: 1.75rem; margin-bottom: 16px; }
.ll-about-intro p { line-height: 1.75; color: var(--ll-text-light); margin-bottom: 14px; }

.ll-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}
@media (max-width: 768px) { .ll-about-stats { grid-template-columns: repeat(2, 1fr); } }

.ll-about-stat {
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--ll-shadow);
}
.ll-about-stat__num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ll-primary);
    font-family: var(--ll-font-heading);
    line-height: 1;
    margin-bottom: 8px;
}
.ll-about-stat__label {
    display: block;
    font-size: .8125rem;
    color: var(--ll-text-light);
    font-weight: 500;
}

.ll-about-values { margin-bottom: 56px; }
.ll-about-values h2 { font-size: 1.5rem; margin-bottom: 24px; }

.ll-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .ll-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ll-values-grid { grid-template-columns: 1fr; } }

.ll-value-card {
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 24px 20px;
    box-shadow: var(--ll-shadow);
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
}
.ll-value-card:hover { box-shadow: var(--ll-shadow-hover); transform: translateY(-2px); }
.ll-value-card__icon { font-size: 2rem; margin-bottom: 12px; }
.ll-value-card h3 { font-size: 1rem; margin-bottom: 8px; font-family: var(--ll-font); }
.ll-value-card p { font-size: .875rem; color: var(--ll-text-light); line-height: 1.6; margin: 0; }

.ll-about-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--ll-primary) 0%, #1348B8 100%);
    border-radius: var(--ll-radius);
    margin-bottom: 16px;
}
.ll-about-cta h2 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.ll-about-cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

/* ---- Kontak ---- */
.ll-kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) { .ll-kontak-grid { grid-template-columns: 1fr; } }

.ll-kontak-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ll-kontak-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius-sm);
    padding: 16px 20px;
    transition: border-color var(--ll-transition), box-shadow var(--ll-transition);
    text-decoration: none;
    color: var(--ll-text);
}
.ll-kontak-card:hover { border-color: var(--ll-primary); box-shadow: var(--ll-shadow); }

.ll-kontak-card--wa {
    background: #f0fdf4;
    border-color: #86efac;
}
.ll-kontak-card--wa:hover { border-color: var(--ll-whatsapp); }
.ll-kontak-card--wa .ll-kontak-card__icon { color: var(--ll-whatsapp); background: #dcfce7; }

.ll-kontak-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(26,86,219,.08);
    color: var(--ll-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.ll-kontak-card__label { font-size: .75rem; color: var(--ll-text-light); margin: 0 0 2px; }
.ll-kontak-card__val { font-size: .9375rem; font-weight: 600; margin: 0; }

.ll-kontak-form-wrap h2 { font-size: 1.375rem; margin-bottom: 8px; }
.ll-kontak-form-wrap > p { color: var(--ll-text-light); margin-bottom: 20px; font-size: .9375rem; }

.ll-kontak-form { display: flex; flex-direction: column; gap: 16px; }

.ll-form-group { display: flex; flex-direction: column; gap: 6px; }
.ll-form-group label { font-size: .875rem; font-weight: 600; color: var(--ll-text); }
.ll-form-group input,
.ll-form-group select,
.ll-form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius-sm);
    font-size: .9375rem;
    font-family: var(--ll-font);
    color: var(--ll-text);
    background: #fff;
    transition: border-color var(--ll-transition);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.ll-form-group input:focus,
.ll-form-group select:focus,
.ll-form-group textarea:focus { border-color: var(--ll-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.ll-form-group textarea { resize: vertical; }

/* ---- Galeri Page ---- */
.ll-galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 1024px) { .ll-galeri-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .ll-galeri-grid { grid-template-columns: repeat(2, 1fr); } }

.ll-galeri-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--ll-radius-sm);
    aspect-ratio: 1;
    background: var(--ll-bg-alt);
}

.ll-galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.ll-galeri-item:hover img { transform: scale(1.06); }

.ll-galeri-item__zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    opacity: 0;
    transition: opacity var(--ll-transition);
}
.ll-galeri-item:hover .ll-galeri-item__zoom { opacity: 1; }

.ll-galeri-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--ll-transition);
}
.ll-galeri-item:hover .ll-galeri-item__caption { opacity: 1; }

/* ---- Dokumentasi Liburan ---- */
.ll-dokum-intro {
    max-width: 720px;
    margin-bottom: 32px;
}
.ll-dokum-intro p { line-height: 1.75; color: var(--ll-text-light); margin-bottom: 12px; }

.ll-galeri-grid--doc { margin-bottom: 40px; }

.ll-dokum-empty { text-align: center; padding: 60px 0; }
.ll-dokum-empty p { color: var(--ll-text-light); margin-bottom: 20px; }

.ll-dokum-cta {
    background: var(--ll-bg-alt);
    border: 1.5px solid var(--ll-border);
    border-radius: var(--ll-radius);
    padding: 32px;
    text-align: center;
}
.ll-dokum-cta h3 { font-size: 1.25rem; margin-bottom: 10px; }
.ll-dokum-cta p { color: var(--ll-text-light); margin-bottom: 20px; }

/* ---- Blog ---- */
.ll-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .ll-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ll-blog-grid { grid-template-columns: 1fr; } }

.ll-blog-card {
    background: #fff;
    border-radius: var(--ll-radius);
    overflow: hidden;
    box-shadow: var(--ll-shadow);
    transition: box-shadow var(--ll-transition), transform var(--ll-transition);
}
.ll-blog-card:hover { box-shadow: var(--ll-shadow-hover); transform: translateY(-3px); }

.ll-blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.ll-blog-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ll-blog-card:hover .ll-blog-card__img { transform: scale(1.04); }

.ll-blog-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.ll-blog-card__date { font-size: .75rem; color: var(--ll-text-light); margin: 0; }
.ll-blog-card__title { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.3; }
.ll-blog-card__title a { color: var(--ll-text); }
.ll-blog-card__title a:hover { color: var(--ll-primary); }

/* ============================================
   DESTINATION — Related Packages
   ============================================ */
.ll-dest-packages {
    padding: 56px 0;
    background: var(--ll-bg-alt);
    border-top: 1px solid var(--ll-border);
}
.ll-blog-card__excerpt { font-size: .875rem; color: var(--ll-text-light); line-height: 1.55; margin: 0; }
