@font-face {
    font-family: 'Noto Sans Lao';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('noto-sans-lao-lao-v1.woff2') format('woff2');
    unicode-range: U+0E81-0EDF, U+200C-200D, U+25CC;
}
@font-face {
    font-family: 'Noto Sans Lao';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('noto-sans-lao-latin-v1.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --font-lao: 'Noto Sans Lao', sans-serif;
    --primary: #1a56db;
    --primary-dark: #1240a8;
    --primary-light: #e8effc;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
html[data-default-lang]:not([data-default-lang="lo"]):not([data-i18n-ready="true"]) body {
    visibility: hidden;
}
body {
    font-family: var(--font-lao);
    background: #f0f2f5;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
body { top: 0 !important; }
html[data-current-lang="lo"] body,
html[data-current-lang="lo"] body :where(*:not(.goog-te-combo)) {
    font-family: var(--font-lao) !important;
}
iframe.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

a { color: inherit; }
.white-bg { background: white; }
.small-muted { font-size: 14px; color: var(--gray-500); }
.small-muted.dark { color: var(--gray-600); margin-top: 8px; }

.desktop-wrapper { display: block; width: 100%; }
.mobile-app { display: none; width: 100%; }

.d-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.d-navbar.scrolled { box-shadow: var(--shadow); }
.d-navbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.d-nav-group { display: flex; align-items: center; gap: 14px; }
.d-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--dark); }
.d-logo {
    width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: white; overflow: hidden; flex-shrink: 0;
}
.d-logo img,
.m-header-logo img,
.d-fb-icon img,
.simple-mobile-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.d-title { font-size: 18px; font-weight: 700; line-height: 1.2; }
.d-title span { font-size: 11px; font-weight: 500; color: var(--gray-600); display: block; }
.d-links { display: flex; gap: 8px; list-style: none; }
.d-links a {
    text-decoration: none; color: var(--gray-700); font-size: 14px; font-weight: 500;
    padding: 8px 16px; border-radius: 8px; transition: var(--transition);
}
.d-links a:hover { background: var(--primary-light); color: var(--primary); }
.d-links a.d-nav-active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
}
.d-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important; border-radius: 10px !important; font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}
.d-nav-actions { display: flex; align-items: center; gap: 10px; }
.d-nav-form { margin: 0; }
.d-nav-user,
.d-nav-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Noto Sans Lao', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.d-nav-user {
    color: var(--dark);
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}
.d-nav-auth-btn.soft {
    color: var(--primary);
    background: var(--primary-light);
}
.d-nav-auth-btn.primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 18px rgba(26,86,219,0.24);
}
.d-nav-auth-btn.ghost {
    color: var(--dark);
    background: white;
    border: 1px solid var(--gray-300);
}
.d-nav-user:hover,
.d-nav-auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.trantour-lang-switcher {
    position: relative;
    flex-shrink: 0;
}
.trantour-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-300);
    background: white;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Noto Sans Lao', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.trantour-lang-toggle:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.trantour-lang-icon { font-size: 15px; }
