/* =========================================================
   PREMIUM UPGRADE LAYER  ·  Naphon42 Transport
   โหลดต่อจาก style.css — ยกระดับให้พรีเมียม + ธีมรถ/เส้นทาง
   คงโทนสีเดิม (กรมท่า / แดง / เทอร์ควอยซ์ / ทอง)
   ========================================================= */

:root {
  --gold: #ffd700;
  --gold-deep: #d4af37;
  --gold-grad: linear-gradient(135deg, #ffe57a 0%, #ffd700 35%, #d4af37 70%, #b8860b 100%);
  --line-soft: rgba(255, 255, 255, 0.08);
  --elev-1: 0 18px 50px rgba(0, 0, 0, 0.45);
  --elev-2: 0 40px 100px rgba(0, 0, 0, 0.6);
  --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- จัดจังหวะ section ให้หายใจขึ้น (พรีเมียมมาจาก whitespace) ---------- */
.premium-about,
.premium-services,
.premium-reviews,
.premium-faq { scroll-margin-top: 100px; }

/* =========================================================
   1) NAVBAR — ขัดเงาให้คมและดูแพงขึ้น
   ========================================================= */
.navbar {
  background: rgba(7, 22, 41, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.navbar.scrolled {
  background: rgba(5, 17, 33, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.nav-links a {
  font-weight: 500;
}
.nav-links a.active::after {
  background: var(--gold-grad);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.7);
}

/* =========================================================
   2) ปุ่ม — ขอบทอง/น้ำหนักดีขึ้น
   ========================================================= */
.btn { letter-spacing: 0.2px; }
.btn-outline {
  border-color: rgba(255, 215, 0, 0.35);
}
.btn-outline:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 215, 0, 0.25);
}

/* =========================================================
   3) HERO — เลนถนนวิ่งใต้ข้อความ (ธีมขนส่ง)
   ========================================================= */
.hero-fullscreen .hero-road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 6, 11, 0.85) 70%, #02060b 100%);
  overflow: hidden;
}
.hero-fullscreen .hero-road::before {
  /* ผิวถนน perspective */
  content: '';
  position: absolute;
  left: -20%; right: -20%; bottom: 0;
  height: 70px;
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 215, 0, 0.85) 0 46px,
      transparent 46px 110px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  transform: perspective(280px) rotateX(62deg);
  transform-origin: bottom center;
  bottom: 6px;
  height: 40px;
  animation: laneDash 1.6s linear infinite;
  opacity: 0.55;
}
@keyframes laneDash {
  to { background-position: -110px 0; }
}

/* =========================================================
   4) TRUST BAND — แถบสถิติความน่าเชื่อถือ (มาตรฐานบริษัทขนส่ง)
   ========================================================= */
.trust-band {
  position: relative;
  z-index: 5;
  margin: -1px auto 0;
  padding: 54px 2rem 58px;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(5, 134, 133, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #02060b 0%, #061528 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  overflow: hidden;
}
.trust-band::before {
  /* เส้นถนนประบางๆ ด้านบน */
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(255, 215, 0, 0.5) 0 22px, transparent 22px 44px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item {
  position: relative;
  text-align: center;
  padding: 26px 18px;
  background: linear-gradient(160deg, rgba(13, 43, 78, 0.45), rgba(3, 10, 18, 0.55));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--elev-1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
  overflow: hidden;
  isolation: isolate;
}
.trust-item::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.45s ease;
  z-index: -1;
}
.trust-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--elev-2), 0 0 0 1px rgba(255, 215, 0, 0.18);
}
.trust-item:hover::after { opacity: 1; }
.trust-ico {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.trust-num {
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.25));
  letter-spacing: -1px;
}
.trust-label {
  margin-top: 10px;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* =========================================================
   5) ROAD DIVIDER — เส้นแบ่ง section ธีมถนนวิ่ง
   ========================================================= */
.road-divider {
  position: relative;
  height: 46px;            /* แถบโปร่งใส มีที่ว่างให้รถวิ่ง */
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.road-divider::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%;
  height: 3px; margin-top: -1.5px;
  background: repeating-linear-gradient(90deg,
    rgba(255, 215, 0, 0.7) 0 30px, transparent 30px 64px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  animation: laneDash 2.2s linear infinite;
}
.road-divider::after {
  /* รถวิ่งเล็กๆ บนเส้น */
  content: '';
  position: absolute; top: 50%; left: 0;
  width: 26px; height: 12px; margin-top: -9px;
  border-radius: 3px 4px 2px 2px;
  background: linear-gradient(180deg, #e63333, #991a1a);
  box-shadow: 0 0 14px rgba(230, 51, 51, 0.6), -8px 0 10px -4px rgba(230, 51, 51, 0.5);
  animation: driveAcross 7s linear infinite;
}
@keyframes driveAcross {
  0%   { left: 8%;  opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 92%; opacity: 0; }
}

/* =========================================================
   6) บัตรบริการ (lux-card) — ภาพมีมิติ/ซูมนุ่ม + ขอบทองใบแนะนำ
   ========================================================= */
.lux-card { transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux); }
.lux-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 10, 18, 0.55) 100%);
  opacity: 0.8; transition: opacity 0.5s ease;
  pointer-events: none;
}
.lux-card:hover .lux-card-img::after { opacity: 0.45; }
.lux-card:hover .lux-card-img img { transform: scale(1.1) !important; }
.lux-card-img img { transition: transform 0.8s var(--ease-lux) !important; }

