/* ============================================================
   SONDAX TRAVEL - Common / Shared Stylesheet
   Colors: Primary #06295b | Secondary #1e5a85 | Accent #f5a623
   Font: Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --color-primary: #06295b;
    --color-primary-dark: #041d40;
    --color-secondary: #1e5a85;
    --color-accent: #f5a623;
    --color-accent-dark: #d4891a;
    --color-white: #ffffff;
    --color-text: #06295b;
    --color-muted: #5a6b7e;
    --color-muted-bg: #eef0f3;
    --color-border: #c8d2dc;
    --color-card: #ffffff;
    --color-success: #1fa360;
    --font-main: 'Montserrat', sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: #f8f9fb;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 68px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 0.9375rem; outline: none; }

/* ---- CONTAINER ---- */
.st-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ---- TYPOGRAPHY ---- */
.st-heading { font-weight: 700; line-height: 1.25; }
.st-sub-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,166,35,0.15);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600;
    margin-bottom: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.st-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
.st-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.st-logo img { height: 44px; width: auto; }
.st-logo { display: flex; align-items: center; }
.st-nav { display: flex; align-items: center; gap: 4px; }
.st-nav-link { padding: 8px 16px; font-size: 0.875rem; font-weight: 600; color: var(--color-secondary); border-radius: var(--radius); transition: background var(--transition), color var(--transition); }
.st-nav-link:hover, .st-nav-link.active { background: rgba(30,90,133,0.1); color: var(--color-secondary); }
.st-nav-dropdown { position: relative; }
.st-nav-dropdown-btn { display: flex; align-items: center; gap: 4px; padding: 8px 16px; font-size: 0.875rem; font-weight: 600; color: var(--color-secondary); border-radius: var(--radius); transition: background var(--transition); background: none; }
.st-nav-dropdown-btn:hover { background: rgba(30,90,133,0.1); }
.st-nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.st-nav-dropdown:hover .st-nav-dropdown-btn svg { transform: rotate(180deg); }
.st-dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; width: 220px; background: var(--color-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--color-border); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); z-index: 100; }
.st-nav-dropdown:hover .st-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.st-dropdown-item { display: block; padding: 10px 16px; font-size: 0.875rem; color: var(--color-secondary); transition: background var(--transition); }
.st-dropdown-item:hover { background: var(--color-muted-bg); }
.st-header-cta { display: flex; align-items: center; gap: 10px; }
.st-mobile-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--color-secondary); }
.st-mobile-toggle svg { width: 24px; height: 24px; }
.st-mobile-menu { display: none; flex-direction: column; background: var(--color-primary); border-top: 1px solid rgba(255,255,255,0.1); max-height: 80vh; overflow-y: auto; padding: 12px; gap: 4px; }
.st-mobile-menu.open { display: flex; }
.st-mobile-nav-link { display: block; padding: 12px 16px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); border-radius: var(--radius); transition: background var(--transition), color var(--transition); }
.st-mobile-nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.st-mobile-nav-link.active { background: rgba(255,255,255,0.12); color: #fff; border-left: 3px solid var(--color-accent); }
.st-mobile-nav-link.st-mobile-sub { padding-left: 32px; font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.65); }
.st-mobile-nav-link.st-mobile-sub:hover { color: rgba(255,255,255,0.9); }
.st-mobile-group-label { padding: 8px 16px; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.st-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; border-radius: var(--radius); font-size: 0.9375rem; font-weight: 600; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; line-height: 1.4; white-space: nowrap; }
.st-btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.st-btn-primary:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }
.st-btn-secondary { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.st-btn-secondary:hover { opacity: 0.9; }
.st-btn-outline { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.st-btn-outline:hover { background: var(--color-secondary); color: #fff; }
.st-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.st-btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }
.st-btn-sm { padding: 7px 16px; font-size: 0.8125rem; }
.st-btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ============================================================
   BADGES
   ============================================================ */
.st-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.st-badge-secondary { background: rgba(30,90,133,0.12); color: var(--color-secondary); }
.st-badge-accent { background: var(--color-accent); color: #fff; }
.st-badge-muted { background: var(--color-muted-bg); color: var(--color-muted); border: 1px solid var(--color-border); }
.st-badge-white { background: rgba(255,255,255,0.25); color: #fff; backdrop-filter: blur(4px); }

/* ============================================================
   CARDS
   ============================================================ */
.st-card { background: var(--color-card); border-radius: var(--radius-lg); border: 1px solid var(--color-border); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); height: 100%; }
.st-card:hover { box-shadow: var(--shadow-lg); }
.st-card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.st-card-body { padding: 20px; }
.st-card-body-lg { padding: 28px; }

/* ============================================================
   SERVICE CARDS (workshop, day tour - shared)
   ============================================================ */
.st-service-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.st-hscroll-cards { display: flex; flex-wrap: nowrap; gap: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; scroll-snap-type: x mandatory; }
.st-hscroll-cards::-webkit-scrollbar { display: none; }
.st-hscroll-cards > * { flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start; min-width: 0; }
.st-scroll-nav { position: relative; }
.st-scroll-btn { position: absolute; top: 38%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--color-border); box-shadow: 0 2px 10px rgba(0,0,0,0.14); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; color: var(--color-text); transition: background 0.2s, color 0.2s, border-color 0.2s; padding: 0; line-height: 1; }
.st-scroll-btn:hover:not(:disabled) { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.st-scroll-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.st-scroll-btn-prev { left: -20px; }
.st-scroll-btn-next { right: -20px; }
.st-service-grid-2 { grid-template-columns: repeat(2, 1fr); }
.st-service-card { display: flex; flex-direction: column; }
.st-service-img { position: relative; height: 256px; overflow: hidden; }
.st-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.st-card:hover .st-service-img img { transform: scale(1.08); }
.st-service-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(6,41,91,0.7), transparent); padding: 16px; }
.st-service-img-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.st-service-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.st-service-meta { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--color-muted); margin-bottom: 8px; }
.st-service-meta svg { width: 12px; height: 12px; }
.st-service-title { font-size: 1.125rem; font-weight: 700; color: var(--color-text); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-service-desc { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.st-service-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.st-service-price { font-size: 1.375rem; font-weight: 700; color: var(--color-text); }
.st-service-price-sub { font-size: 0.75rem; color: var(--color-muted); }
.st-service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.st-service-tag { font-size: 0.75rem; padding: 4px 10px; background: var(--color-muted-bg); border-radius: var(--radius); color: var(--color-muted); }
.st-service-info { display: flex; align-items: center; gap: 16px; font-size: 0.75rem; color: var(--color-muted); }
.st-service-info span { display: flex; align-items: center; gap: 4px; }
.st-service-info svg { width: 12px; height: 12px; }

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.st-section { padding: 80px 0; }
.st-section-muted { background: var(--color-muted-bg); }
.st-section-white { background: #fff; }
.st-section-primary { background: var(--color-primary); }
.st-section-header { text-align: center; margin-bottom: 48px; }
.st-section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
.st-section-title-white { color: #fff; }
.st-section-desc { color: var(--color-muted); max-width: 640px; margin: 0 auto; }
.st-section-desc-white { color: rgba(255,255,255,0.75); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.st-page-header { background: var(--color-primary); padding: 80px 0; text-align: center; margin-top: 0; position: relative; overflow: hidden; }
.st-page-header::before { content: ''; position: absolute; top: -40px; right: -40px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
.st-page-header::after { content: ''; position: absolute; bottom: -60px; left: -20px; width: 200px; height: 200px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
.st-page-header-content { position: relative; z-index: 1; }
.st-page-header-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.st-page-header-desc { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ---- Decorative sketch icons ---- */
.st-sketch {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
    max-width: none;
}
.st-sketch-sm { width: 120px; height: 120px; }
.st-sketch-md { width: 180px; height: 180px; }
.st-sketch-lg { width: 260px; height: 260px; }
.st-sketch-white { filter: brightness(0) invert(1); }
@media (max-width: 768px) {
    .st-sketch-lg { width: 140px; height: 140px; }
    .st-sketch-md { width: 100px; height: 100px; }
    .st-sketch { opacity: 0.4; }
}

/* ============================================================
   FILTER / SEARCH BAR
   ============================================================ */
.st-filter-bar { padding: 24px 0; }
.st-search-box { position: relative; max-width: 400px; }
.st-search-box svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--color-muted); pointer-events: none; }
.st-search-input { width: 100%; padding: 10px 14px 10px 42px; border: 1px solid var(--color-border); border-radius: var(--radius); font-size: 0.9rem; background: #fff; color: var(--color-text); transition: border-color var(--transition); }
.st-search-input:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(30,90,133,0.1); }
.st-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.st-chip { padding: 6px 16px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600; border: 1.5px solid var(--color-border); background: #fff; color: var(--color-muted); cursor: pointer; transition: all var(--transition); }
.st-chip.active, .st-chip:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

/* ============================================================
   TABS (Detail pages & Index category tabs)
   ============================================================ */
.st-tabs-wrap { }
.st-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
}
.st-tabs::-webkit-scrollbar { display: none; }
.st-tab-btn {
    padding: 12px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-muted);
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
    background: none;
    font-family: var(--font-main);
}
.st-tab-btn:hover { color: var(--color-secondary); }
.st-tab-btn.active { color: var(--color-secondary); border-bottom-color: var(--color-secondary); }
.st-tab-pane { display: none; }
.st-tab-pane.active { display: block; }

/* Index category tabs (above list) */
.st-index-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.st-index-tab-btn { padding: 8px 18px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600; border: 1.5px solid var(--color-border); background: #fff; color: var(--color-muted); cursor: pointer; transition: all var(--transition); font-family: var(--font-main); }
.st-index-tab-btn:hover, .st-index-tab-btn.active { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

/* ============================================================
   DETAIL PAGE LAYOUT
   ============================================================ */
.st-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 48px 0; }
/* Gallery grid: 1 large left (60%) + 4 small right 2x2 (40%) */
.st-gallery-grid { display: grid; grid-template-columns: 3fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; overflow: hidden; height: 420px; margin-bottom: 28px; }
.st-gallery-grid .st-gallery-main { grid-row: 1 / 3; grid-column: 1; position: relative; cursor: pointer; }
.st-gallery-grid .st-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.st-gallery-grid .st-gallery-sub { position: relative; overflow: hidden; cursor: pointer; }
.st-gallery-grid .st-gallery-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.st-gallery-grid .st-gallery-sub:hover img { transform: scale(1.05); }
.st-gallery-grid .st-gallery-more { position: absolute; inset: 0; background: rgba(6,41,91,0.55); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; font-weight: 700; backdrop-filter: blur(2px); cursor: pointer; }
/* Only 1 image → full width */
.st-gallery-grid.st-gallery-single { grid-template-columns: 1fr; }
.st-gallery-grid.st-gallery-single .st-gallery-main { grid-row: auto; }

@media (max-width: 768px) {
    .st-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; gap: 4px; }
    .st-gallery-grid .st-gallery-main { grid-row: auto; grid-column: auto; aspect-ratio: 16/9; }
    .st-gallery-grid.st-gallery-has-subs { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
    .st-gallery-grid.st-gallery-has-subs .st-gallery-main { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16/9; }
    .st-gallery-grid .st-gallery-sub { height: 80px; }
    .st-gallery-grid .st-gallery-sub:nth-child(n+5) { display: none; }
}
.st-detail-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 14px; }
.st-detail-section { margin-bottom: 28px; }
.st-detail-section-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--color-border); }
.st-detail-features { display: flex; flex-direction: column; gap: 8px; }
.st-detail-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--color-text); }
.st-detail-feature svg { width: 16px; height: 16px; color: var(--color-success); flex-shrink: 0; }
.st-booking-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 28px; position: sticky; top: 88px; box-shadow: var(--shadow-md); }
.st-booking-price { font-size: 2rem; font-weight: 800; color: var(--color-text); }
.st-booking-price-sub { font-size: 0.8125rem; color: var(--color-muted); }
.st-booking-divider { border: none; border-top: 1px solid var(--color-border); margin: 18px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.st-footer { background: #1a1e58; color: #b8cce0; padding: 56px 0 0; }
.st-footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.st-footer-logo-wrap { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; text-decoration: none; }
.st-footer-logo-img { height: 48px; width: auto; display: block; }
.st-footer-logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.st-footer-logo-text { display: flex; flex-direction: column; gap: 1px; }
.st-footer-logo-name { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 0.06em; font-family: Georgia,'Times New Roman',serif; line-height: 1.2; }
.st-footer-logo-tagline { font-size: 9px; color: #8088c0; letter-spacing: 0.12em; font-style: italic; }
.st-footer-brand-desc { font-size: 0.875rem; color: #8899c8; line-height: 1.7; }
.st-footer-heading { color: #e0eaf5; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.st-footer-links { list-style: none; }
.st-footer-links li { margin-bottom: 8px; }
.st-footer-link { color: #8899c8; text-decoration: none; font-size: 13.5px; transition: color 0.18s, padding-left 0.18s; display: inline-block; }
.st-footer-link:hover { color: #fff; padding-left: 6px; }
.st-footer-contact-name { font-size: 13px; color: #8899c8; margin-bottom: 14px; }
.st-footer-contact-name strong { color: #c4d2ee; font-weight: 600; }
.st-footer-msg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.st-footer-msg-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; padding: 9px 4px 7px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); transition: background 0.2s, transform 0.15s, border-color 0.2s; }
.st-footer-msg-btn:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.st-footer-msg-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.st-footer-msg-btn span { font-size: 9px; color: #7080b8; letter-spacing: 0.03em; font-weight: 500; }
.st-footer-msg-btn:hover span { color: #aab8dc; }
.st-footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.st-footer-bottom p { font-size: 12px; color: #3d4580; }
.st-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.st-footer-bottom-links a { color: #3d4580; text-decoration: none; font-size: 12px; transition: color 0.2s; }
.st-footer-bottom-links a:hover { color: #8899c8; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.st-breadcrumb { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   PAGINATION
   ============================================================ */
.st-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.st-page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1px solid var(--color-border); font-size: 0.875rem; font-weight: 600; color: var(--color-muted); transition: all var(--transition); background: #fff; cursor: pointer; }
.st-page-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.st-page-btn.active { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

/* ============================================================
   UTILITY
   ============================================================ */
.st-mt-8 { margin-top: 32px; }
.st-mt-10 { margin-top: 40px; }
.st-mt-12 { margin-top: 48px; }
.st-text-center { text-align: center; }
.st-flex-center { display: flex; align-items: center; justify-content: center; }
.st-gap-3 { gap: 12px; }
.st-empty-state { text-align: center; padding: 80px 0; color: var(--color-muted); }
.st-empty-state svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.3; }

/* ============================================================
   CKEditor / Rich HTML Content (restore browser defaults)
   Apply .st-html-content to any wrapper rendering CKEditor output
   ============================================================ */
.st-html-content h1, .st-html-content h2, .st-html-content h3,
.st-html-content h4, .st-html-content h5, .st-html-content h6 {
    margin-top: 1em; margin-bottom: 0.5em; font-weight: 700; line-height: 1.3;
}
.st-html-content h1 { font-size: 2rem; }
.st-html-content h2 { font-size: 1.5rem; }
.st-html-content h3 { font-size: 1.125rem; font-weight: 600; }
.st-html-content h4 { font-size: 1rem; font-weight: 600; }
.st-html-content p { margin-bottom: 1em; line-height: 1.8; }
.st-html-content ul, .st-html-content ol { margin: 0.75em 0; padding-left: 1.5em; }
.st-html-content ul { list-style: disc; }
.st-html-content ol { list-style: decimal; }
.st-html-content li { margin-bottom: 0.35em; line-height: 1.7; }
.st-html-content blockquote {
    margin: 1em 0; padding: 16px 24px; border-left: 4px solid var(--color-secondary);
    background: rgba(30,90,133,0.06); border-radius: var(--radius); font-style: italic;
}
.st-html-content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.st-html-content th, .st-html-content td {
    border: 1px solid var(--color-border); padding: 10px 14px; text-align: left;
}
.st-html-content th { background: var(--color-muted-bg); font-weight: 700; }
.st-html-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 0.5em 0; }
.st-html-content iframe { max-width: 100%; }
.st-html-content video { max-width: 100%; height: auto; }
.st-html-content embed, .st-html-content object { max-width: 100%; }
.st-html-content a { color: var(--color-secondary); text-decoration: underline; overflow-wrap: break-word; word-break: break-word; }
.st-html-content a:hover { color: var(--color-accent); }
.st-html-content hr { border: none; border-top: 1px solid var(--color-border); margin: 1.5em 0; }
.st-html-content figure { margin: 1em 0; max-width: 100%; overflow: hidden; }
.st-html-content figcaption { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.5em; text-align: center; }
.st-html-content pre { background: var(--color-muted-bg); padding: 16px; border-radius: var(--radius); overflow-x: auto; font-size: 0.875rem; margin: 1em 0; white-space: pre-wrap; word-break: break-all; }
.st-html-content strong { font-weight: 700; }
.st-html-content em { font-style: italic; }
.st-html-content { overflow-wrap: break-word; word-break: break-word; min-width: 0; }
/* Responsive iframe embed (YouTube, Maps, etc. inserted by CKEditor) */
.st-html-content iframe[src*="youtube"],
.st-html-content iframe[src*="youtu.be"],
.st-html-content iframe[src*="vimeo"],
.st-html-content iframe[src*="google.com/maps"],
.st-html-content iframe[src*="maps.google"] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

/* ============================================================
   FAST TRACK CARDS (shared — used on home, blog, travel guide)
   ============================================================ */
.st-fast-track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-fast-track-card { display: flex; flex-direction: column; }
.st-fast-track-img { position: relative; height: 192px; overflow: hidden; }
.st-fast-track-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.st-card:hover .st-fast-track-img img { transform: scale(1.08); }
.st-fast-track-badge { position: absolute; top: 12px; right: 12px; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.st-fast-track-badge-premium { background: #f59e0b; color: #fff; }
.st-fast-track-badge-standard { background: rgba(255,255,255,0.88); color: #374151; border: 1px solid #d1d5db; }
.st-fast-track-badge-vip { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #e0c97f; border: 1px solid #c9a84c; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.st-fast-track-badge-elite { background: linear-gradient(135deg, #2c2c2c, #1a1a1a); color: #d4d4d8; border: 1px solid #a1a1aa; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.st-fast-track-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.st-fast-track-airport { font-size: 0.75rem; color: var(--color-secondary); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.st-fast-track-title { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-fast-track-desc { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-fast-track-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.st-fast-track-code { display: flex; align-items: center; gap: 4px; font-size: 0.8125rem; color: var(--color-muted); }
.st-fast-track-price-wrap { text-align: right; }
.st-fast-track-price { font-size: 1.25rem; font-weight: 800; color: var(--color-text); display: block; }
.st-fast-track-per { font-size: 0.75rem; color: var(--color-muted); }

/* Fade-in animation */
.st-fade-in { animation: stFadeIn 0.5s ease both; }
@keyframes stFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.st-fade-in-d1 { animation-delay: 0.1s; }
.st-fade-in-d2 { animation-delay: 0.2s; }
.st-fade-in-d3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .st-service-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .st-fast-track-grid { grid-template-columns: repeat(2, 1fr); }
    .st-footer-top { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
    .st-footer-brand { grid-column: 1 / -1; }
    .st-detail-layout { grid-template-columns: 1fr; }
    .st-detail-layout > div:last-child { display: none; }
    .st-booking-card { position: static; }
}
@media (max-width: 768px) {
    body { padding-top: 56px; }
    .st-nav { display: none; }
    .st-header-cta { display: none; }
    .st-mobile-toggle { display: flex; }
    .st-service-grid-3 { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .st-service-grid-3::-webkit-scrollbar { display: none; }
    .st-service-grid-3 > * { flex: 0 0 85%; scroll-snap-align: start; min-width: 0; }
    .st-hscroll-cards > * { flex: 0 0 85%; }
    .st-footer { padding: 40px 0 0; }
    .st-footer-top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
    .st-footer-brand { grid-column: 1 / -1; }
    .st-footer-contact { grid-column: 1 / -1; }
    .st-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .st-footer-bottom-links { gap: 14px; }
    .st-section { padding: 48px 0; }
    .st-section-header { margin-bottom: 28px; }
    .st-page-header { padding: 48px 0; margin-top: 0; }
    .st-page-header-title { font-size: 1.6rem; }
    .st-page-header-desc { font-size: 0.9rem; }
    .st-header-inner { height: 56px; }
    .st-logo img { height: 36px; }
    .st-detail-title { font-size: 1.375rem; }
    .st-booking-card { padding: 20px; }
    .st-btn { padding: 10px 18px; font-size: 0.875rem; }
    .st-btn-lg { padding: 12px 24px; font-size: 0.9375rem; }
    .st-container { padding: 0 14px; }
    .st-filter-bar { padding: 16px 0; }
    .st-search-box { max-width: 100%; }
    .st-index-tabs { gap: 6px; }
    .st-index-tab-btn { padding: 6px 14px; font-size: 0.75rem; }
    .st-breadcrumb { font-size: 0.75rem; padding: 10px 0; }
    .st-fast-track-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .st-fast-track-grid::-webkit-scrollbar { display: none; }
    .st-fast-track-grid > * { flex: 0 0 85%; scroll-snap-align: start; min-width: 0; }
    .st-fast-track-img { height: 160px; }
    .st-service-img { height: 200px; }
    .st-service-title { font-size: 1rem; }
    .st-html-content h2 { font-size: 1.25rem; }
    .st-html-content h3 { font-size: 1rem; }
    .st-html-content table { font-size: 0.8125rem; display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
    .st-service-grid-3 { grid-template-columns: 1fr; }
    .st-fast-track-img { height: 140px; }
    .st-section { padding: 36px 0; }
    .st-page-header { padding: 36px 0; }
    .st-page-header-title { font-size: 1.35rem; }
    .st-service-img { height: 180px; }
    .st-service-body { padding: 16px; }
    .st-service-title { font-size: 0.9375rem; }
    .st-service-desc { font-size: 0.8125rem; }
    .st-chip { padding: 5px 12px; font-size: 0.75rem; }
    .st-pagination { gap: 4px; }
    .st-page-btn { width: 34px; height: 34px; font-size: 0.8125rem; }
}