.trantour-lang-caret { font-size: 11px; color: var(--gray-600); }
.trantour-lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 176px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 160;
}
.trantour-lang-switcher.open .trantour-lang-menu,
.trantour-lang-menu.open { display: grid; gap: 4px; }
.trantour-lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Noto Sans Lao', sans-serif;
    cursor: pointer;
    text-align: left;
}
.trantour-lang-option:hover,
.trantour-lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
}
.trantour-lang-mobile {
    padding: 14px 16px 0;
}
.trantour-lang-mobile .trantour-lang-switcher {
    width: 100%;
}
.trantour-lang-mobile .trantour-lang-toggle {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.trantour-lang-mobile .trantour-lang-menu {
    left: 0;
    right: 0;
    min-width: 100%;
}
.d-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
.d-hamburger, .d-hamburger::before, .d-hamburger::after {
    display: block; width: 24px; height: 2px; background: var(--dark); position: relative;
}
.d-hamburger::before, .d-hamburger::after { content: ''; position: absolute; left: 0; }
.d-hamburger::before { top: -7px; }
.d-hamburger::after { top: 7px; }

.d-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e3a5f, #0f172a);
}
.d-hero-bg {
    position: absolute; inset: 0;
    background: url('nakasang-hero.webp') center/cover;
    opacity: 0.4;
}
.d-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.7), rgba(15,23,42,0.4) 40%, rgba(15,23,42,0.9)); }
.d-hero-content {
    position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px;
    width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.d-hero-text { color: white; }
.d-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
    color: var(--accent); padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.d-pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.d-hero-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.d-highlight { background: linear-gradient(135deg, var(--accent), #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.d-hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; }
.d-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 12px;
    font-size: 16px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
    transition: var(--transition); font-family: 'Noto Sans Lao', sans-serif;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 8px 24px rgba(26,86,219,0.35); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white; box-shadow: 0 8px 24px rgba(245,158,11,0.35); }
.btn-outline { background: rgba(255,255,255,0.1); color: white; border: 2px solid rgba(255,255,255,0.25); }
.btn:hover { transform: translateY(-2px); }
.d-stats { display: flex; gap: 40px; margin-top: 48px; }
.d-stat-val { font-size: 32px; font-weight: 800; color: var(--accent); }
.d-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }

.d-booking-card {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-radius: 20px; padding: 36px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.d-booking-header { text-align: center; margin-bottom: 28px; }
.d-booking-header h3 { font-size: 22px; font-weight: 700; }
.d-booking-header p { font-size: 14px; color: var(--gray-600); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-input, .form-select {
    width: 100%; padding: 14px 16px; border: 2px solid var(--gray-300); border-radius: 10px;
    font-size: 15px; font-family: 'Noto Sans Lao', sans-serif; color: var(--dark);
    background: white; transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,86,219,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none; border-radius: 12px; font-size: 17px; font-weight: 700;
    cursor: pointer; transition: var(--transition); font-family: 'Noto Sans Lao', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px;
}
.accent-submit { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.4); }

.d-section { padding: 100px 24px; }
.d-container { max-width: 1280px; margin: 0 auto; }
.d-section-header { text-align: center; margin-bottom: 64px; }
.d-section-badge {
    display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light);
    color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.d-section-badge-accent { background: rgba(245,158,11,0.15); color: var(--accent); }
.d-section-title { font-size: 40px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.d-section-desc { font-size: 17px; color: var(--gray-600); max-width: 640px; margin: 0 auto; }

.d-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.d-feature {
    background: white; border-radius: 20px; padding: 36px 28px; text-align: center;
    transition: var(--transition); border: 2px solid transparent;
}
.d-feature:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.d-feat-icon {
    width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.d-feat-icon.b { background: rgba(26,86,219,0.1); }
.d-feat-icon.a { background: rgba(245,158,11,0.1); }
.d-feat-icon.g { background: rgba(16,185,129,0.1); }
.d-feat-icon.p { background: rgba(139,92,246,0.1); }
.d-feat-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.d-feat-desc { font-size: 14px; color: var(--gray-600); }

.d-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.d-route-card {
    background: white; border: 2px solid var(--gray-300); border-radius: 20px;
    padding: 36px; position: relative; transition: var(--transition);
}
.d-route-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.d-route-popular {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.d-route-dir { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.d-route-icon {
    width: 56px; height: 56px; background: var(--primary-light); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.d-route-title { font-size: 20px; font-weight: 700; }
.d-route-sub { font-size: 13px; color: var(--gray-600); }
.d-route-detail {
    display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px;
    background: var(--gray-100); border-radius: 12px; margin-bottom: 12px;
}
.d-route-detail:hover { background: var(--primary-light); }
.d-route-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.d-route-val { font-size: 15px; font-weight: 600; margin-top: 2px; }
.d-route-price {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 24px; padding-top: 24px; border-top: 2px dashed var(--gray-300);
}
.d-price-amount { font-size: 32px; font-weight: 800; color: var(--primary); }
.d-price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-600); }
.d-book-btn {
    padding: 12px 28px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none; border-radius: 10px; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: var(--transition); font-family: 'Noto Sans Lao', sans-serif;
}
.d-book-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,86,219,0.35); }

.d-schedule-wrap {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); border: 2px solid var(--gray-200);
}
.d-schedule { width: 100%; border-collapse: collapse; }
.d-schedule thead { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.d-schedule th { padding: 18px 24px; text-align: left; font-size: 14px; font-weight: 600; }
.d-schedule td { padding: 18px 24px; border-bottom: 1px solid var(--gray-200); font-size: 15px; }
.d-schedule tbody tr:hover { background: var(--primary-light); }
.d-status {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px;
    border-radius: 50px; font-size: 13px; font-weight: 600;
}
.d-status.ok { background: rgba(16,185,129,0.1); color: var(--success); }
.d-status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.d-tourism { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.d-tour-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.d-tour-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.d-tour-card.featured { grid-row: span 2; }
.d-tour-img-wrap { overflow: hidden; position: relative; }
.d-tour-img { width: 100%; height: 240px; object-fit: cover; transition: var(--transition); }
.d-tour-card.featured .d-tour-img { height: 100%; min-height: 508px; }
.d-tour-card:hover .d-tour-img { transform: scale(1.05); }
.d-tour-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7)); }
.d-tour-tag {
    display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
    color: white; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.d-tour-content { padding: 24px; }
.d-tour-card.featured .d-tour-content { position: absolute; left: 0; right: 0; bottom: 0; color: white; z-index: 1; padding: 32px; }
.d-tour-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.d-tour-card.featured .d-tour-title { font-size: 24px; color: white; }
.d-tour-desc { font-size: 14px; color: var(--gray-600); }
.d-tour-card.featured .d-tour-desc { color: rgba(255,255,255,0.8); }

.d-restaurant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.d-food-card {
    background: white; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.d-food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.d-food-card.d-food-empty { display: flex; align-items: center; justify-content: center; min-height: 260px; }
.d-food-cover { position: relative; height: 220px; overflow: hidden; }
.d-food-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.d-food-card:hover .d-food-img { transform: scale(1.04); }
.d-food-badge {
    position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.92); color: var(--dark);
    padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
}
.d-food-body { padding: 20px; }
.d-food-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.d-food-title { font-size: 18px; font-weight: 800; color: #7c2d12; }
.d-food-count {
    background: #fff7ed; color: #c2410c; padding: 5px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 800; white-space: nowrap;
}
.d-food-loc { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; }
.d-food-promo {
    padding: 10px 12px; border-radius: 14px; margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(249,115,22,0.12));
    color: #9a3412; font-size: 12px; font-weight: 700;
}
.d-food-menu { display: grid; gap: 10px; }
.d-food-item {
    display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px;
    border-radius: 16px; background: #fffaf5;
}
.d-food-item strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--dark); }
.d-food-item small { display: block; font-size: 12px; color: var(--gray-600); line-height: 1.4; }
.d-food-item span { color: #c2410c; font-size: 13px; font-weight: 800; white-space: nowrap; }
.d-food-link {
    display: inline-flex; margin-top: 14px; color: var(--primary); font-size: 13px;
    font-weight: 700; text-decoration: none;
}

.d-booking-sec { background: linear-gradient(135deg, #0f172a, #1e3a5f); color: white; }
.d-booking-sec .d-section-title { color: white; }
.d-booking-sec .d-section-desc { color: rgba(255,255,255,0.7); }
.d-booking-form {
    max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 48px;
}
.d-booking-form .form-label { color: rgba(255,255,255,0.8); }
.d-booking-form .form-input, .d-booking-form .form-select {
    background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15); color: white;
}
.d-booking-form .form-input::placeholder { color: rgba(255,255,255,0.4); }
.d-booking-form .form-input:focus, .d-booking-form .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(245,158,11,0.15); }
.d-booking-form .form-select option { background: var(--dark); color: white; }
.d-summary {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 24px; margin-bottom: 28px;
}
.d-summary-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--accent); }
.d-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; }
.d-summary-row:last-child { border: none; padding-top: 16px; margin-top: 8px; border-top: 2px solid rgba(255,255,255,0.15); }
.d-summary-row .lbl { color: rgba(255,255,255,0.6); }
.d-summary-row .val { font-weight: 600; }
.d-summary-row:last-child .lbl { color: white; font-weight: 600; }
.d-summary-row:last-child .val { color: var(--accent); font-size: 22px; font-weight: 800; }