.lux-card-featured {
  box-shadow: var(--elev-2), 0 0 0 1px rgba(255, 215, 0, 0.25);
}
.lux-card-featured::before {
  /* ขอบทองเรืองรอบใบแนะนำ */
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.lux-badge-featured {
  background: var(--gold-grad) !important;
  color: #3a2c00 !important;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
  font-weight: 800 !important;
}

/* =========================================================
   7) หัวข้อ section — eyebrow มาตรฐานคมขึ้น
   ========================================================= */
.premium-title { letter-spacing: -0.8px; }
.premium-eyebrow { color: rgba(255, 215, 0, 0.8); }

/* =========================================================
   8) FAQ — ขัดเงาเล็กน้อย
   ========================================================= */
.faq-item {
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
}
.faq-item[open] {
  box-shadow: var(--elev-1), 0 0 0 1px rgba(255, 215, 0, 0.15);
}
.faq-num {
  color: var(--gold) !important;
}

/* =========================================================
   9) FOOTER — เส้นถนนคั่นบน + โลโก้ทอง
   ========================================================= */
.footer-logo-text {
  color: var(--gold) !important;
}
.footer-bottom {
  position: relative;
}

/* =========================================================
   10) CTA — ปุ่มชัด + พื้นมีมิติ
   ========================================================= */
.cta-section h2 { letter-spacing: -0.8px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-num { font-size: 2.2rem; }
}
@media (max-width: 560px) {
  .trust-band { padding: 40px 1.2rem 44px; }
  .trust-item { padding: 22px 12px; }
  .trust-ico { width: 48px; height: 48px; }
  .trust-num { font-size: 1.9rem; }
  .trust-label { font-size: 0.85rem; }
  .hero-fullscreen .hero-road { height: 90px; }
}

/* ---------- เคารพผู้ที่ปิดแอนิเมชัน ---------- */
@media (prefers-reduced-motion: reduce) {
  .road-divider::before,
  .road-divider::after,
  .hero-fullscreen .hero-road::before { animation: none !important; }
}


/* =========================================================
   ============  PREMIUM v2 — เฟี้ยวขึ้นทั้งเว็บ  ============
   ========================================================= */

/* ---------- 11) แถบความคืบหน้าเลื่อนหน้า (scroll progress) ---------- */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 2000;
  background: linear-gradient(90deg, var(--teal-light), var(--gold), var(--red-light));
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---------- 12) สปอตไลต์ตามเมาส์บนการ์ด ---------- */
.card-spotlight {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 215, 0, 0.14), transparent 62%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none; z-index: 4;
}
.service-card:hover .card-spotlight,
.trust-item:hover .card-spotlight,
.lux-card:hover .card-spotlight,
.contact-info-card:hover .card-spotlight,
.testimonial-card:hover .card-spotlight { opacity: 1; }

/* ---------- 13) ปุ่มกลับขึ้นบนสุด ---------- */
#backToTop {
  position: fixed; right: 22px; bottom: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(13, 43, 78, 0.92), rgba(3, 10, 18, 0.92));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1500;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
  transition: all 0.4s var(--ease-lux);
}
#backToTop.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#backToTop:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.35);
  border-color: var(--gold);
}

/* ---------- 14) reveal แบบ stagger (ตั้งดีเลย์จาก --i) ---------- */
.fade-up { transition-delay: calc(var(--i, 0) * 80ms); }

/* =========================================================
   15) PAGE HEADER (services / contact) — อลังการขึ้น
   ========================================================= */
