﻿/* ============================================
   โชคพิทักษ์ขนส่ง 2021 ⬔ Premium CSS
   Color: #50A391 (60%) / #101010 (30%) / #DFDFDF (10%)
   Font: Kanit
   ============================================ */

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

:root {
  --green:       #50A391;
  --green-light: #6DC4B0;
  --green-dark:  #3A7A6D;
  --green-glow:  rgba(80, 163, 145, 0.35);
  --black:       #101010;
  --black-card:  #161616;
  --black-light: #1E1E1E;
  --black-mid:   #242424;
  --grey-light:  #EDEDED;
  --grey:        #DFDFDF;
  --grey-mid:    #A0A0A0;
  --grey-dark:   #606060;
  --white:       #FFFFFF;
  --shadow-green: 0 0 30px rgba(80,163,145,0.25);
  --shadow-card:  0 4px 30px rgba(0,0,0,0.5);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 20px; overflow-x: hidden; width: 100%; max-width: 100vw; }

body {
  font-family: 'Kanit', sans-serif;
  background: var(--black);
  color: var(--grey);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  background: var(--black-card);
  border-bottom: 1px solid rgba(80,163,145,0.15);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.navbar.scrolled {
  background: rgba(22,22,22,0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(80,163,145,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; height: 74px; padding: 0;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(1.1); margin-right: 8px; }
.logo-text-container { display: flex; flex-direction: column; justify-content: center; font-family: 'Kanit', sans-serif; cursor: pointer; }
.lt-top { display: flex; align-items: flex-start; gap: 4px; line-height: 1; }
.lt-company { color: #0284c7; font-size: 15px; font-weight: 700; margin-top: 5px; }
.lt-name { color: var(--white); font-size: 44px; font-weight: 800; font-style: italic; letter-spacing: -0.5px; }
.nav-links {
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
.nav-link {
  color: var(--green); background: rgba(80,163,145,0.1);
  font-weight: 600; text-decoration: none;
  font-size: 16px; padding: 8px 14px; border-radius: 50px;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(80,163,145,0.2);
}

.btn-nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--green); color: var(--black);
  padding: 10px 20px; border-radius: 50px;
  font-family: 'Kanit', sans-serif; font-size: 18px;
  font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: var(--transition); flex-shrink: 0;
}
.btn-nav-cta:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: var(--shadow-green); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--grey-mid); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 104px 64px 48px;
  background: linear-gradient(135deg, #0a0f0e 0%, #101010 40%, #0d1a17 100%);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(80,163,145,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(80,163,145,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-particle {
  position: absolute; border-radius: 50%;
  background: var(--green); opacity: 0.4;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(80,163,145,0.1); border: 1px solid rgba(80,163,145,0.3);
  color: var(--green); padding: 6px 14px; border-radius: 50px;
  font-size: 16px; font-weight: 500; margin-bottom: 16px;
  animation: fadeSlideUp 0.8s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--green); }
  50% { box-shadow: 0 0 14px var(--green); }
}

.hero-title {
  font-size: 60px; font-weight: 800;
  line-height: 1.15; color: var(--white); margin-bottom: 8px;
  animation: fadeSlideUp 0.9s ease 0.1s both;
}
.hero-highlight {
  color: var(--green);
  text-shadow: 0 0 30px rgba(80,163,145,0.5);
}
.hero-sub {
  color: var(--grey-mid); font-size: clamp(36px, 3vw, 64px); font-weight: 300;
}
.hero-desc {
  font-size: 22px; color: var(--grey-mid); margin: 16px 0 26px;
  max-width: 800px; animation: fadeSlideUp 1s ease 0.2s both;
}
.hero-desc strong { color: var(--green); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeSlideUp 1s ease 0.3s both;
}