.d-contact { background: var(--gray-100); }
.d-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.d-contact-cards { display: flex; flex-direction: column; gap: 20px; }
.d-contact-card {
    display: flex; align-items: flex-start; gap: 20px; background: white; padding: 28px;
    border-radius: var(--radius); transition: var(--transition); border: 2px solid transparent;
}
.d-contact-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateX(8px); }
.d-cc-icon {
    width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center;
    justify-content: center; font-size: 28px; flex-shrink: 0;
}
.d-cc-icon.ph { background: rgba(16,185,129,0.1); }
.d-cc-icon.wa { background: rgba(37,211,102,0.1); }
.d-cc-icon.loc { background: rgba(239,68,68,0.1); }
.d-cc-icon.tm { background: rgba(245,158,11,0.1); }
.d-cc-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.d-cc-val { font-size: 15px; color: var(--gray-600); }
.d-cc-val a { color: var(--primary); text-decoration: none; font-weight: 600; }
.d-map-card {
    background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
    display: flex; flex-direction: column; min-height: 400px;
}
.d-map-header { padding: 24px; background: var(--primary); color: white; }
.d-map-header h4 { font-size: 18px; font-weight: 700; }
.d-map-body { flex: 1; display: flex; align-items: center; justify-content: center; background: var(--gray-200); padding: 24px; }
.d-map-ph { text-align: center; color: var(--gray-600); }
.d-map-ph .mi { font-size: 64px; margin-bottom: 16px; }

.d-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 24px 32px; }
.d-footer-inner { max-width: 1280px; margin: 0 auto; }
.d-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.d-footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.d-fb-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; flex-shrink: 0; }
.d-fb-name { font-size: 20px; font-weight: 700; color: white; }
.d-footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.d-footer-social { display: flex; gap: 12px; }
.d-footer-social a {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 18px; transition: var(--transition);
}
.d-footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.d-footer-ct { font-size: 16px; font-weight: 700; color: white; margin-bottom: 20px; }
.d-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.d-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); }
.d-footer-links a:hover { color: var(--accent); }
.d-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; font-size: 13px; }