.page-header h1 {
  font-size: 3.6rem;
  letter-spacing: -1px;
}
.page-header .ph-gold {
  filter: drop-shadow(0 0 22px rgba(255, 215, 0, 0.35));
}
.ph-eyebrow {
  border-color: rgba(255, 215, 0, 0.35) !important;
}
/* เลนถนนวิ่งใต้หัวเพจ */
.page-header .ph-road {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 90px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 10, 18, 0.75) 70%, #030a12 100%);
  overflow: hidden;
}
.page-header .ph-road::before {
  content: '';
  position: absolute; left: -20%; right: -20%; bottom: 8px; height: 36px;
  background: repeating-linear-gradient(90deg,
    rgba(255, 215, 0, 0.85) 0 46px, transparent 46px 110px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  transform: perspective(260px) rotateX(62deg); transform-origin: bottom center;
  animation: laneDash 1.6s linear infinite; opacity: 0.5;
}
.breadcrumb { position: relative; z-index: 2; }

/* =========================================================
   16) SERVICE CARDS — กรอบไล่สี + แสงกวาด + แท็กทอง
   ========================================================= */
.service-card {
  transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux), border-color 0.55s var(--ease-lux) !important;
}
.service-card::before {
  /* แสงกวาดทแยงตอน hover */
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; z-index: 3;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s var(--ease-lux);
  pointer-events: none;
}
.service-card:hover::before { left: 140%; }
.service-card:hover {
  border-color: rgba(255, 215, 0, 0.45) !important;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 215, 0, 0.18), 0 0 34px rgba(7, 172, 170, 0.22) !important;
}
.service-card .service-tag {
  transition: var(--transition);
}
.service-card:hover .service-tag {
  background: var(--gold-grad) !important;
  color: #2a2000 !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
}
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 10, 18, 0.45));
  opacity: 0.4; transition: opacity 0.5s ease; pointer-events: none;  /* สว่างตั้งแต่แรก */
}
.service-card:hover .service-card-img::after { opacity: 0.25; }
.service-card-img img { transition: transform 0.9s var(--ease-lux) !important; }
.service-card:hover .service-card-img img { transform: scale(1.12) !important; }

/* =========================================================
   17) FILTER TABS — แท็บกระจกเรืองทอง
   ========================================================= */
.cat-tab {
  transition: all 0.4s var(--ease-lux);
}
.cat-tab:hover {
  border-color: rgba(255, 215, 0, 0.5) !important;
  transform: translateY(-2px);
}
.cat-tab.active {
  background: var(--gold-grad) !important;
  color: #2a2000 !important;
  border-color: transparent !important;
  box-shadow: 0 10px 26px rgba(255, 215, 0, 0.4) !important;
}
.cat-tab.active .cat-count {
  background: rgba(0, 0, 0, 0.22) !important;
  color: #2a2000 !important;
}

/* =========================================================
   18) SECTION TITLE — ไล่สีทอง-เทอร์ควอยซ์คมขึ้น
   ========================================================= */
.section-title { letter-spacing: -0.8px; }
.cat-title { letter-spacing: -0.3px; }

/* =========================================================
   19) REVIEWS STAT PILLS — กระจกพรีเมียม
   ========================================================= */
.stat-pill {
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.stat-pill:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--elev-2), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

/* =========================================================
   20) CONTACT CARDS — กรอบ + เงาพรีเมียม
   ========================================================= */
.contact-info-card {
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux) !important;
}
.contact-info-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: var(--elev-2), 0 0 0 1px rgba(255, 215, 0, 0.15) !important;
}

/* =========================================================
   21) BUSINESS CARD FRAME — มุมทองเรือง
   ========================================================= */
.business-card-frame:hover {
  box-shadow: var(--elev-2), 0 0 60px rgba(255, 215, 0, 0.18);
}

/* =========================================================
   RESPONSIVE v2
   ========================================================= */
@media (max-width: 768px) {
  .page-header h1 { font-size: 2.5rem; }
  #backToTop { width: 46px; height: 46px; right: 16px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-header .ph-road::before { animation: none !important; }
  .service-card::before { transition: none !important; }
}


/* =========================================================
   ==========  PREMIUM v3 — หน้ารีวิวเฟี้ยวขึ้น  ==========
   ========================================================= */

/* ---------- 22) โชว์เคสคะแนนรีวิว ---------- */
.review-rating-hero {
  max-width: 720px;
  margin: 0 auto 46px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  padding: 30px 44px;
  background: linear-gradient(145deg, rgba(13, 43, 78, 0.5), rgba(3, 10, 18, 0.65));
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 26px;
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: var(--elev-2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative; overflow: hidden; isolation: isolate;
}
.review-rating-hero::before {
  content: ''; position: absolute; top: -60%; left: -10%;
  width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.12), transparent);
  transform: skewX(-18deg);
  animation: rrhSweep 5.5s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
