:root {
  --primary-pink: #f43f81;
  --dark-pink: #c2185b;
  --light-pink: #fff0f6;
  --accent-orange: #ff7a00;
  --dark-orange: #e85d04;
  --soft-orange: #fff1e6;
  --accent-white: #ffffff;
  --success-green: #10b981;
  --danger-red: #ef4444;
  --text-primary: #1b1719;
  --text-secondary: #665c61;
  --border-color: #f0dfe6;
  --bg-light: #fff7fa;
  --white: #ffffff;
  --black: #171216;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Bar */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  border-bottom: 3px solid var(--accent-orange);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.top-bar-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-socials a {
  color: var(--white);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.top-bar-socials a:hover {
  color: var(--accent-orange);
}

/* Header */
header {
  background: var(--white);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
 padding: 0;
}

.site-logo {
  display: block;
  width: auto;
  height: 130px;
  max-width: 390px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo {
    height: 105px;
    max-width: 320px;
  }
}

/* ลดช่องว่างบน-ล่างของ Header เฉพาะหน้าจอคอม */
@media (min-width: 769px) {
  header {
    padding: 0;
    overflow: hidden;
  }

  .logo {
    display: flex;
    align-items: center;
    height: 110px;
    overflow: hidden;
  }

  .site-logo {
    height: 130px;
    max-width: 390px;
    transform: scale(1.15);
    transform-origin: center;
  }
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-orange));
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-pink), var(--dark-orange));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 63, 129, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--soft-orange);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-outline:hover {
  background: var(--light-pink);
}

/* Transport Overview - section below the banner */
.transport-overview {
  background: linear-gradient(120deg, #c2185b 0%, #f43f81 52%, #ff7a00 100%);
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 0;
  color: var(--white);
}

.transport-overview::before,
.transport-overview::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.transport-overview::before {
  width: 430px;
  height: 430px;
  top: -300px;
  right: -80px;
  background: rgba(255, 255, 255, 0.045);
}

.transport-overview::after {
  width: 110px;
  height: 110px;
  right: 0;
  bottom: -72px;
  background: rgba(255, 255, 255, 0.025);
}

.transport-overview .container {
  position: relative;
  z-index: 1;
}

.overview-header {
  text-align: center;
}

.overview-header h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.3;
}

.overview-header h1 span {
  color: #ffe7d2;
  margin: 0 0.25rem;
}