.counter { display: flex; align-items: center; gap: 16px; }
.counter-btn {
    width: 40px; height: 40px; border-radius: 10px; border: 2px solid var(--gray-300);
    background: white; cursor: pointer; font-size: 20px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.counter-btn:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.counter-val { font-size: 20px; font-weight: 700; min-width: 32px; text-align: center; }

.mobile-app {
    background: #f0f2f5;
    min-height: 100vh;
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
}
.m-statusbar {
    background: var(--primary-dark);
    padding: 4px 16px 2px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 600;
}
.m-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0 16px 16px; color: white; position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 20px rgba(26,86,219,0.3); transition: var(--transition);
}
.m-header.top-light { background: white; color: var(--dark); box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.m-header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 0 16px; }
.m-header-brand { display: flex; align-items: center; gap: 12px; }
.m-header-logo {
    width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; flex-shrink: 0;
}
.m-header.top-light .m-header-logo { background: var(--gray-200); }
.m-header-title { font-size: 16px; font-weight: 700; }
.m-header-subtitle { font-size: 11px; opacity: 0.8; }
.simple-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.simple-mobile-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.simple-mobile-brand-copy {
    min-width: 0;
}
.simple-mobile-brand-name {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}
.simple-mobile-brand-subtitle {
    font-size: 11px;
    line-height: 1.35;
    color: rgba(255,255,255,0.78);
}
.m-header-actions { display: flex; gap: 8px; }
.m-header-btn {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.15); border: none;
    color: white; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.m-header.top-light .m-header-btn { background: var(--gray-200); color: var(--dark); }