@keyframes rrhSweep {
  0%, 65%, 100% { left: -30%; }
  82% { left: 120%; }
}
.rrh-score { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.rrh-num {
  font-size: 4.6rem; font-weight: 900;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  filter: drop-shadow(0 0 22px rgba(255, 215, 0, 0.3));
  letter-spacing: -2px;
}
.rrh-out { font-size: 1.4rem; font-weight: 700; color: rgba(255, 255, 255, 0.5); }
.rrh-right { text-align: left; }
.rrh-stars {
  font-size: 1.7rem; letter-spacing: 4px; line-height: 1;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}
.rrh-text { margin-top: 8px; font-size: 0.98rem; color: rgba(255, 255, 255, 0.72); }
.rrh-text strong { color: var(--gold); font-weight: 700; }

/* ---------- 23) การ์ดสถิติรีวิว (ยกระดับ stat-pill) ---------- */
.reviews-stats { gap: 20px; }
.stat-pill {
  flex-direction: column;
  min-width: 190px;
  padding: 24px 30px 20px !important;
  border-width: 1px;
}
.stat-pill .stat-ico {
  width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  background: linear-gradient(135deg, rgba(7, 172, 170, 0.18), rgba(5, 134, 133, 0.08));
  border: 1px solid rgba(7, 172, 170, 0.3);
}
.stat-pill-gold .stat-ico {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(212, 175, 55, 0.06));
  border-color: rgba(255, 215, 0, 0.3);
}
.stat-pill-teal .stat-ico {
  color: var(--red-light);
  background: linear-gradient(135deg, rgba(230, 51, 51, 0.18), rgba(204, 34, 34, 0.06));
  border-color: rgba(230, 51, 51, 0.3);
}
.stat-pill .stat-num { font-size: 2.1rem !important; }

/* ---------- 24) marquee รีวิว — มุมทอง + ป้าย verified ---------- */
.marquee-item-mini::after {
  content: '';
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px; border-radius: 50%; z-index: 3;
  background: var(--gold-grad);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%232a2000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.45);
  opacity: 0; transform: scale(0.4); transition: all 0.35s var(--ease-lux);
  pointer-events: none;
}
.marquee-item-mini:hover::after { opacity: 1; transform: scale(1); }

/* ---------- 25) เน้นกรอบทองวิดีโอ + หัวข้อ ---------- */
.featured-video-title { letter-spacing: -0.5px; }

@media (max-width: 560px) {
  .review-rating-hero { gap: 18px; padding: 24px 22px; }
  .rrh-num { font-size: 3.4rem; }
  .rrh-stars { font-size: 1.4rem; }
  .stat-pill { min-width: 150px; padding: 20px 18px 16px !important; }
  .stat-pill .stat-num { font-size: 1.7rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  .review-rating-hero::before,
  .rrh-num, .rrh-stars { animation: none !important; }
}


/* =========================================================
   ============  PREMIUM v4 — ปุ่มทุกอันทั้งเว็บ  ============
   ทำให้ปุ่มทั้งหมดเป็นชุดเดียวกัน: น้ำหนักดี + แสงกวาด (gleam)
   + ยกตัวนุ่ม + เงาลึก + สถานะกด + ขอบทองแอคเซนต์
   ========================================================= */

/* ---------- ฐานปุ่มร่วม + แสงกวาดทุกปุ่ม ---------- */
.btn,
.strip-btn,
.reviews-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-weight: 700;
  letter-spacing: 0.3px;
  will-change: transform;
}
.btn::before,
.strip-btn::before,
.reviews-link::before {
  content: '';
  position: absolute; top: 0; left: -135%;
  width: 55%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s var(--ease-lux);
  pointer-events: none;
}
.btn:hover::before,
.strip-btn:hover::before,
.reviews-link:hover::before { left: 155%; }
.btn:active,
.strip-btn:active,
.reviews-link:active { transform: translateY(-1px) scale(0.985); }

/* ---------- ปุ่มหลัก (แดง) ---------- */
.btn-primary {
  background: linear-gradient(135deg, #ff5a5a 0%, #e63946 45%, #b00d1c 100%) !important;
  background-size: 170% 170% !important;
  background-position: 0% 0%;
  box-shadow: 0 14px 32px rgba(193, 18, 31, 0.5),
              inset 0 2px 0 rgba(255, 255, 255, 0.22),
              inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background-position 0.6s ease !important;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.035) !important;
  background-position: 100% 100%;
  box-shadow: 0 22px 48px rgba(193, 18, 31, 0.62),
              0 0 28px rgba(255, 90, 90, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ---------- ปุ่มเทอร์ควอยซ์ ---------- */
.btn-teal {
  background: linear-gradient(135deg, #0bd0cd 0%, #07acaa 45%, #036362 100%) !important;
  background-size: 170% 170% !important;
  background-position: 0% 0%;
  box-shadow: 0 14px 32px rgba(5, 134, 133, 0.5),
              inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background-position 0.6s ease !important;
}
.btn-teal:hover {
  transform: translateY(-4px) scale(1.035) !important;
  background-position: 100% 100%;
  box-shadow: 0 22px 48px rgba(5, 134, 133, 0.62),
              0 0 28px rgba(11, 208, 205, 0.45),
              inset 0 2px 0 rgba(255, 255, 255, 0.28) !important;
}

/* ---------- ปุ่มโครง (กระจก + ขอบทอง) ---------- */
.btn-outline {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 215, 0, 0.45) !important;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background 0.4s ease, border-color 0.4s ease !important;
}
.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  transform: translateY(-4px) scale(1.035) !important;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 215, 0, 0.32) !important;
}

