:root {
  --bg: #0d1b2a;
  --bg-card: #1e3a5f;
  --bg-lighter: #2a4a73;
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --accent-glow: rgba(255, 107, 53, 0.3);
  --text: #ffffff;
  --text-muted: #94a3b8;
  --border: rgba(42, 74, 115, 0.6);
  --glass: rgba(30, 58, 95, 0.7);
  --font-body: 'Noto Sans Thai', sans-serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif Thai', serif;
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* HEADER - Glass */
header { position: sticky; top: 0; z-index: 100; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 68px; background: rgba(13, 27, 42, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.logo { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 6px; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 13px; padding: 8px 16px; border-radius: var(--radius-sm); transition: var(--transition); position: relative; }
nav a:hover, nav a.active { color: var(--accent); background: rgba(255, 107, 53, 0.08); }
nav a.nav-highlight { color: var(--accent); font-weight: 600; }
.header-contact { display: flex; align-items: center; gap: 8px; background: var(--accent); color: #000; font-weight: 600; padding: 8px 20px; border-radius: var(--radius-sm); font-size: 13px; text-decoration: none; white-space: nowrap; transition: var(--transition); }
.header-contact:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); font-size: 22px; width: 44px; height: 44px; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* HERO */
.hero { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.98) 0%, rgba(30,58,95,0.85) 40%, rgba(255,107,53,0.08) 100%), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,107,53,0.015) 40px, rgba(255,107,53,0.015) 41px); }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-content { position: relative; z-index: 1; padding: 60px 80px; max-width: 860px; }
.hero-eyebrow { display: inline-block; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); color: var(--accent); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 4px; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 60px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-desc { font-size: 15px; color: var(--text-muted); line-height: 1.85; max-width: 600px; }
.hero-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--glass); backdrop-filter: blur(8px); border: 1px solid var(--border); padding: 6px 16px; border-radius: 20px; font-size: 12px; color: var(--text-muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-btn { padding: 12px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; text-decoration: none; transition: var(--transition); }
.hero-btn.primary { background: #06c755; color: #fff; box-shadow: 0 8px 24px rgba(6,199,85,0.2); }
.hero-btn.secondary { color: #fff; border: 1px solid rgba(255,255,255,0.35); background: rgba(13,27,42,0.45); }
.hero-btn:hover { transform: translateY(-2px); }

/* WRAP */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-wrap { padding: 56px 0; }

/* SECTION HEADERS */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.section-header h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.section-header h2 span { color: var(--accent); }
.section-header .section-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.section-header .section-link { font-size: 13px; color: var(--accent); text-decoration: none; white-space: nowrap; transition: var(--transition); }
.section-header .section-link:hover { opacity: 0.8; }

/* TOUR CARDS */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.tour-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.tour-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,107,53,0.12); }
.tour-card.closed { opacity: 0.5; pointer-events: none; }
.tour-card.status-card { opacity: 0.82; }
.tour-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; overflow: hidden; flex-shrink: 0; }
.tour-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-img.yehliu { background: linear-gradient(135deg, #0d2a3d, #1a4a6a, #0d3a4a); }
.tour-img.lake { background: linear-gradient(135deg, #0d2a2a, #1a4a3a, #0d3a3a); }
.tour-img.mountain { background: linear-gradient(135deg, #1a2a1a, #2a4a2a, #1a3a1a); }
.tour-img.city { background: linear-gradient(135deg, #1a2a3d, #2a3a5a, #1a2a4a); }
.tour-img.closed-bg { background: linear-gradient(135deg, #1a1a1a, #252525, #1a1a1a); }
.tour-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #000; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 20px; z-index: 2; letter-spacing: 0.3px; }
.tour-badge.closed-badge { background: #555; color: #999; }
.tour-badge.new-badge { background: #00b894; color: #fff; }
.tour-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tour-dest { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
.tour-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.tour-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 16px; }
.tour-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tour-tag { font-size: 11px; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; gap: 10px; }
.tour-price-info { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.tour-price-info strong { color: var(--accent); font-size: 17px; font-weight: 600; }
.btn-detail { font-size: 12px; color: var(--accent); text-decoration: none; border: 1px solid var(--accent); padding: 6px 18px; border-radius: 20px; white-space: nowrap; transition: var(--transition); }
.tour-card:hover .btn-detail { background: var(--accent); color: #000; }

/* VEHICLES */
#vehicles { background: var(--bg); }
.vehicles-intro { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.vehicle-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px 20px; text-align: center; transition: var(--transition); }
.vehicle-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.08); }
.vehicle-icon { font-size: 40px; margin-bottom: 10px; line-height: 1; }
.vehicle-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.vehicle-capacity { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.vehicle-note { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.luggage-note { margin-top: 20px; color: var(--text-muted); font-size: 12px; line-height: 1.7; padding: 14px 16px; border-left: 3px solid var(--accent); background: rgba(255,255,255,0.03); }
.vehicle-showcase { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.vehicle-showcase img { width: 100%; height: 170px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }

/* WHY */
#why { background: var(--bg-card); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.why-item { display: flex; gap: 14px; padding: 22px; background: rgba(0,0,0,0.15); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); align-items: flex-start; }
.why-item:hover { border-color: var(--accent); }
.why-icon { font-size: 26px; flex-shrink: 0; line-height: 1; }
.why-text { flex: 1; }
.why-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.why-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* VIDEO SECTION */
.video-section { background: var(--bg); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.video-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 16px 20px; }
.video-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.video-info p { font-size: 12px; color: var(--text-muted); }
.video-grid-single { grid-template-columns: minmax(280px, 620px); justify-content: center; }

/* TESTIMONIALS */
.testimonial-section { background: var(--bg-card); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card { background: rgba(0,0,0,0.15); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--accent); }
.testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #000; font-weight: 600; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-meta { font-size: 11px; color: var(--text-muted); }
.review-source-card { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 30px; background: rgba(0,0,0,0.16); border: 1px solid var(--border); border-radius: var(--radius); }
.review-source-copy { max-width: 650px; }
.review-source-copy h3 { font-family: var(--font-display); font-size: 26px; margin: 7px 0 8px; }
.review-source-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.review-source-card img { width: 130px; height: 130px; object-fit: cover; border-radius: 50%; border: 3px solid var(--accent); }
.review-kicker { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }

/* BOOKING POLICY */
.policy-section { background: var(--bg); }
.policy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.policy-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); }
.policy-icon { display: block; font-size: 28px; margin-bottom: 12px; }
.policy-card h3 { font-size: 15px; margin-bottom: 8px; }
.policy-card p, .policy-disclaimer { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.policy-disclaimer { margin-top: 18px; }

/* QUICK QUOTE */
.quote-section { background: var(--bg-card); }
.quote-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.quote-copy h2 { font-family: var(--font-display); font-size: 34px; line-height: 1.25; margin: 8px 0 12px; }
.quote-copy p { color: var(--text-muted); line-height: 1.75; }
.quote-copy img { width: 120px; height: 120px; margin-top: 20px; border-radius: 10px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 26px; background: rgba(0,0,0,0.18); border: 1px solid var(--border); border-radius: var(--radius); }
.quote-form label { display: flex; flex-direction: column; gap: 7px; color: var(--text-muted); font-size: 12px; }
.quote-form input, .quote-form select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); color: var(--text); font: inherit; }
.quote-form input:focus, .quote-form select:focus { outline: 2px solid rgba(255,107,53,.35); border-color: var(--accent); }
.quote-submit { grid-column: 1 / -1; min-height: 48px; border: 0; border-radius: 8px; background: #06c755; color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.quote-note { grid-column: 1 / -1; color: var(--text-muted); font-size: 11px; text-align: center; }
.mobile-line-bar { display: none; }

/* GALLERY */
.gallery-section { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 24px; }

/* SOCIAL BANNER */
.social-banner { background: linear-gradient(135deg, var(--bg-card), var(--bg-lighter)); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.social-banner h3 { font-family: var(--font-display); font-size: 22px; }
.social-banner h3 span { color: var(--accent); }
.social-banner p { font-size: 13px; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; text-decoration: none; transition: var(--transition); color: #fff; }
.social-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.social-link.youtube { background: #ff0000; }
.social-link.facebook { background: #1877F2; }
.social-link.tiktok { background: #000; }
.social-link.line { background: #06C755; color: #fff; }

/* CTA */
.cta-section { text-align: center; padding: 60px 40px; background: linear-gradient(135deg, var(--bg-lighter), var(--bg-card)); border-top: 1px solid var(--border); }
.cta-section h2 { font-family: var(--font-display); font-size: 34px; margin-bottom: 10px; }
.cta-section h2 span { color: var(--accent); }
.cta-section p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-btn { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.cta-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.cta-btn.line { background: #06C755; color: #fff; }
.cta-btn.fb { background: #1877F2; color: #fff; }
.cta-btn.tel { background: var(--accent); color: #000; }
.cta-btn.youtube { background: #ff0000; color: #fff; }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-main { padding: 48px 40px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.footer-brand .footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text); text-decoration: none; font-size: 13px; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-col .footer-social { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.footer-col .footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); font-size: 18px; padding: 0; transition: var(--transition); }
.footer-col .footer-social a:hover { background: var(--accent); color: #000; border-color: var(--accent); padding: 0; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ITINERARY */
.itinerary-item { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.itinerary-time { min-width: 70px; font-size: 13px; color: var(--accent); font-weight: 600; padding-top: 2px; }
.itinerary-dot { width: 14px; height: 14px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 4px; position: relative; box-shadow: 0 0 0 4px rgba(255,107,53,0.15); }
.itinerary-dot::after { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 2px; height: 40px; background: var(--border); }
.itinerary-item:last-child .itinerary-dot::after { display: none; }
.itinerary-content { flex: 1; }
.itinerary-content h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.itinerary-content p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.itinerary-content .highlight { color: var(--accent); font-weight: 600; }
.day-label { display: inline-block; background: var(--accent); color: #000; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; }

/* INFO BOX */
.info-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 32px 0; }
.info-box h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 18px; }
.info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 13px; color: var(--text-muted); }
.info-value { font-size: 14px; font-weight: 600; }
.info-value.price { color: var(--accent); font-size: 18px; }

/* PRICE TABLE */
.price-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.price-table th { background: var(--bg-lighter); color: var(--text); font-size: 13px; padding: 12px 16px; text-align: left; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255,255,255,0.02); }

/* FOOD SECTION */
.food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 20px; }
.food-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: var(--transition); }
.food-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.food-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.food-icon { font-size: 30px; line-height: 1; }
.food-name { font-size: 15px; font-weight: 600; }
.food-location { font-size: 12px; color: var(--accent); margin-top: 2px; }
.food-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.food-price-tag { display: inline-block; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 4px 12px; font-size: 12px; color: var(--text-muted); margin-top: 10px; }
.food-price-tag span { color: var(--accent); font-weight: 600; }

/* Restaurant recommendations are hidden until verified with the operator. */
.section-wrap:has(.food-grid) { display: none; }

/* NOTES */
.notes { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin: 24px 0; }
.notes h4 { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 12px; }
.notes ul { list-style: none; }
.notes li { font-size: 13px; color: var(--text-muted); line-height: 1.8; padding: 3px 0; }
.notes li::before { content: '• '; color: var(--accent); }

/* SECTION TITLE (internal pages) */
.section-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.section-title span { color: var(--accent); }

/* ============================================================ */
/* PHOTO ALBUM — gallery ด้านล่างหน้าทัวร์                           */
/* ใช้ร่วมกันได้ทุกหน้าที่มี .photo-album section                  */
/* ============================================================ */
.photo-album { background: var(--bg-card); }
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.album-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
}
.album-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.album-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.album-item:hover img { transform: scale(1.06); }
.album-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 70%, transparent 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.album-item:hover .album-caption { opacity: 1; transform: translateY(0); }

/* รูปใหญ่ (featured) — caption แสดงเสมอ */
.album-item.featured { grid-column: span 2; aspect-ratio: 2 / 1; }
.album-item.featured .album-caption { opacity: 1; transform: none; font-size: 13px; }

/* LIGHTBOX — full-screen image viewer */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--text-muted); font-size: 13px; text-align: center; max-width: 90vw; }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 768px) {
  .album-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .album-item.featured { grid-column: span 2; aspect-ratio: 16 / 9; }
  .album-caption { opacity: 1; transform: none; font-size: 11px; padding: 8px 10px; }
  .lightbox-nav { width: 36px; height: 36px; font-size: 16px; }
  .lightbox-close { width: 36px; height: 36px; font-size: 18px; }
}
@media (max-width: 480px) {
  .album-grid { grid-template-columns: 1fr; }
  .album-item.featured { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  .nav-toggle { display: inline-flex; }
  .header-contact { padding: 8px 14px; font-size: 12px; }
  .header-contact .hide-mobile { display: none; }
  nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(13,27,42,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 8px 0; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
  nav.open { display: flex; }
  nav a { padding: 14px 24px; font-size: 14px; border-top: 1px solid rgba(42,74,115,0.4); border-radius: 0; }
  nav a:first-child { border-top: none; }
  .hero-content { padding: 40px 24px; }
  .hero { min-height: 320px; }
  .hero h1 { font-size: 28px; }
  .wrap { padding: 0 20px; }
  .section-wrap { padding: 40px 0; }
  .tour-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item.tall { grid-row: span 1; }
  .social-banner { flex-direction: column; text-align: center; padding: 24px; }
  .cta-section { padding: 40px 20px; }
  .cta-section h2 { font-size: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; }
  .food-grid { grid-template-columns: 1fr; }
  .vehicle-showcase { grid-template-columns: 1fr 1fr; }
  .vehicle-showcase img { height: 150px; }
  .quote-layout { grid-template-columns: 1fr; gap: 28px; }
  .review-source-card { align-items: flex-start; }
  .policy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; }
  .hero-badge { width: 100%; }
  .hero-badges .hero-badge:nth-child(n+3) { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-btn { text-align: center; }
  .quote-form { grid-template-columns: 1fr; padding: 20px; }
  .quote-form label, .quote-submit, .quote-note { grid-column: 1; }
  .quote-copy img { display: none; }
  .review-source-card { flex-direction: column-reverse; }
  .policy-grid { grid-template-columns: 1fr; }
  .review-source-card img { width: 84px; height: 84px; }
  .mobile-line-bar { display: block; position: fixed; z-index: 50; left: 12px; right: 12px; bottom: 10px; padding: 13px 18px; border-radius: 10px; background: #06c755; color: #fff; text-align: center; text-decoration: none; font-weight: 700; box-shadow: 0 8px 30px rgba(0,0,0,.35); }
  body { padding-bottom: 68px; }
}


/* ============================================================ */
/* SLIDESHOW — auto-play carousel at the bottom of each tour page */
/* Markup: <div class="slideshow" data-folder="tours/jiufen"        */
/*         data-interval="4500" data-autoplay="true"></div>          */
/* ============================================================ */
.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  max-height: 520px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.slideshow-track { position: relative; width: 100%; height: 100%; }
.slideshow-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.slideshow-slide.active { opacity: 1; z-index: 2; }
.slideshow-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  animation: ss-kenburns 9s ease-out forwards;
}
@keyframes ss-kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
.slideshow-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 24px 22px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 3;
  pointer-events: none;
}
.slideshow-counter {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 4;
}
.slideshow-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slideshow-nav:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.slideshow-prev { left: 14px; }
.slideshow-next { right: 14px; }
.slideshow-play {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slideshow-play:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.slideshow-dots {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 4;
}
.slideshow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0; padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.slideshow-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.slideshow-dot:hover { background: var(--accent-light); }
.slideshow-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px;
  z-index: 1;
}
.slideshow-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .slideshow { aspect-ratio: 4 / 3; }
  .slideshow-caption { padding: 40px 16px 16px; font-size: 13px; }
  .slideshow-nav { width: 38px; height: 38px; font-size: 16px; }
  .slideshow-play { width: 32px; height: 32px; font-size: 12px; }
}

/* ============================================================ */
/* LIGHTBOX — full-screen image viewer (used by slideshow)         */
/* ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--text-muted); font-size: 13px; text-align: center; max-width: 90vw; }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 768px) {
  .lightbox-nav { width: 36px; height: 36px; font-size: 16px; }
  .lightbox-close { width: 36px; height: 36px; font-size: 18px; }
}