.m-auth-strip {
    display: flex;
    gap: 10px;
    padding: 14px 16px 0;
}
.m-auth-form { margin: 0; flex: 1; }
.m-auth-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    font-family: 'Noto Sans Lao', sans-serif;
    border: none;
    cursor: pointer;
}
.m-auth-link.primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 20px rgba(26,86,219,0.22);
}
.m-auth-link.ghost {
    color: var(--primary);
    background: white;
    border: 1px solid var(--gray-300);
}
.m-page { display: none; animation: pageIn 0.3s ease; }
.m-page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.m-page-header {
    background: white; padding: 16px; border-bottom: 1px solid var(--gray-300);
    position: sticky; top: 68px; z-index: 50;
}
.m-page-header h2 { font-size: 20px; font-weight: 800; color: var(--dark); }
.m-hero-banner { position: relative; margin: 0; background: linear-gradient(135deg, #0f172a, #1e3a5f); overflow: hidden; }
.m-hero-img { width: 100%; height: 220px; object-fit: cover; opacity: 0.5; }
.m-hero-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.3), rgba(15,23,42,0.9));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.m-hero-badge {
    display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.3); color: var(--accent); padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 600; width: fit-content; margin-bottom: 10px;
}
.m-hero-title { font-size: 24px; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 8px; }
.m-hero-title .hl { background: linear-gradient(135deg, var(--accent), #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.m-hero-sub { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }
.m-hero-stats { display: flex; gap: 16px; }
.m-hero-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px 14px; border-radius: 10px; text-align: center; }
.m-hero-stat-val { font-size: 16px; font-weight: 800; color: var(--accent); }
.m-hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.6); }
.m-quick-book {
    background: white; margin: -20px 16px 0; position: relative; z-index: 10; border-radius: 20px;
    padding: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.m-quick-book h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.m-route-selector { background: var(--gray-100); border-radius: 16px; padding: 16px; margin-bottom: 16px; position: relative; }
.m-route-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.route-item-second { margin-top: 20px; }
.m-route-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.m-route-dot.from { background: var(--success); }
.m-route-dot.to { background: var(--danger); }
.m-route-line {
    position: absolute; left: 21px; top: 34px; width: 2px; height: 20px;
    background: var(--gray-400); border-left: 2px dashed var(--gray-400);
}
.m-route-text { flex: 1; }
.m-route-label { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.m-route-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.m-swap-btn {
    position: absolute; right: -4px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px;
    border-radius: 50%; background: var(--primary); color: white; border: 3px solid white;
    display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer;
    box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}
.m-form-group { margin-bottom: 14px; }
.m-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.m-form-input, .m-form-select {
    width: 100%; padding: 14px; border: 2px solid var(--gray-300); border-radius: 12px; font-size: 15px;
    font-family: 'Noto Sans Lao', sans-serif; color: var(--dark); background: white; transition: var(--transition); outline: none;
    -webkit-appearance: none; appearance: none;
}
.m-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.m-inline-select { padding: 0 26px 0 0; border: none; background-color: transparent; font-size: 15px; font-weight: 700; color: var(--dark); }
.m-form-input:focus, .m-form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,86,219,0.1); }
.m-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.top-gap { margin-bottom: 14px; }
.counter-shell {
    background: var(--gray-100); border-radius: 12px; padding: 12px 16px; height: 48px;
    display: flex; align-items: center; justify-content: space-between;
}
.m-counter { display: flex; align-items: center; gap: 16px; }
.m-counter-btn {
    width: 36px; height: 36px; border-radius: 10px; border: 2px solid var(--gray-300); background: white;
    cursor: pointer; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--dark);
}
.m-counter-val { font-size: 18px; font-weight: 800; color: var(--dark); min-width: 24px; text-align: center; }
.m-submit-btn {
    width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
    border: none; border-radius: 14px; font-size: 16px; font-weight: 700; cursor: pointer;
    transition: var(--transition); font-family: 'Noto Sans Lao', sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 20px rgba(26,86,219,0.35); margin-top: 8px;
}
.accent-submit-mobile { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.m-section-title {
    padding: 24px 16px 16px; font-size: 18px; font-weight: 800; color: var(--dark);
    display: flex; align-items: center; justify-content: space-between;
}
.see-all { font-size: 13px; color: var(--primary); font-weight: 600; }
.m-feature-grid { padding: 0 16px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-feature-box {
    background: white; border-radius: 16px; padding: 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.m-feature-icon { font-size: 32px; margin-bottom: 8px; }
.m-feature-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.m-feature-sub { font-size: 12px; color: var(--gray-600); }
.m-routes-scroll, .m-tourism-scroll, .m-restaurant-scroll {
    display: flex; gap: 14px; padding: 0 16px 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.m-routes-scroll::-webkit-scrollbar, .m-tourism-scroll::-webkit-scrollbar, .m-restaurant-scroll::-webkit-scrollbar { display: none; }
.m-route-card, .m-tour-card, .m-food-card {
    min-width: 300px; background: white; border-radius: 20px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.m-tour-card { min-width: 260px; overflow: hidden; padding: 0; }
.m-food-card { min-width: 260px; overflow: hidden; padding: 0; border: 1px solid rgba(0,0,0,0.04); }
.m-route-card-badge {
    position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white;
    padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700;
}
.m-route-card { position: relative; }
.m-route-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.m-route-card-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.m-route-card-title { font-size: 16px; font-weight: 700; }
.m-route-card-sub { font-size: 12px; color: var(--gray-600); }
.m-route-card-details { margin-bottom: 16px; }
.m-rc-detail { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.m-rc-detail:last-child { border-bottom: none; }
.m-rc-detail-icon { font-size: 18px; width: 28px; text-align: center; }
.m-rc-detail-content { flex: 1; }
.m-rc-detail-label { font-size: 11px; color: var(--gray-500); }
.m-rc-detail-value { font-size: 14px; font-weight: 600; }
.m-route-card-footer {
    display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 2px dashed var(--gray-300);
}
.m-rc-price { font-size: 24px; font-weight: 800; color: var(--primary); }
.m-rc-price span { font-size: 13px; font-weight: 500; color: var(--gray-600); margin-left: 2px; }
.m-rc-book-btn {
    padding: 10px 20px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
    border: none; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Noto Sans Lao', sans-serif;
    box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}
.m-schedule-list { padding: 0 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.m-schedule-item {
    background: white; border-radius: 16px; padding: 18px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 14px;
}
.m-schedule-time { text-align: center; min-width: 56px; }
.m-schedule-time-val { font-size: 20px; font-weight: 800; color: var(--primary); }
.m-schedule-time-label { font-size: 11px; color: var(--gray-500); }
.m-schedule-arrow { display: flex; flex-direction: column; align-items: center; flex: 1; }
.m-schedule-arrow-line { width: 100%; height: 2px; background: var(--gray-300); position: relative; }
.m-schedule-arrow-line::after {
    content: '→';
    position: absolute;
    right: -2px;
    top: -10px;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    color: var(--gray-400);
}
.m-schedule-duration { font-size: 11px; color: var(--gray-500); margin-top: 4px; }
.m-schedule-dest { text-align: right; min-width: 60px; }
.m-schedule-dest-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.m-schedule-status { margin-top: 6px; display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 50px; font-size: 10px; font-weight: 600; }
.m-schedule-status.ok { background: rgba(16,185,129,0.1); color: var(--success); }
.m-schedule-status .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.m-tour-img-wrap { height: 160px; overflow: hidden; position: relative; }
.m-tour-img { width: 100%; height: 100%; object-fit: cover; }
.m-tour-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6)); }
.m-tour-tag {
    position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    color: white; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 600;
}
.m-tour-content { padding: 14px; }
.m-tour-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.m-tour-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.m-food-cover { height: 160px; overflow: hidden; position: relative; }
.m-food-img { width: 100%; height: 100%; object-fit: cover; }
.m-food-tag {
    position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); color: var(--dark);
    padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 800;
}
.m-food-body { padding: 14px; }
.m-food-title { font-size: 15px; font-weight: 800; color: #7c2d12; margin-bottom: 4px; }
.m-food-loc { font-size: 12px; color: var(--gray-600); margin-bottom: 10px; }
.m-food-item {
    display: flex; justify-content: space-between; gap: 8px; padding: 10px 0;
    border-bottom: 1px solid var(--gray-200); font-size: 12px;
}
.m-food-item:last-child { border-bottom: none; }
.m-food-item strong { color: var(--dark); font-weight: 700; }
.m-food-item span { color: #c2410c; font-weight: 800; white-space: nowrap; }
.m-booking-form-wrap { padding: 0 16px 24px; }
.m-booking-card { background: white; border-radius: 20px; padding: 24px 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.m-summary { background: var(--gray-100); border-radius: 14px; padding: 16px; margin: 20px 0; }
.m-summary-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.m-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--gray-300); }
.m-summary-row:last-child { border-bottom: none; padding-top: 12px; margin-top: 4px; border-top: 2px dashed var(--gray-400); }
.m-summary-row .lbl { color: var(--gray-600); }
.m-summary-row .val { font-weight: 600; }
.m-summary-row:last-child .lbl { color: var(--dark); font-weight: 700; }
.m-summary-row:last-child .val { color: var(--primary); font-size: 20px; font-weight: 800; }
.m-contact-list { padding: 0 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.m-contact-item {
    background: white; border-radius: 16px; padding: 18px; display: flex; align-items: center; gap: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-link { text-decoration: none; color: inherit; }
.m-contact-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.m-contact-icon.ph { background: rgba(16,185,129,0.1); }
.m-contact-icon.wa { background: rgba(37,211,102,0.1); }
.m-contact-icon.loc { background: rgba(239,68,68,0.1); }
.m-contact-icon.tm { background: rgba(245,158,11,0.1); }
.m-contact-title { font-size: 15px; font-weight: 700; }
.m-contact-val { font-size: 13px; color: var(--gray-600); }
.highlight-blue { color: var(--primary); font-weight: 600; }
.highlight-green { color: #25d366; font-weight: 600; }
.m-map-wrap { padding: 0 16px 24px; }
.m-map-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.m-map-head { padding: 16px; background: var(--primary); color: white; font-weight: 700; }
.m-map-body2 { padding: 40px 20px; text-align: center; background: var(--gray-200); }
.m-map-icon { font-size: 48px; margin-bottom: 12px; }
.m-map-title { font-size: 15px; font-weight: 600; color: var(--gray-700); }
.m-map-chip-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.m-map-chip { background: white; padding: 10px 16px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); font-size: 13px; font-weight: 700; }
.m-map-arrow { color: var(--primary); font-weight: 700; }
.tourism-stack-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.m-tourism-stack { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.tourism-stack-image { position: relative; height: 180px; overflow: hidden; }
.tourism-stack-image img { width: 100%; height: 100%; object-fit: cover; }
.tourism-stack-tag {
    position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.5); color: white; padding: 4px 12px;
    border-radius: 50px; font-size: 11px; font-weight: 600;
}
.tourism-stack-content { padding: 16px; }
.tourism-stack-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.tourism-stack-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.m-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid var(--gray-300);
    display: flex; justify-content: stretch; align-items: center; padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)); z-index: 200; box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.m-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 2px;
    cursor: pointer; transition: var(--transition); border: none; background: none; color: var(--gray-500); position: relative;
    text-decoration: none; flex: 0 0 16.666%; width: 16.666%; min-width: 0; overflow: hidden;
}
.m-nav-item.active { color: var(--primary); }
.m-nav-item.active::before {
    content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px; background: var(--primary); border-radius: 2px;
}
.m-nav-icon { font-size: 22px; transition: var(--transition); }
.m-nav-item.active .m-nav-icon { transform: scale(1.1); }
.m-nav-label { max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: clip; font-size: 9px; font-weight: 700; line-height: 1.15; }
.m-float-wa {
    position: fixed; bottom: 80px; right: 16px; width: 52px; height: 52px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 150; transition: var(--transition); animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.m-toast-container { position: fixed; top: 16px; left: 16px; right: 16px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.m-toast {
    background: white; padding: 14px 18px; border-radius: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 10px; animation: toastIn 0.3s ease; border-left: 4px solid var(--success);
}
.m-toast.error { border-left-color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.m-toast-icon { font-size: 22px; }
.m-toast-msg { font-size: 13px; font-weight: 600; color: var(--dark); flex: 1; }
.m-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 2000;
    display: none; align-items: flex-end; justify-content: center;
}
.m-modal-overlay.active { display: flex; }
.m-modal { background: white; border-radius: 24px 24px 0 0; width: 100%; max-height: 85vh; overflow-y: auto; animation: modalUp 0.3s ease; }
@keyframes modalUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.m-modal-handle { width: 40px; height: 4px; background: var(--gray-400); border-radius: 2px; margin: 12px auto; }
.m-modal-header {
    padding: 0 24px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--gray-200);
}
.m-modal-header h3 { font-size: 18px; font-weight: 700; }
.m-modal-close {
    width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--gray-200); cursor: pointer;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
}
.m-modal-body { padding: 24px; }
.m-modal-success { text-align: center; padding: 20px 0; }
.m-modal-success-icon {
    width: 72px; height: 72px; background: rgba(16,185,129,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 16px;
}
.m-modal-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.m-modal-success p { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.m-booking-ref { background: var(--gray-100); padding: 14px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 13px; }
.m-booking-ref strong { font-size: 20px; color: var(--primary); display: block; margin-top: 4px; }
.m-modal-close-btn {
    width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none; border-radius: 14px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: 'Noto Sans Lao', sans-serif;
}
.payment-flow-modal {
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.payment-flow-modal .m-modal {
    width: min(960px, 100%);
    max-height: min(88vh, 920px);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(15,23,42,0.28);
}
.payment-flow-title-block p {
    margin-top: 4px;
    color: var(--gray-600);
    font-size: 13px;
}
.payment-flow-hero {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(245,158,11,0.12));
    border: 1px solid rgba(26,86,219,0.14);
    display: grid;
    gap: 8px;
}
.payment-flow-hero.compact {
    padding: 20px;
}
.payment-flow-hero h3 {
    font-size: 24px;
    line-height: 1.3;
    color: var(--dark);
}
.payment-flow-hero p {
    color: var(--gray-600);
    font-size: 14px;
}
.payment-flow-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}
.payment-flow-badge.warning {
    background: #fffbeb;
    color: #b45309;
}
.payment-flow-badge.success {
    background: #ecfdf5;
    color: #047857;
}
.payment-flow-badge.neutral {
    background: #f3f4f6;
    color: #374151;
}
.payment-flow-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.payment-flow-summary-item {
    background: #f8fafc;
    border: 1px solid var(--gray-300);
    border-radius: 18px;
    padding: 14px 16px;
}
.payment-flow-summary-item span {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.payment-flow-summary-item strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.5;
    word-break: break-word;
}
.payment-flow-summary-item.highlight {
    background: linear-gradient(135deg, var(--dark), #1e3a8a);
    border-color: transparent;
}
.payment-flow-summary-item.highlight span,
.payment-flow-summary-item.highlight strong {
    color: white;
}
.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.payment-method-card {
    border: 1px solid var(--gray-300);
    background: white;
    border-radius: 22px;
    padding: 20px 18px;
    cursor: pointer;
    transition: var(--transition);
    display: grid;
    gap: 10px;
    text-align: left;
    font-family: var(--font-lao);
}
.payment-method-card:hover {
    transform: translateY(-2px);
    border-color: rgba(26,86,219,0.35);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}
.payment-method-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(245,158,11,0.18));
}
.payment-method-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}
.payment-method-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}
.payment-flow-loading {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}
.payment-flow-spinner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid rgba(26,86,219,0.14);
    border-top-color: var(--primary);
    animation: paymentSpin 0.8s linear infinite;
}
@keyframes paymentSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.payment-detail-card,
.payment-qr-card,
.payment-instruction-card {
    margin-top: 18px;
    background: #f8fafc;
    border: 1px solid var(--gray-300);
    border-radius: 22px;
    padding: 18px;
}
.payment-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 14px;
}
.payment-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.payment-detail-row span {
    color: var(--gray-600);
}
.payment-detail-row strong {
    color: var(--dark);
    text-align: right;
}
.payment-qr-title,
.payment-instruction-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.payment-qr-frame {
    min-height: 220px;
    border-radius: 20px;
    border: 1px dashed rgba(26,86,219,0.25);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.payment-qr-frame img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}