/* ---------- strip-btn (CTA แถบบริการ) — แดงพรีเมียม ---------- */
.strip-btn {
  background: linear-gradient(135deg, #ff5a5a, #cc2222) !important;
  background-size: 170% 170%;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background-position 0.6s ease !important;
}
.strip-btn:hover {
  transform: translateY(-4px) scale(1.04) !important;
  background-position: 100% 100%;
  box-shadow: 0 20px 44px rgba(204, 34, 34, 0.65), 0 0 26px rgba(255, 90, 90, 0.4) !important;
}

/* ---------- reviews-link — ลิงก์รีวิวเป็นปุ่มทองโครง ---------- */
.reviews-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 36px; border-radius: 50px;
  font-size: 1.05rem; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(7, 172, 170, 0.1));
  border: 1.5px solid rgba(255, 215, 0, 0.45);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s ease, background 0.4s ease;
}
.reviews-link:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(7, 172, 170, 0.14));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4), 0 0 26px rgba(255, 215, 0, 0.3);
}
.reviews-link span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-grad); color: #2a2000; font-weight: 800;
  transition: transform 0.4s var(--ease-lux);
}
.reviews-link:hover span { transform: translateX(5px); }

/* ---------- nav-cta — เสริมขอบทองบางๆ ตอน hover ---------- */
.nav-cta:hover { box-shadow: 0 14px 34px rgba(255, 56, 56, 0.7), 0 0 0 2px rgba(255, 215, 0, 0.5), 0 0 24px rgba(255, 107, 107, 0.5) !important; }

/* ---------- เคารพ reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .btn::before, .strip-btn::before, .reviews-link::before { transition: none !important; }
  .btn:hover, .btn-primary:hover, .btn-teal:hover, .btn-outline:hover,
  .strip-btn:hover, .reviews-link:hover { transform: none !important; }
}


/* =========================================================
   ====  PREMIUM v11 — คืนพื้นหลังเดิม (ต่างกันแต่ละส่วน) + เติมหน้าบริการ
   เลิกบังคับให้ทุก section เหมือนกัน · ปล่อยให้สีเน้นเดิมของแต่ละส่วนทำงาน
   ========================================================= */

/* ปิดเลเยอร์เอฟเฟกต์ที่เคยใส่ (route map / particles) */
.bg-fx { display: none !important; }

/* ---------- เติมพื้นหลังให้ "หน้าบริการ" (เดิมโล่ง ไม่มีพื้นหลัง) ----------
   ใช้สีเน้นกรมท่า+เทอร์ควอยซ์ ให้ดูพรีเมียมเหมือนส่วนอื่น */
/* ---------- พื้นหลังพรีเมียมร่วม: หน้าบริการ + section ในหน้าติดต่อ ---------- */
.services-categorized,
.contact-page .section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 30% at 15% 8%, rgba(7, 172, 170, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 65% 30% at 85% 40%, rgba(204, 34, 34, 0.10) 0%, transparent 62%),
    radial-gradient(ellipse 70% 30% at 20% 72%, rgba(13, 60, 110, 0.26) 0%, transparent 62%),
    radial-gradient(ellipse 65% 28% at 82% 96%, rgba(255, 215, 0, 0.05) 0%, transparent 62%),
    linear-gradient(180deg, #04101f 0%, #061a30 50%, #04101f 100%);
}
/* เส้น grid จางๆ ไล่จางขอบ (โทนเดียวกับส่วนอื่น) */
.services-categorized::before,
.contact-page .section::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 172, 170, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 172, 170, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}

/* =========================================================
   ====  PREMIUM v12 — เอฟเฟกต์รถบรรทุกขับผ่าน (ธีมขนส่ง)  ====
   เงารถวิ่งข้ามจอที่ด้านล่างของแต่ละส่วน + ไฟหน้า + เส้นถนนจาง
   inject ด้วย premium.js · สุ่มจังหวะให้ไม่ซ้ำกัน
   ========================================================= */
.drive-fx {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 150px; z-index: -1; overflow: hidden; pointer-events: none;
}
/* เส้นถนนประจางๆ ที่ฐาน */
.drive-fx::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 22px; height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(255, 215, 0, 0.18) 0 26px, transparent 26px 52px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.drive-truck {
  position: absolute; bottom: 16px; left: 0;
  width: 168px; height: 70px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.16;
  filter: drop-shadow(0 0 10px rgba(7, 172, 170, 0.5));
  animation: driveBy 20s linear infinite;
  will-change: transform;
}
/* คันที่วิ่งสวนทาง (กลับด้าน) */
.drive-truck.reverse {
  transform: scaleX(-1);
  animation-name: driveByRev;
}
@keyframes driveBy {
  0%   { transform: translateX(-200px); }
  100% { transform: translateX(calc(100vw + 200px)); }
}
@keyframes driveByRev {
  0%   { transform: translateX(calc(100vw + 200px)) scaleX(-1); }
  100% { transform: translateX(-200px) scaleX(-1); }
}