.btn-primary {
  background: var(--green); color: var(--black);
  padding: 14px 32px; border-radius: 50px; font-family: 'Kanit', sans-serif;
  font-size: 20px; font-weight: 700; text-decoration: none;
  transition: var(--transition); display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(80,163,145,0.4); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 50px; font-family: 'Kanit', sans-serif;
  font-size: 20px; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(223,223,223,0.3);
  transition: var(--transition); display: inline-block;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* Fleet Monitor Panel */
.hero-panel { position: relative; z-index: 2; animation: fadeSlideLeft 1s ease 0.4s both; }

.fleet-monitor {
  width: 300px;
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(22,22,22,0.9);
  border: 1px solid rgba(80,163,145,0.25);
  border-radius: var(--radius);
  padding: 12px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-green);
}
.fleet-monitor::-webkit-scrollbar { width: 4px; }
.fleet-monitor::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

.fleet-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(80,163,145,0.15);
}
.fleet-title { font-size: 13px; font-weight: 600; color: var(--grey-mid); letter-spacing: 0.5px; flex: 1; }
.fleet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.fleet-dot.orange { background: #F59E0B; }
.fleet-dot.red { background: #EF4444; }

.fleet-routes { display: flex; flex-direction: column; gap: 10px; }
.route-item { display: flex; flex-direction: column; gap: 4px; }
.route-name { font-size: 14.4px; color: var(--grey-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.route-bar { width: 100%; height: 4px; background: rgba(80,163,145,0.15); border-radius: 2px; overflow: hidden; }
.route-progress {
  height: 100%; background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 2px; width: 0;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}
.route-status { font-size: 14px; font-weight: 600; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }
.route-status.running { background: rgba(80,163,145,0.15); color: var(--green); }
.route-status.arrived { background: rgba(245,158,11,0.15); color: #F59E0B; }

.fleet-footer {
  display: flex; justify-content: space-between; margin-top: 14px;
  padding-top: 12px; border-top: 1px solid rgba(80,163,145,0.15);
  font-size: 14px; color: var(--grey-dark); letter-spacing: 0.5px;
}
.on-time { color: var(--green); }

/* ===== STATS ===== */
.stats-section {
  padding: 30px 0;
  background: var(--black);
}
.stats-section .container {
  max-width: 1000px;
}
.stats-grid {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}
.stat-card {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.15);
  text-align: center; transition: var(--transition);
  border-radius: 50%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 10px; width: 150px; height: 150px; max-width: 150px; margin: 0 auto;
}
.stat-card:hover { 
  background: rgba(80,163,145,0.05); 
  transform: translateY(-5px);
  border-color: rgba(80,163,145,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.stat-number {
  font-size: 32px; font-weight: 800;
  color: var(--green); display: block; line-height: 1;
  text-shadow: 0 0 20px rgba(80,163,145,0.4);
}
.stat-label { font-size: 15px; color: var(--grey-dark); margin-top: 4px; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  width: fit-content;
  background: rgba(80,163,145,0.12); border: 1px solid rgba(80,163,145,0.3);
  color: var(--green); padding: 5px 16px; border-radius: 50px;
  font-size: 16px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 3vw, 64px); font-weight: 700;
  color: var(--white); line-height: 1.25; margin-bottom: 14px;
}
.section-title .highlight { color: var(--green); }
.section-desc { font-size: 22px; color: var(--grey-dark); max-width: 560px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services-section { padding: 100px 0; background: var(--black); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  animation: fadeSlideUp 0.7s ease forwards;
}
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: rgba(80,163,145,0.35); transform: translateY(-4px); box-shadow: var(--shadow-green); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(80,163,145,0.08) 0%, var(--black-card) 60%);
  border-color: rgba(80,163,145,0.3);
}
.service-badge-featured {
  position: absolute; top: 16px; right: 16px;
  background: var(--green); color: var(--black);
  font-size: 14px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.service-img-wrap {
  width: 100%; height: 160px; margin-bottom: 20px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(80,163,145,0.15);
}
.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-title { font-size: 25px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-desc { font-size: 18px; color: var(--grey-dark); line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li {
  font-size: 17px; color: var(--grey-mid);
  padding-left: 18px; position: relative;
}
.service-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.service-card-footer {
  margin-top: auto; padding-top: 24px;
  display: flex; justify-content: flex-end;
}
.service-details-btn {
  background: transparent; color: var(--green);
  font-size: 17px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(80,163,145,0.3);
  transition: var(--transition);
}
.service-details-btn:hover {
  background: rgba(80,163,145,0.1);
  border-color: var(--green); transform: translateY(-2px);
}

/* ===== MAP SECTION ===== */
.map-section { padding: 100px 0; background: linear-gradient(180deg, var(--black) 0%, #0a110f 100%); }
.map-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.map-left .section-title { text-align: left; }
.map-left .section-desc { text-align: left; margin: 0; }
.map-left .section-badge { /* not centered */ }

.map-stats {
  display: flex; gap: 8px; margin: 28px 0;
  padding: 20px 10px; background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.15); border-radius: var(--radius);
  width: 382px; height: 105px; max-width: 100%; align-items: center;
}
.map-stat { text-align: center; flex: 1; }
.map-stat-num { display: block; font-size: 36px; font-weight: 800; color: var(--green); }
.map-stat-label { font-size: 15.6px; color: var(--grey-dark); }

/* Event Stream */
.event-stream {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.15); border-radius: var(--radius);
  overflow: hidden;
}
.event-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: rgba(80,163,145,0.05);
  border-bottom: 1px solid rgba(80,163,145,0.1);
  font-size: 14.4px; color: var(--grey-dark); letter-spacing: 0.5px;
}
.live-dot { color: var(--green); font-weight: 600; font-size: 14.4px; }
.event-list { display: flex; flex-direction: column; }
.event-item {
  display: grid; grid-template-columns: 48px 70px 1fr auto;
  gap: 8px; align-items: center; padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { background: rgba(80,163,145,0.04); }
.ev-time { font-size: 15px; color: var(--grey-dark); font-weight: 500; }
.ev-id { font-size: 14.4px; color: var(--green); font-weight: 600; }
.ev-route { font-size: 16px; color: var(--grey-mid); }
.ev-status {
  font-size: 13.6px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
  white-space: nowrap;
}
.ev-status.delivered { background: rgba(80,163,145,0.15); color: var(--green); }
.ev-status.transit { background: rgba(245,158,11,0.15); color: #F59E0B; }
.ev-status.loading { background: rgba(99,102,241,0.15); color: #818CF8; }

/* Thailand Map */
.map-right { display: flex; justify-content: center; }
.thailand-map-container {
  background: rgba(16,26,23,0.8);
  border: 1px solid rgba(80,163,145,0.2); border-radius: var(--radius);
  padding: 20px; width: 100%; max-width: 360px;
  margin-top: 130px;
}
.thailand-map { width: 100%; height: auto; }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; background: var(--black); }

.fleet-types {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px;
}
.fleet-type-card {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.12);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: var(--transition); position: relative;
}
.fleet-type-card:hover { border-color: var(--green); transform: translateY(-3px); }
.fleet-type-card.featured { border-color: rgba(80,163,145,0.4); background: rgba(80,163,145,0.05); }
.fleet-type-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--black);
  font-size: 14.4px; font-weight: 700; padding: 3px 12px; border-radius: 50px;
  white-space: nowrap;
}
.fleet-type-icon { font-size: 50px; margin: 8px 0 12px; }
.fleet-type-info h4 { font-size: 20px; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.fleet-type-info p { font-size: 16.4px; color: var(--grey-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item.large { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,16,16,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 16.4px; color: var(--grey); font-weight: 500; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 100px 0; background: linear-gradient(180deg, #0a110f 0%, var(--black) 100%); }
.reviews-section .container { max-width: 1000px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.1);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
}
.review-card:hover { border-color: rgba(80,163,145,0.3); transform: translateY(-3px); }
.review-card.featured {
  border-color: rgba(80,163,145,0.35);
  background: linear-gradient(135deg, rgba(80,163,145,0.07) 0%, var(--black-card) 60%);
}
.review-stars { color: #F59E0B; font-size: 20px; letter-spacing: 2px; }
.review-text { font-size: 18px; color: var(--grey-mid); line-height: 1.75; flex: 1; font-style: italic; }
.review-text::before { content: '"'; color: var(--green); font-size: 30px; line-height: 0; vertical-align: -8px; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--black); flex-shrink: 0;
}
.review-name { font-size: 17.6px; font-weight: 600; color: var(--white); }
.review-company { font-size: 15.2px; color: var(--grey-dark); }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--black); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.company-info-card {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.2);
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 20px;
}
.contact-logo { height: 56px; object-fit: contain; }
.company-info-card h3 { font-size: 20px; color: var(--white); font-weight: 700; }
.company-info-card p { font-size: 15.6px; color: var(--grey-dark); margin-top: 4px; }

.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--black-card); border: 1px solid rgba(80,163,145,0.1);
  border-radius: var(--radius-sm); padding: 16px 20px;
  text-decoration: none; transition: var(--transition);
}
.contact-item:hover { border-color: rgba(80,163,145,0.35); transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon.phone { background: rgba(80,163,145,0.15); color: var(--green); }
.contact-icon.location { background: rgba(99,102,241,0.15); color: #818CF8; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 15px; color: var(--grey-dark); }
.contact-value { font-size: 20px; font-weight: 600; color: var(--white); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px; font-size: 17px;
  font-family: 'Kanit', sans-serif; font-weight: 600; text-decoration: none;
  transition: var(--transition); cursor: pointer; border: none;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn.facebook { background: rgba(24,119,242,0.15); color: #4267B2; border: 1px solid rgba(24,119,242,0.3); }
.social-btn.facebook:hover { background: #1877F2; color: white; }
.social-btn.tiktok { background: rgba(255,255,255,0.05); color: var(--grey); border: 1px solid rgba(255,255,255,0.15); }
.social-btn.tiktok:hover { background: var(--black-mid); color: var(--white); }
.social-btn.line { background: rgba(0,195,0,0.12); color: #00C300; border: 1px solid rgba(0,195,0,0.25); }

/* QR Section */
.contact-right { display: flex; flex-direction: column; gap: 24px; }
.qr-section {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.15); border-radius: var(--radius);
  padding: 28px;
}
.qr-section h3 { font-size: 20px; color: var(--white); font-weight: 600; margin-bottom: 16px; }
.qr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qr-card {
  text-align: center; background: var(--black-light);
  border: 1px solid rgba(80,163,145,0.1); border-radius: var(--radius-sm); padding: 12px;
}
.qr-card img { width: 100%; max-width: 130px; border-radius: 6px; display: block; margin: 0 auto 8px; }
.qr-card span { font-size: 15.6px; color: var(--grey-dark); }

.cta-box {
  background: linear-gradient(135deg, rgba(80,163,145,0.12) 0%, rgba(80,163,145,0.04) 100%);
  border: 1px solid rgba(80,163,145,0.25); border-radius: var(--radius);
  padding: 32px; text-align: center;
}
.cta-icon { font-size: 50px; margin-bottom: 12px; }
.cta-box h3 { font-size: 26px; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.cta-box p { font-size: 17.6px; color: var(--grey-dark); margin-bottom: 20px; }
.cta-phones { display: flex; flex-direction: column; gap: 10px; }
.cta-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--black);
  padding: 13px 24px; border-radius: 50px;
  font-family: 'Kanit', sans-serif; font-size: 20px; font-weight: 700;
  text-decoration: none; transition: var(--transition);
}
.cta-phone-btn:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(80,163,145,0.35); }
.cta-phone-btn.secondary { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.cta-phone-btn.secondary:hover { background: var(--green); color: var(--black); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(90deg, #50A391 0%, #3a7568 40%, #152420 70%, #101010 100%);
  height: 100px; display: flex; align-items: center;
}
.cta-strip-container {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.cta-strip-text h2 {
  font-size: 36px; font-weight: 700; color: #101010; margin-bottom: 8px;
}
.cta-strip-text p {
  font-size: 20px; color: rgba(255,255,255,0.9); margin: 0;
}
.cta-strip-actions {
  display: flex; gap: 16px; align-items: center;
}
.cta-strip-btn {
  padding: 9px 22px; border-radius: 50px; font-weight: 600; font-size: 16px;
  text-decoration: none; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-strip-btn.primary {
  background: var(--green); color: var(--black);
}
.cta-strip-btn.primary:hover {
  background: var(--green-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(80,163,145,0.4);
}
.cta-strip-btn.outline {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4);
}
.cta-strip-btn.outline:hover {
  border-color: var(--white); transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-strip-container { flex-direction: column; text-align: center; }
  .cta-strip-text h2 { color: var(--white); } /* Ensure contrast on smaller screens if gradient stacks */
  .cta-strip-content h3 { font-size: 15px; color: var(--white); }
  .cta-strip { background: linear-gradient(135deg, #2A5A50 0%, #101010 100%); }
  .cta-strip-actions { flex-direction: column; align-items: center; gap: 10px; width: 100%; }
  .cta-strip-btn { width: 100%; }
  /* ปุ่มจริงใน cta-strip ใช้ .btn-primary/.btn-outline — จัด 1 คอลัมน์ 2 ปุ่มซ้อน + เล็กลง */
  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-outline {
    width: 220px; max-width: 80%; padding: 9px 18px; font-size: 14px;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.footer { background: var(--black-card); border-top: 1px solid rgba(80,163,145,0.15); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { height: 75px; width: 200px; object-fit: contain; }
.footer-brand p { font-size: 17px; color: var(--grey-dark); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(80,163,145,0.1); border: 1px solid rgba(80,163,145,0.2);
  color: var(--grey-mid); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none;
}
.footer-social a:hover { background: var(--green); color: var(--black); border-color: var(--green); }

.footer-links h4, .footer-heading { font-size: 18px; color: var(--white); font-weight: 600; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 17px; color: var(--grey-dark); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info p, .footer-contact-list p { font-size: 17px; color: var(--grey-dark); }
.footer-contact-info a, .footer-contact-list a { color: var(--grey-mid); text-decoration: none; transition: color 0.2s; }
.footer-contact-list li, .footer-contact-list span { font-size: 17px; } /* ให้ Line ID / จังหวัด เท่าเบอร์โทร (17px) */
.footer-contact-info a:hover, .footer-contact-list a:hover { color: var(--green); }

.footer-bottom {
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.footer-bottom p { font-size: 16px; color: var(--grey-dark); }

/* ===== FLOATING CTA & MENU ===== */
.floating-cta {
  position: fixed; bottom: 112px; right: 32px; z-index: 99999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.float-menu-items {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}
.floating-cta.active .float-menu-items {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); color: white;
}
.float-btn:hover { transform: scale(1.1); }
.phone-btn { background: var(--green); color: var(--black); }
.phone-btn:hover { background: var(--green-light); box-shadow: 0 0 20px rgba(80,163,145,0.6); }
.line-btn { background: #00C300; }
.line-btn:hover { background: #00A800; }
.fb-btn { background: #1877F2; }
.fb-btn:hover { background: #166fe5; }
.map-btn { background: #EA4335; }
.map-btn:hover { background: #D32F2F; }
.tiktok-btn { background: #010101; border: 1px solid rgba(255,255,255,0.1); }
.tiktok-btn:hover { background: #202020; }

.main-toggle {
  width: 60px; height: 60px; cursor: pointer; border: none; outline: none;
  background: var(--green); color: var(--black); position: relative;
}
.main-toggle:hover { background: var(--green-light); transform: scale(1.05); }
.main-toggle::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--green); animation: ripple 1.5s infinite;
  opacity: 0; pointer-events: none;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.toggle-icon, .close-icon { display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.floating-cta.active .toggle-icon { transform: rotate(180deg) scale(0); opacity: 0; position: absolute; }
.close-icon { transform: rotate(-180deg) scale(0); opacity: 0; position: absolute; }
.floating-cta.active .close-icon { transform: rotate(0) scale(1); opacity: 1; position: relative; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Intersection Observer animation classes */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; gap: 40px; }
  .hero-panel { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; gap: 40px; }
  .map-right { display: flex; justify-content: center; }
  .thailand-map-container { margin-top: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(16,16,16,0.98); backdrop-filter: blur(20px); padding: 20px 24px 32px; gap: 4px; border-bottom: 1px solid rgba(80,163,145,0.15); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 20px; text-align: center; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 24px 48px; }
  .hero-content { margin-top: 20px; }
  .hero-title { font-size: 35px; }
  .hero-sub { font-size: 22px; }
  .hero-desc { font-size: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .fleet-types { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-brand, .footer-social { justify-content: center; align-items: center; }
  .footer-links ul li { justify-content: center !important; align-items: center !important; }
  .footer-bottom .container { justify-content: center !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .map-stats { gap: 16px; flex-wrap: wrap; height: auto; padding: 15px; }
  .event-stream { overflow-x: auto; width: 100%; }
  .event-list { min-width: 320px; }
  .event-item { grid-template-columns: 40px 60px 1fr auto; gap: 6px; font-size: 15.6px; }
  .floating-cta { bottom: 100px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: nowrap; gap: 10px; width: 100%; justify-content: center; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { flex: 1; padding: 12px 5px; font-size: 17px; text-align: center; white-space: nowrap; display: flex; justify-content: center; align-items: center; }
  .btn-primary, .btn-outline { text-align: center; }
  .qr-cards { grid-template-columns: 1fr; }
  .social-links { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HERO IMAGE SECTION
   ============================================ */
.hero.hero-img {
  background: var(--black);
  position: relative;
  height: 650px;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-content: center;
  align-items: start;
}
.hero-img-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.9);
  transition: transform 8s ease;
}
.hero.hero-img:hover .hero-bg-photo { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10,20,18,0.85) 0%, rgba(16,16,16,0.5) 50%, rgba(10,20,18,0.7) 100%),
    linear-gradient(to top, rgba(16,16,16,0.9) 0%, transparent 50%);
}
.hero.hero-img .hero-bg-overlay { display: none; }
.hero.hero-img .hero-content { 
  position: relative; z-index: 2; 
  display: flex; flex-direction: column; align-items: center;
  grid-column: 2; text-align: center;
}
.hero.hero-img .hero-desc { margin-left: auto; margin-right: auto; }
.hero.hero-img .hero-actions { justify-content: center; }
.hero.hero-img .hero-trust-badges { justify-content: center; }
.hero.hero-img .hero-panel { 
  position: relative; 
  z-index: 2; 
  grid-column: 3;
  justify-self: end;
  margin-right: 40px;
}
.hero.hero-img .hero-particles { z-index: 1; }

/* Trust Badges */
.hero-trust-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px;
  animation: fadeSlideUp 1s ease 0.5s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 6px 14px;
  font-size: 16px; color: var(--grey-mid); white-space: nowrap;
  transition: var(--transition);
}
.trust-badge:hover { background: rgba(80,163,145,0.15); border-color: rgba(80,163,145,0.3); color: var(--white); }
.tb-icon { font-size: 20px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0a110f 100%);
  overflow: hidden;
}
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Left image column */
.about-img-col { position: relative; }
.about-img-wrapper {
  position: relative; width: 100%; max-width: 520px;
}
.about-img-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid rgba(80,163,145,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(80,163,145,0.12);
  aspect-ratio: 3/4;
}
.about-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame:hover .about-main-img { transform: scale(1.04); }

/* Floating elements */
.about-stat-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); border-radius: var(--radius);
  padding: 18px 24px; text-align: center;
  box-shadow: 0 8px 30px rgba(80,163,145,0.4);
  z-index: 3;
}
.asf-num { display: block; font-size: 40px; font-weight: 900; color: var(--black); line-height: 1; }
.asf-label { display: block; font-size: 14.4px; color: rgba(0,0,0,0.7); font-weight: 500; margin-top: 4px; white-space: nowrap; }

.about-badge-float {
  position: absolute; top: -16px; left: 20px;
  background: rgba(22,22,22,0.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(80,163,145,0.3); border-radius: 50px;
  padding: 8px 16px; font-size: 16.4px; color: var(--green);
  font-weight: 600; z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.about-deco-line {
  position: absolute; top: 20px; left: -20px;
  width: 4px; height: 60%;
  background: linear-gradient(to bottom, var(--green), transparent);
  border-radius: 2px; z-index: 0;
}

/* Right content column */
.about-content-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.about-desc { font-size: 21px; color: var(--grey-dark); line-height: 1.85; }
.about-desc strong { color: var(--white); }

.about-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100%; }

.about-hl-item {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  padding: 14px 16px; background: rgba(22,22,22,0.7);
  border: 1px solid rgba(80,163,145,0.1); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-hl-item:hover { border-color: rgba(80,163,145,0.3); background: rgba(80,163,145,0.06); }
.ahl-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.ahl-text { display: flex; flex-direction: column; gap: 3px; }
.ahl-text strong { font-size: 18px; color: var(--white); font-weight: 600; }
.ahl-text span { font-size: 16px; color: var(--grey-dark); }

.about-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  padding: 100px 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.why-section .container {
  max-width: 900px;
}
.why-bg-pattern {
  position: absolute; inset: 0;
  max-width: 900px; margin: 0 auto; left: 0; right: 0;
  background-image: none;
  pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative; z-index: 1;
}
.why-card {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.1);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; text-align: center;
  animation: fadeSlideUp 0.7s ease both;
}
.why-card:hover {
  border-color: rgba(80,163,145,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.why-card.featured {
  background: linear-gradient(135deg, rgba(80,163,145,0.1) 0%, var(--black-card) 60%);
  border-color: rgba(80,163,145,0.3);
  grid-row: span 1;
}
.why-card-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.why-icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(80,163,145,0.08); border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.why-card h3 { font-size: 21px; font-weight: 700; color: var(--white); }
.why-card p { font-size: 17px; color: var(--grey-dark); line-height: 1.7; flex: 1; }
.why-stat {
  font-size: 28px; font-weight: 800; color: var(--green);
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(80,163,145,0.1);
  text-shadow: 0 0 16px rgba(80,163,145,0.3);
}

/* Trust Strip */
.why-trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 0; margin-top: 48px; width: 100%;
  background: rgba(22,22,22,0.8);
  border: 1px solid rgba(80,163,145,0.15); border-radius: var(--radius);
  padding: 18px 16px;
}
.wts-item { display: flex; align-items: center; gap: 10px; padding: 4px 10px; white-space: nowrap; min-width: 0; }
.wts-emoji { font-size: 24px; display: flex; align-items: center; flex-shrink: 0; }
.wts-emoji svg { width: 22px; height: 22px; overflow: visible; }
.wts-item span:last-child { font-size: 16px; color: var(--grey-mid); }
.wts-divider { width: 1px; height: 28px; background: rgba(80,163,145,0.2); flex-shrink: 0; }

/* ============================================
   HOME FAQ SECTION
   ============================================ */
.home-faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a110f 0%, var(--black) 100%);
}
.home-faq-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: stretch;
}
.home-faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item-home {
  background: var(--black-card);
  border: 1px solid rgba(80,163,145,0.1);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item-home.open { border-color: rgba(80,163,145,0.35); }
.faq-q-home {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; background: none; border: none; cursor: pointer;
  font-family: 'Kanit', sans-serif; font-size: 19px;
  color: var(--grey-mid); text-align: left;
  transition: background 0.2s, color 0.2s;
}
.faq-q-home:hover { background: rgba(80,163,145,0.04); color: var(--white); }
.faq-item-home.open .faq-q-home { color: var(--white); }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(80,163,145,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 15.6px; font-weight: 700;
}
.faq-item-home.open .faq-q-icon { background: var(--green); color: var(--black); }
.faq-q-home span:nth-child(2) { flex: 1; }
.faq-toggle {
  font-size: 28px; color: var(--green); font-weight: 300; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item-home.open .faq-toggle { transform: rotate(45deg); }
.faq-a-home {
  max-height: 200px; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item-home:not(.open) .faq-a-home { max-height: 0; }
.faq-a-home p {
  padding: 0 20px 18px 62px;
  font-size: 17.6px; color: var(--grey-dark); line-height: 1.8;
}

/* FAQ Contact Panel */
.faq-contact-panel {
  background: linear-gradient(135deg, rgba(80,163,145,0.1) 0%, var(--black-card) 80%);
  border: 1px solid rgba(80,163,145,0.25); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 100px;
}
.fcp-icon { font-size: 56px; }
.faq-contact-panel h3 { font-size: 24px; color: var(--white); font-weight: 700; }
.faq-contact-panel p { font-size: 17px; color: var(--grey-dark); line-height: 1.7; }
.fcp-btns { display: flex; flex-direction: column; gap: 10px; }
.fcp-line-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #00C300; color: white;
  padding: 12px 20px; border-radius: 50px;
  font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 18px;
  text-decoration: none; transition: var(--transition);
}
.fcp-line-btn:hover { background: #00A800; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,195,0,0.3); }
.fcp-hours {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; color: var(--grey-dark);
  padding-top: 12px; border-top: 1px solid rgba(80,163,145,0.1);
}
.fcp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrapper { max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .home-faq-grid { grid-template-columns: 1fr; }
  .faq-contact-panel { position: static; }
}
@media (max-width: 768px) {
  .hero-trust-badges { gap: 8px; }
  .trust-badge { font-size: 15px; padding: 5px 10px; }
  .about-stat-float { right: 0; bottom: -16px; }
  .about-deco-line { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { align-items: center; text-align: center; width: 181px; height: 350px; padding: 25px 12px; margin: 0 auto; }
  .why-card p { font-size: 14px; }
  .why-trust-strip { flex-direction: column; gap: 12px; background: transparent; border: none; padding: 0; }
  .wts-divider { display: none; }
  .wts-item { background: rgba(22,22,22,0.8); border: 1px solid rgba(80,163,145,0.15); border-radius: var(--radius-sm); padding: 16px; width: 100%; justify-content: center; }
  .about-cta-row { flex-direction: column; }
  .home-faq-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(16, 16, 16, 0.95); z-index: 999999;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1; pointer-events: auto;
}
.lightbox-top {
  display: flex; justify-content: flex-end; padding: 20px;
}
.lightbox-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 8px 20px; border-radius: 20px; cursor: pointer; font-family: 'Kanit', sans-serif;
  transition: var(--transition); font-size: 20px;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.1); border-color: #fff;
}
.lightbox-main {
  flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 40px 60px;
}
.lightbox-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 80vw;
}
#lightbox-img {
  max-height: 75vh; max-width: 100%; border-radius: 12px; object-fit: contain; box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.lightbox-prev, .lightbox-next {
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 50px; height: 50px; border-radius: 50%; font-size: 30px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}
.lightbox-counter {
  margin-top: 16px;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .lightbox-main {
    padding: 0;
    position: relative;
    gap: 0;
  }
  .lightbox-content {
    max-width: 100vw;
  }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: rgba(16,16,16,0.6);
    z-index: 10;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  #lightbox-img {
    max-width: 85vw;
    max-height: 70vh;
  }
}

/* ===== ขนาดตัวอักษรล็อกคงที่ (1rem = 20px, ไม่ขยายตามจอแล้ว) =====
   ความกว้าง container ยังขยายตามจอได้ แต่ "ขนาดตัวหนังสือ" คงที่ทุกจอ/ทุกที่ */
@media (min-width: 1200px) {
  .container { max-width: 1320px; }
}
@media (min-width: 1500px) {
  .container { max-width: 1440px; }
}
@media (min-width: 1800px) {
  .container { max-width: 1560px; }
}