.payment-qr-placeholder {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    word-break: break-word;
}
.payment-qr-caption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}
.payment-instruction-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.7;
}
.payment-flow-footer {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}
.payment-flow-secondary,
.payment-flow-primary {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-lao);
    cursor: pointer;
    transition: var(--transition);
}
.payment-flow-secondary {
    border: 1px solid var(--gray-300);
    background: white;
    color: var(--gray-700);
}
.payment-flow-primary {
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 12px 26px rgba(26,86,219,0.24);
}
.payment-flow-secondary:hover,
.payment-flow-primary:hover {
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .payment-flow-modal {
        align-items: flex-end;
        padding: 0;
    }
    .payment-flow-modal .m-modal {
        width: 100%;
        max-height: 88vh;
        border-radius: 26px 26px 0 0;
    }
    .payment-flow-hero {
        padding: 18px;
    }
    .payment-flow-hero h3 {
        font-size: 20px;
    }
    .payment-flow-summary,
    .payment-method-grid {
        grid-template-columns: 1fr;
    }
    .payment-flow-footer {
        flex-direction: column;
    }
    .payment-flow-secondary,
    .payment-flow-primary {
        width: 100%;
    }
}
.d-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.d-process-card {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.d-process-card::after {
    content: '';
    position: absolute;
    inset: auto -20px -40px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(26,86,219,0.08), transparent 70%);
}
.d-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.d-process-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: white;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}
.d-process-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.d-process-card p {
    color: var(--gray-600);
    font-size: 15px;
}
.d-faq-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}
.d-faq-list {
    display: grid;
    gap: 14px;
}
.d-faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.d-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
}
.d-faq-item summary::-webkit-details-marker { display: none; }
.d-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    line-height: 1;
    color: var(--primary);
}
.d-faq-item[open] summary::after { content: '−'; }
.d-faq-item p {
    padding: 0 24px 22px;
    color: var(--gray-600);
    font-size: 15px;
}
.d-faq-side-card {
    position: sticky;
    top: 108px;
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f172a, #173763);
    color: white;
    box-shadow: var(--shadow-lg);
}
.d-faq-side-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}
.d-faq-side-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.d-faq-checklist {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.d-faq-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,0.82);
}
.d-faq-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}
.d-faq-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.m-process-grid {
    display: grid;
    gap: 14px;
    padding: 0 16px 24px;
}
.m-process-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.m-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.m-process-step {
    min-width: 48px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.m-process-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.m-process-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
}
.m-process-card p {
    font-size: 13px;
    color: var(--gray-600);
}
.m-faq-list {
    display: grid;
    gap: 12px;
    padding: 0 16px;
}
.m-faq-item {
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.m-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 800;
    position: relative;
}
.m-faq-item summary::-webkit-details-marker { display: none; }
.m-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 22px;
}
.m-faq-item[open] summary::after { content: '−'; }
.m-faq-item p {
    padding: 0 18px 18px;
    font-size: 13px;
    color: var(--gray-600);
}
.m-support-panel {
    margin: 16px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a, #173763);
    color: white;
    box-shadow: var(--shadow-lg);
}
.m-support-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}
.m-support-list {
    list-style: none;
    display: grid;
    gap: 10px;
}
.m-support-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255,255,255,0.84);
    font-size: 13px;
}
.m-support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}
.trantour-support-widget {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 180;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trantour-support-link {
    min-height: 48px;
    min-width: 48px;
    padding: 0 16px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}
.trantour-support-link:hover {
    transform: translateY(-2px);
}
.trantour-support-link.book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}
.trantour-support-link.call {
    background: white;
    color: var(--dark);
}
.trantour-support-link.chat {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}
.trantour-support-link.top {
    background: rgba(15,23,42,0.92);
    color: white;
}
.trantour-support-icon {
    font-size: 18px;
    line-height: 1;
}
.trantour-support-text {
    white-space: nowrap;
}
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
::-webkit-scrollbar { width: 0; height: 0; }