.overview-header p {
  margin: 1.15rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.overview-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-pill {
  min-height: 54px;
  padding: 0.8rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.highlight-pill i {
  color: #fff0df;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.overview-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
}

.overview-stat {
  width: 205px;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.15rem 1rem;
}

.overview-stat + .overview-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.overview-stat strong {
  color: #fff1df;
  font-size: 2.15rem;
  line-height: 1.05;
  font-weight: 900;
}

.overview-stat span {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.overview-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.overview-btn {
  width: min(280px, 100%);
  min-height: 64px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.overview-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.overview-btn-call {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(49, 14, 29, 0.2);
}

.overview-btn-line {
  background: #06c755;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.2);
}

.overview-btn-line i {
  padding: 0.18rem;
  border-radius: 5px;
  background: var(--white);
  color: #06c755;
}
.overview-btn-facebook {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.25);
}

.overview-btn-facebook:hover {
  background: #0f68db;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.35);
}

.overview-btn-facebook i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.overview-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1.9rem;
  padding: 1.65rem 0 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 36px;
  padding: 0.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item i {
  color: #fff0df;
  font-size: 1.08rem;
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* Map Section */
.map-section {
  background: linear-gradient(180deg, #fffafd 0%, #fff3eb 100%);
}

.map-section .section-title {
  margin-bottom: 0.75rem;
}

.map-section .section-subtitle {
  margin-bottom: 2.5rem;
}

.service-area-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  max-width: 1120px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(244, 63, 129, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(96, 30, 58, 0.13);
}

.service-map-visual {
  position: relative;
  min-height: 510px;
  padding: 2rem;
  background: linear-gradient(145deg, #171216 0%, #c2185b 58%, #ff7a00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-map-visual::before,
.service-map-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.service-map-visual::before {
  width: 300px;
  height: 300px;
  top: -160px;
  left: -110px;
}

.service-map-visual::after {
  width: 230px;
  height: 230px;
  right: -120px;
  bottom: -110px;
}

.coverage-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ffe5d1);
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

.coverage-badge strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.coverage-badge span {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.thailand-map {
  position: relative;
  z-index: 2;
  width: min(70%, 300px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

.thailand-shape {
  fill: url(#thailandFill);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 3;
  stroke-linejoin: round;
}

.service-route {
  fill: none;
  stroke: #ff8a1f;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: routeDash 14s linear infinite;
}

.map-point > circle:first-child {
  fill: #ff7a00;
  stroke: #ffffff;
  stroke-width: 3;
}

.map-point-ring {
  fill: none;
  stroke: #ff9a42;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPulse 2s ease-out infinite;
}

.map-point-central .map-point-ring {
  animation-delay: 0.65s;
}

.map-point-south .map-point-ring {
  animation-delay: 1.3s;
}

.map-caption {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(23, 18, 22, 0.76);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.map-caption i {
  color: #ff9a42;
}

.service-area-info {
  padding: 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-eyebrow {
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: var(--light-pink);
  color: var(--dark-pink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-area-info h3 {
  margin-bottom: 1rem;
  color: var(--black);
  font-size: clamp(1.65rem, 2.7vw, 2.2rem);
  line-height: 1.3;
}

.service-area-info > p {
  margin-bottom: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.region-item {
  min-height: 68px;
  padding: 0.9rem 1rem;
  border: 1px solid #f1dfe7;
  border-radius: 13px;
  background: #fff9fb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.region-item:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 63, 129, 0.36);
  box-shadow: 0 8px 18px rgba(194, 24, 91, 0.1);
}

.region-item i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--light-pink), var(--soft-orange));
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-note {
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--soft-orange);
  color: #7a3100;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.route-note i {
  color: var(--accent-orange);
}

.service-quote-btn {
  width: fit-content;
  margin-top: 1.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(190, 24, 93, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(190, 24, 93, 0.3);
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.gallery-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin-bottom: 0.5rem;
}

.gallery-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #171216 0%, #4b172d 48%, #c2185b 75%, #ff7a00 100%);
}

.fleet-section::before,
.fleet-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.fleet-section::before {
  width: 380px;
  height: 380px;
  top: -250px;
  right: -90px;
}

.fleet-section::after {
  width: 250px;
  height: 250px;
  left: -140px;
  bottom: -150px;
}

.fleet-section .container {
  position: relative;
  z-index: 1;
}

.fleet-section .section-title {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.fleet-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fleet-card {
  position: relative;
  min-height: 335px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(23, 18, 22, 0.2);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fleet-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-orange));
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(23, 18, 22, 0.3);
}

.fleet-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(23, 18, 22, 0.9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.fleet-image {
  width: 100%;
  height: 185px;
  background: #fff0f4;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.045);
}

.fleet-card-body {
  padding: 1.25rem 1.45rem 1.5rem;
}

.fleet-card h3 {
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 800;
}

.fleet-card p {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.7;
}

.fleet-help-banner {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(23, 18, 22, 0.64);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.fleet-help-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.fleet-help-text > i {
  color: #ff9a42;
  font-size: 2rem;
  flex-shrink: 0;
}

.fleet-help-text div {
  display: flex;
  flex-direction: column;
}

.fleet-help-text strong {
  font-size: 1rem;
}

.fleet-help-text span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.fleet-contact-btn {
  flex-shrink: 0;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #ffe4d0);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 174, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 174, 0, 0.34);
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-pink);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(120deg, var(--primary-pink), var(--accent-orange));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-orange);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-pink), var(--soft-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-pink);
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.star-rating {
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-pink);
  transition: background 0.3s;
}

.faq-question:hover {
  background: linear-gradient(90deg, var(--light-pink), var(--soft-orange));
}

.faq-question i {
  color: var(--accent-orange);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(120deg, var(--primary-pink), var(--accent-orange));
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--accent-orange);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 960px) {
  .service-area-card {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-map-visual {
    min-height: 460px;
  }

  .thailand-map {
    width: min(62%, 280px);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .site-logo {
    height: 84px;
  }

  nav {
    gap: 1rem;
    width: 100%;
    justify-content: center;
  }

  .transport-overview {
    padding-top: 2.25rem;
  }

  .overview-header h1 {
    font-size: 1.8rem;
  }

  .overview-header p {
    font-size: 0.98rem;
  }

  .overview-highlights {
    gap: 0.75rem;
  }

  .highlight-pill {
    width: calc(50% - 0.375rem);
    min-height: 50px;
    padding: 0.7rem 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .overview-stat {
    width: 33.333%;
    padding: 0.15rem 0.5rem;
  }

  .overview-stat strong {
    font-size: 1.7rem;
  }

  .overview-actions {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .overview-btn {
    width: 100%;
  }

  .overview-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 0;
  }

  .service-area-card {
    border-radius: 20px;
  }

  .service-map-visual {
    min-height: 420px;
  }

  .service-area-info {
    padding: 2.2rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    min-height: auto;
  }

  .fleet-help-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .fleet-contact-btn {
    width: 100%;
  }

  .trust-item,
  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .gallery-grid,
  .service-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .transport-overview .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .overview-header h1 {
    font-size: 1.55rem;
  }

  .overview-highlights {
    flex-direction: column;
  }

  .highlight-pill {
    width: 100%;
  }

  .overview-stat {
    min-height: 70px;
  }

  .overview-stat strong {
    font-size: 1.4rem;
  }

  .overview-stat span {
    font-size: 0.78rem;
  }

  .overview-btn {
    min-height: 58px;
    font-size: 1.05rem;
  }

  .overview-trust {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(even) {
    border-left: 0;
  }

  .service-map-visual {
    min-height: 390px;
    padding: 1.25rem;
  }

  .coverage-badge {
    top: 1rem;
    right: 1rem;
    width: 78px;
    height: 78px;
  }

  .coverage-badge strong {
    font-size: 1.65rem;
  }

  .thailand-map {
    width: min(68%, 245px);
  }

  .map-caption {
    bottom: 1rem;
    font-size: 0.82rem;
  }

  .service-area-info {
    padding: 1.6rem;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .service-quote-btn {
    width: 100%;
  }
}

/* Image Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image:focus-visible {
  outline: 4px solid var(--accent-orange);
  outline-offset: -4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 4.5rem 1.5rem 1.5rem;
  background: rgba(23, 18, 22, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.image-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  display: block;
  max-width: min(92vw, 1200px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48);
}

.lightbox-content figcaption {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
  transform: rotate(90deg);
  outline: none;
}

@media (max-width: 480px) {
  .image-lightbox {
    padding: 4rem 0.75rem 1rem;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 42px;
    height: 42px;
  }

  .lightbox-content img {
    max-width: 95vw;
    max-height: 76vh;
  }

  .lightbox-content figcaption {
    font-size: 0.85rem;
  }
}
  .line-qr-card {
  width: min(620px, 100%);
  margin: 2.25rem auto 0;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(122, 33, 71, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.line-qr-copy {
  flex: 1;
}

.line-qr-kicker {
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: #fff0f6;
  color: #c2185b;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.line-qr-kicker i {
  color: #06c755;
  font-size: 1.1rem;
}

.line-qr-copy h3 {
  margin-bottom: 0.45rem;
  color: #7a2147;
  font-size: 1.45rem;
  line-height: 1.3;
}

.contact-section .line-qr-copy p {
  margin: 0;
  color: #665c61;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 1;
}

.line-qr-frame {
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 2px solid #ff7a00;
  border-radius: 12px;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(244, 63, 129, 0.18);
}

.line-qr-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 7px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .line-qr-frame {
    width: 90px;
    height: 90px;
  }
}


  .line-qr-kicker {
    margin-left: auto;
    margin-right: auto;
  }

/* ทำให้ปุ่มติดต่อเคลื่อนไหว */
.overview-btn {
  position: relative;
  overflow: hidden;
  animation: buttonFloat 2.8s ease-in-out infinite;
}

/* ให้แต่ละปุ่มเคลื่อนไหวเหลื่อมกัน */
.overview-btn-call {
  animation-delay: 0s;
}

.overview-btn-line {
  animation-delay: 0.3s;
}

.overview-btn-facebook {
  animation-delay: 0.6s;
}

/* แสงวิ่งผ่านปุ่ม */
.overview-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  animation: buttonShine 3.5s ease-in-out infinite;
}

.overview-btn i,
.overview-btn span {
  position: relative;
  z-index: 1;
}

/* ตอนเอาเมาส์ชี้ */
.overview-btn:hover {
  animation: none;
  transform: translateY(-5px) scale(1.04);
}

/* ขยับขึ้นลง */
@keyframes buttonFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* แสงวิ่งจากซ้ายไปขวา */
@keyframes buttonShine {
  0%,
  60% {
    left: -120%;
  }

  100% {
    left: 160%;
  }
}

/* ปิดการเคลื่อนไหวสำหรับผู้ใช้ที่ตั้งค่าลด Animation */
@media (prefers-reduced-motion: reduce) {
  .overview-btn,
  .overview-btn::before {
    animation: none;
  }
}
/* QR Code ใน Footer */
.footer-social-qr {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.footer-social-qr h3 {
  margin-bottom: 1.4rem;
  color: #ffffff;
  font-size: 1.3rem;
}

.footer-qr-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-qr-card {
  width: 170px;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  color: #7a2147;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(122, 33, 71, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-qr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(122, 33, 71, 0.35);
}

.footer-qr-title {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
}

.footer-qr-title i {
  font-size: 1.3rem;
}

.footer-qr-line .footer-qr-title {
  color: #06c755;
}

.footer-qr-facebook .footer-qr-title {
  color: #1877f2;
}

.footer-qr-card img {
  display: block;
  width: 95px;
  height: 95px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 9px;
  background: #ffffff;
  object-fit: contain;
}

.footer-qr-card p {
  margin: 0.7rem 0 0;
  color: #665c61;
  font-size: 0.78rem;
}

@media (max-width: 480px) {
  .footer-qr-card {
    width: 145px;
    padding: 0.8rem;
  }

  .footer-qr-card img {
    width: 85px;
    height: 85px;
  }
}

.top-bar-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-link:hover {
  color: #ff7a00;
}
#line-qr {
  scroll-margin-top: 130px;
}

/* =========================================================
   Mobile compact header
   ลดความสูงแถบข้อมูลและเมนูเฉพาะมือถือ
   ========================================================= */
@media (max-width: 768px) {
  .top-bar {
    padding: 0.45rem 0;
    font-size: 0.78rem;
    border-bottom-width: 2px;
  }

  .top-bar .container,
  header .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .top-bar-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
  }

  .top-bar-info {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .top-bar-info span {
    gap: 0.35rem;
    white-space: nowrap;
    line-height: 1.25;
  }

  /* ซ่อนข้อความเวลาเปิดบริการบนมือถือ */
  .top-bar-info span:nth-child(n + 3) {
    display: none;
  }

  .top-bar-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.15rem;
    line-height: 1;
  }

  .top-bar-socials a {
    margin: 0;
    font-size: 1rem;
  }

  header {
    padding: 0.35rem 0 0.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
  }

  .header-content {
    flex-direction: column;
    gap: 0;
  }

  .logo {
    line-height: 0;
    margin: 0 0 -8px;
  }

  .site-logo {
    height: 90px;
    max-width: 300px;
    transform: scale(1.5);
    transform-origin: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 0.5rem 0.9rem;
    line-height: 1.2;
  }

  nav a {
    font-size: 0.9rem;
  }

  nav .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .top-bar-info {
    gap: 0.3rem 0.75rem;
  }

  .top-bar-info span,
  .top-bar-link {
    font-size: 0.74rem;
  }

  .site-logo {
    height: 82px;
    max-width: 270px;
    transform: scale(1.55);
  }

  nav {
    gap: 0.45rem 0.7rem;
  }

  nav a {
    font-size: 0.82rem;
  }

  nav .btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.86rem;
  }
}