@media (prefers-reduced-motion: reduce) {
  .drive-truck { animation: none !important; opacity: 0 !important; }
}


/* =========================================================
   ====  PREMIUM v13 — เอฟเฟกต์เสริมความหรู (reveal/links)  ====
   ========================================================= */

/* ---------- reveal ตอนเลื่อน: เนียนขึ้น + เบลอจางเข้ามา ---------- */
.fade-up {
  transition: opacity 0.7s var(--ease-lux),
              transform 0.7s var(--ease-lux),
              filter 0.7s var(--ease-lux);
  filter: blur(6px);
}
.fade-up.visible { filter: blur(0); }

/* ---------- ลิงก์เมนู: เส้นใต้ทองเลื่อนเข้า ---------- */
.nav-links a::before {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-lux);
  opacity: 0.9;
}
.nav-links a:hover::before { transform: scaleX(1); }
.nav-links a.active::before { display: none; }  /* active มีขีดอยู่แล้ว */

/* ---------- ลิงก์ footer: ไล่สีทองตอน hover ---------- */
.footer-links a:hover { color: var(--gold) !important; }

/* ---------- ไอคอนหมวด/การ์ด: เด้งเบาๆ ตอน hover การ์ด ---------- */
.lux-card:hover .lux-icon,
.service-card:hover .service-icon { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { filter: none !important; }
  .nav-links a::before { transition: none !important; }
}


/* =========================================================
   ============  PREMIUM v14 — ปรับ FOOTER ให้หรูขึ้น  ============
   กลมกลืนจากเนื้อหา · เส้นบนทอง-เทอร์ควอยซ์เนียน · โทนกรมท่าลึก
   ========================================================= */
.footer {
  background: linear-gradient(180deg, #04101f 0%, #071a30 45%, #0a2444 100%) !important;
  padding-top: 70px !important;
}
/* เส้นบน: ทอง→เทอร์ควอยซ์ เนียน (แทนเส้นรุ้งวิ่ง) */
.footer::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(7, 172, 170, 0.55) 25%,
    rgba(255, 215, 0, 0.8) 50%,
    rgba(7, 172, 170, 0.55) 75%,
    transparent 100%) !important;
  background-size: 100% 100% !important;
  height: 2px !important;
  animation: none !important;
  opacity: 0.9;
}
/* ลดแสงแดงมุมขวาให้นุ่มลง */
.footer::after { opacity: 0.45 !important; }
/* หัวข้อคอลัมน์: ขีดใต้เป็นทอง-เทอร์ควอยซ์ */
.footer h4::after {
  background: var(--gold-grad) !important;
}
/* เส้นคั่นล่าง + ลิขสิทธิ์ให้ดูสะอาด */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.55);
}
/* โลโก้ footer เรืองทองนิดๆ */
.footer-logo img { filter: drop-shadow(0 4px 14px rgba(255, 215, 0, 0.25)) !important; }


/* =========================================================
   ==  PREMIUM v16 — การ์ดบริการ ทรงภาพบน+เนื้อหา+ปุ่ม (คลีนหรู)  ==
   accent เทอร์ควอยซ์เป็นหลัก · ทองเป็นแต้มเล็กๆ · เน้นช่องไฟ/ลำดับชัด
   ========================================================= */