@media (max-width: 1200px) {
    .d-navbar-inner, .d-hero-content, .d-container, .d-footer-inner { max-width: 1100px; }
    .d-hero-content { gap: 40px; }
    .d-section { padding: 84px 20px; }
    .d-process-grid,
    .d-faq-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) and (min-width: 769px) {
    .d-navbar-inner { gap: 14px; }
    .d-nav-group { position: relative; margin-left: auto; }
    .d-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--gray-100);
        border: 1px solid var(--gray-300);
        flex: 0 0 auto;
    }
    .d-links {
        display: none;
        position: absolute;
        top: calc(100% + 16px);
        right: 0;
        width: min(320px, calc(100vw - 32px));
        padding: 10px;
        border-radius: 18px;
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 4px;
        z-index: 220;
    }
    .d-links.active { display: flex; }
    .d-links a {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 14px;
    }
}

@media (max-width: 1024px) {
    .d-hero-content, .d-contact-grid, .d-routes, .d-footer-grid, .d-features { grid-template-columns: 1fr 1fr; }
    .d-tourism { grid-template-columns: 1fr 1fr; }
    .d-restaurant-grid { grid-template-columns: 1fr 1fr; }
    .d-tour-card.featured { grid-row: auto; }
    .d-tour-card.featured .d-tour-img { min-height: 240px; }
    .d-tour-card.featured .d-tour-content { position: static; color: inherit; padding: 24px; }
    .d-tour-card.featured .d-tour-title { color: var(--dark); font-size: 18px; }
    .d-tour-card.featured .d-tour-desc { color: var(--gray-600); }
}