.service-card {
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(16, 38, 66, 0.55) 0%, rgba(7, 18, 34, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  padding-bottom: 22px !important;
}
.service-card:hover {
  border-color: rgba(7, 172, 170, 0.5) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(7, 172, 170, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ภาพ */
.service-card-img {
  height: 200px !important;
  border-radius: 20px 20px 0 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* ไอคอน: เทอร์ควอยซ์นุ่ม (accent เดียว) ไอคอนขาว */
.service-icon {
  width: 60px !important; height: 60px !important;
  margin: -30px auto 18px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #07acaa, #058685) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 26px rgba(7, 172, 170, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}
.service-card .service-icon svg { color: #fff !important; stroke: #fff !important; filter: none !important; }
.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.06) !important;   /* ยกเบาๆ ไม่พลิก */
  box-shadow: 0 16px 32px rgba(7, 172, 170, 0.6) !important;
}
.service-card:hover .service-icon svg { transform: none !important; }

/* ชื่อ: ขาว สะอาด → เทอร์ควอยซ์ตอน hover */
.service-card h3 {
  font-size: 1.22rem !important; font-weight: 700 !important;
  color: #ffffff !important; -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important; letter-spacing: 0.2px;
  transition: color 0.3s ease;
}
.service-card:hover h3 { color: var(--teal-light) !important; -webkit-text-fill-color: var(--teal-light) !important; }
.service-card p { color: rgba(226, 232, 240, 0.7) !important; }

/* แถวล่าง: เส้นคั่น + แท็ก + ดูเพิ่ม (inject ด้วย premium.js) */
.sc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 8px 22px 0 !important; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sc-foot .service-tag {
  margin: 0 !important;
  border-radius: 50px !important; padding: 6px 16px !important;
  background: rgba(7, 172, 170, 0.10) !important;
  border: 1px solid rgba(7, 172, 170, 0.4) !important;
  color: var(--teal-light) !important;
  text-transform: none !important; letter-spacing: 0.3px !important;
  transition: var(--transition);
}
.sc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 600; color: var(--teal-light);
  white-space: nowrap; transition: gap 0.3s var(--ease-lux), color 0.3s ease;
}
.sc-more svg { width: 16px; height: 16px; }
.service-card:hover .sc-more { gap: 11px; color: #ffd700; }
.service-card:hover .sc-foot .service-tag {
  background: rgba(255, 215, 0, 0.12) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: #ffd700 !important;
}


/* =========================================================
   ====  PREMIUM v17 — ขอบเรืองแสงวิ่งรอบการ์ดบริการ  ====
   แสงเทอร์ควอยซ์→ทอง วิ่งวนรอบขอบ ตลอดเวลา (เด่นขึ้นตอน hover)
   ========================================================= */
@property --scAngle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.sc-glow {
  position: absolute; inset: 0;
  border-radius: 20px; z-index: 1; pointer-events: none;
  padding: 1.6px;
  background: conic-gradient(from var(--scAngle),
    rgba(7, 172, 170, 0) 0deg,
    rgba(7, 172, 170, 0.85) 55deg,
    rgba(255, 215, 0, 0.95) 110deg,
    rgba(7, 172, 170, 0) 190deg,
    rgba(7, 172, 170, 0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55;
  animation: scSpin 5s linear infinite;
}
.service-card:hover .sc-glow,
.lux-card:hover .sc-glow,
.testimonial-card:hover .sc-glow {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(7, 172, 170, 0.5)) drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}
@keyframes scSpin { to { --scAngle: 360deg; } }

@media (prefers-reduced-motion: reduce) {
  .sc-glow { animation: none !important; }
}


/* =========================================================
   ====  PREMIUM v18 — เพิ่มขนาดรูปรีวิวขึ้นเล็กน้อย (~15%)  ====
   หน้าแรก .marquee-item · หน้ารีวิว .marquee-item-mini · ทุกหน้าจอ
   ========================================================= */
/* Desktop */
.marquee-item { width: 322px !important; height: 230px !important; }
.marquee-item-mini { width: 168px !important; }

/* แท็บเล็ต/มือถือ (≤768px) */
@media (max-width: 768px) {
  .marquee-item { width: 252px !important; height: 184px !important; }
  .marquee-item-mini { width: 146px !important; }
}
/* มือถือ (≤480px) */
@media (max-width: 480px) {
  .marquee-item { width: 218px !important; height: 158px !important; }
  .marquee-item-mini { width: 132px !important; }
}
/* มือถือเล็ก (≤360px) */
@media (max-width: 360px) {
  .marquee-item { width: 196px !important; height: 140px !important; }
  .marquee-item-mini { width: 120px !important; }
}


/* =========================================================
   ====  PREMIUM v19 — ป็อปอัพเลือกเบอร์โทร (กดไอคอนโทร)  ====
   ========================================================= */
.phone-modal {
  position: fixed; inset: 0; z-index: 3000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 11, 0.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.phone-modal.open { display: flex; animation: pmFade 0.25s ease; }
.phone-modal-card {
  width: 100%; max-width: 370px; position: relative;
  background: linear-gradient(180deg, #0e2238, #0a1626);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 22px; padding: 30px 24px 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: pmPop 0.3s var(--ease-lux);
}
.phone-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: #fff; font-size: 1.7rem;
  line-height: 1; cursor: pointer; opacity: 0.6; transition: opacity 0.2s;
}
.phone-modal-close:hover { opacity: 1; }
.phone-modal-title {
  color: #fff; font-size: 1.3rem; font-weight: 800;
  text-align: center; margin: 0 0 4px;
}
.phone-modal-sub {
  color: rgba(255, 255, 255, 0.6); font-size: 0.9rem;
  text-align: center; margin: 0 0 22px;
}
.phone-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; margin-bottom: 12px;
  border-radius: 14px; text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease-lux), background 0.3s ease, border-color 0.3s ease;
}
.phone-opt:last-child { margin-bottom: 0; }
.phone-opt:hover {
  background: rgba(7, 172, 170, 0.12);
  border-color: rgba(7, 172, 170, 0.5);
  transform: translateY(-2px);
}
.phone-opt-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #07acaa, #058685);
  box-shadow: 0 8px 18px rgba(7, 172, 170, 0.4);
}
.phone-opt b { display: block; color: #fff; font-size: 1.08rem; letter-spacing: 0.3px; }
.phone-opt small { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmPop { from { opacity: 0; transform: translateY(22px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ---------- 26) TESTIMONIALS (เขียนรีวิวจากลูกค้าจริง) ---------- */
.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
  position: relative;
  z-index: 5;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 38, 66, 0.55) 0%, rgba(7, 18, 34, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.5s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.testimonial-card::after {
  content: '”';
  position: absolute;
  right: 18px;
  bottom: 0px;
  font-size: 7.2rem;
  font-family: Georgia, serif;
  color: rgba(255, 215, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-lux), color 0.4s ease;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 215, 0, 0.22), 0 0 30px rgba(7, 172, 170, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.testimonial-card:hover::after {
  color: rgba(255, 215, 0, 0.12);
  transform: translateY(-4px) scale(1.06);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  padding-right: 24px; /* เผื่อพื้นที่ให้ badge ขวาบน */
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1.8px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  background: #000;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-lux), border-color 0.4s ease;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.08) rotate(3deg);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(255, 215, 0, 0.25);
}
.testimonial-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial-name {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-verified-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #2a2000;
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
  z-index: 5;
}
.testimonial-role {
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.testimonial-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}
.testimonial-stars {
  font-size: 1.05rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 2;
}
.testimonial-body {
  font-family: 'Prompt', sans-serif;
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px 18px;
    border-radius: 16px;
  }
  .testimonial-header {
    gap: 12px;
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .testimonial-verified-badge {
    top: 16px;
    right: 18px;
  }
  .testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border-width: 1.5px;
  }
  .testimonial-name {
    font-size: 0.92rem;
  }
  .testimonial-role {
    font-size: 0.74rem;
  }
  .testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
  }
  .testimonial-body {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .testimonial-card::after {
    font-size: 5rem;
    right: 10px;
    bottom: -6px;
  }
}

@media (max-width: 560px) {
  .testimonials-section {
    padding: 16px 20px 40px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .testimonial-header {
    gap: 10px;
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border-width: 1.5px;
  }
  .testimonial-name {
    font-size: 0.98rem;
    gap: 5px;
    line-height: 1.3;
  }
  .testimonial-verified-badge {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
  }
  .testimonial-role {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .testimonial-date {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
  }
  .testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 6px;
    letter-spacing: 1.5px;
  }
  .testimonial-body {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-top: 2px;
  }
  .testimonial-card::after {
    font-size: 4rem;
    right: 10px;
    bottom: -6px;
  }
}

/* =========================================================
   ============  PREMIUM LIGHTBOX CONTROLS  ============
   ========================================================= */
.video-lightbox,
.review-lightbox {
  background: rgba(2, 6, 11, 0.94) !important;
  backdrop-filter: blur(30px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(140%) !important;
  z-index: 11000 !important; /* Force global stacking context above navbar */
}

/* ปุ่มปิดและควบคุม */
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(10, 24, 46, 0.6) !important;
  border: 1.5px solid rgba(255, 215, 0, 0.35) !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: all 0.4s var(--ease-lux) !important;
  opacity: 0.75;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  z-index: 10005 !important;
}
.lightbox-close {
  top: 28px !important;
  right: 28px !important;
}
.lightbox-close svg,
.lightbox-nav svg {
  transition: transform 0.4s var(--ease-lux);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  opacity: 1 !important;
  background: rgba(10, 24, 46, 0.85) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35), 0 12px 36px rgba(0, 0, 0, 0.6) !important;
}
.lightbox-close:hover {
  transform: scale(1.06) !important;
}
.lightbox-close:hover svg {
  transform: rotate(90deg);
}

/* ปุ่มเลื่อนซ้ายขวา */
.lightbox-nav {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.lightbox-prev {
  left: 36px !important;
}
.lightbox-next {
  right: 36px !important;
}
.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08) translateX(-3px) !important;
}
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08) translateX(3px) !important;
}

/* ตัวเลขตัวนับ */
.lightbox-counter {
  background: rgba(10, 24, 46, 0.7) !important;
  border: 1.2px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: 'Prompt', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

/* ปรับแต่งความกว้างกรอบวิดีโอเดสก์ท็อปให้ใหญ่ขึ้น สวยงาม */
.video-lightbox-frame {
  max-width: 440px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(7, 172, 170, 0.15) !important;
  border-radius: 24px !important;
}

/* =========================================================
   Responsive lightbox for Tablet & Mobile (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .video-lightbox,
  .review-lightbox {
    padding: 60px 16px !important;
  }
  .lightbox-close {
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .lightbox-nav {
    width: 44px !important;
    height: 44px !important;
    opacity: 0.5; /* จางลงเพื่อไม่บังตัววิดีโอ/รูปภาพ */
  }
  .lightbox-prev {
    left: 12px !important;
  }
  .lightbox-next {
    right: 12px !important;
  }
  .lightbox-counter {
    bottom: 16px !important;
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
  }
  .video-lightbox-frame {
    max-width: 320px !important;
    border-radius: 18px !important;
  }
}