@media (max-width: 900px) {
    .d-navbar-inner { padding: 0 18px; }
    .d-links a { padding: 8px 12px; font-size: 13px; }
    .d-nav-group { gap: 10px; }
    .d-nav-actions { gap: 8px; }
    .d-nav-user, .d-nav-auth-btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
    .trantour-lang-toggle { min-height: 38px; padding: 0 12px; font-size: 12px; }
    .d-hero-content { grid-template-columns: 1fr; gap: 28px; padding: 110px 20px 72px; }
    .d-booking-card { max-width: 760px; width: 100%; margin: 0 auto; }
    .d-stats { gap: 24px; flex-wrap: wrap; }
    .d-contact-grid, .d-footer-grid, .d-features, .d-routes { grid-template-columns: 1fr; }
    .d-tourism { grid-template-columns: 1fr 1fr; }
    .d-restaurant-grid { grid-template-columns: 1fr; }
    .d-section-title { font-size: 34px; }
    .d-process-grid { grid-template-columns: 1fr; }
    .d-faq-side-card { position: static; top: auto; }
}

@media (min-width: 769px) {
    .desktop-wrapper { display: block !important; }
    .mobile-app { display: none !important; }
}

@media (max-width: 768px) {
    .desktop-wrapper { display: none; }
    .mobile-app { display: block; }
    .trantour-support-widget {
        left: 12px;
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        flex-direction: row;
        gap: 10px;
    }
    .trantour-support-link {
        flex: 1;
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
        border-radius: 18px;
    }
    .trantour-support-text {
        font-size: 12px;
    }
    .trantour-support-link.top {
        display: none;
    }
}

@media (max-width: 520px) {
    .m-form-row, .form-row { grid-template-columns: 1fr; }
    .m-hero-stats { flex-wrap: wrap; }
    .m-map-chip-row { flex-direction: column; }
}

@media (max-width: 380px) {
    .m-nav-item { padding: 6px 1px; }
    .m-nav-icon { font-size: 20px; }
}
