body {
  font-family: 'Kanit', sans-serif;
  background: #111827;
  scroll-behavior: smooth;
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.glow-orange {
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.15);
}

.card-hover {
  transition: all 0.45s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
}

.hero-overlay {
  background: linear-gradient(to bottom,
      rgba(3, 7, 18, 0.85),
      rgba(17, 24, 39, 0.55),
      #111827);
}

@keyframes floatMascot {

  0%,
  100% {
    transform: translateY(0px);
  }

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

.animate-bounce {
  animation: floatMascot 4s ease-in-out infinite;
}

.client-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #374151;
  background: #111827;
  transition: 0.4s ease;
  aspect-ratio: 1/1;
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.client-card:hover {
  transform: translateY(-10px);
  border-color: #f97316;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.18);
}

.client-card:hover img {
  transform: scale(1.08);
}

.skew-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;

  transform: skew(-18deg);
  transition: 0.35s ease;

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.skew-btn>* {
  transform: skew(18deg);
}

.skew-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-120%) skew(-18deg);
  transition: 0.55s ease;
}

.skew-btn:hover::before {
  transform: translateX(120%) skew(-18deg);
}

.skew-btn:hover {
  transform: skew(-18deg) translateY(-8px);
}

.skew-line {
  background: linear-gradient(135deg, #06c755, #04a846);
}

.skew-line:hover {
  box-shadow: 0 18px 40px rgba(6, 199, 85, 0.28);
}

.skew-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.skew-orange:hover {
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
}

.skew-icon {
  font-size: 1.25rem;
}

.skew-btn span:last-child {
  white-space: nowrap;
}

.about-card-box {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  transition: 0.35s ease;
}

.about-card-box:hover {
  border-color: #f97316;
  transform: translateY(-10px);
}

.about-card-box i {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 20px;
}

.about-card-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.social-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #374151;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  transition: 0.35s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.social-btn:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
}

.footer-link {
  position: relative;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #f97316;
  padding-left: 10px;
}

.footer-link {
  color: #9ca3af;
  transition: 0.35s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(8px);
}

.footer-line {
  width: 26px;
  height: 2px;
  background: #f97316;
  transition: 0.35s ease;
}

.footer-link:hover .footer-line {
  width: 42px;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
}

.cta-skew {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 1rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: 0.35s ease;
  text-decoration: none;
  overflow: hidden;
}

.cta-skew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.cta-skew:hover::before {
  left: 120%;
}

.cta-skew:hover {
  transform: translateY(-6px) scale(1.03);
}

.cta-white {
  background: #fff;
  color: #ea580c;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.cta-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 15px 35px rgba(6, 199, 85, 0.25);
}

.cta-icon {
  font-size: 1.2rem;
}

.cta-text {
  letter-spacing: 0.5px;
}

.mascot-contact {
  position: fixed;
  right: 30px;
  bottom: 70px;
  /*ปรับความสูง*/
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mascot-btn {
  width: 120px;
  height: 120px;
  border: none;
  background: none;
  cursor: pointer;
  animation: floatMascot 3s ease-in-out infinite;
}

.mascot-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.35));
}

.mascot-bubble {
  background: #fff;
  color: #111827;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  animation: bounceTalk 2s infinite;
  min-width: 180px;
  text-align: center;
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

.social-popup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.35s ease;
}

.social-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-item {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.popup-item:hover {
  transform: scale(1.12);
}

.line {
  background: #06c755;
}

.phone {
  background: #f97316;
}

.facebook {
  background: #1877f2;
}

@media (max-width:768px) {
  .mascot-contact {
    right: 18px;
    bottom: 85px;
  }

  .mascot-btn {
    width: 85px;
    height: 85px;
  }
}

@keyframes floatMascot {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes bounceTalk {

  0%,
  100% {
    transform: translateY(0);
  }

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

.client-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 1/1;
  border: 1px solid #374151;
  transition: 0.4s ease;
}

.client-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.client-showcase:hover {
  transform: translateY(-10px);
  border-color: #f97316;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.18);
}

.client-showcase:hover img {
  transform: scale(1.08);
}

.review-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 28px;
  padding: 35px;
  transition: 0.35s ease;
}

.review-card:hover {
  border-color: #f97316;
}

.review-card i {
  color: #f97316;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.review-card p {
  color: #d1d5db;
  margin-bottom: 18px;
  line-height: 1.7;
}

.review-card span {
  color: #9ca3af;
  font-size: 0.95rem;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 28px;
  transition: 0.35s ease;
  text-decoration: none;
  color: #fff;
}

.contact-box:hover {
  border-color: #f97316;
  transform: translateX(10px);
}

.contact-box i {
  font-size: 1.8rem;
  color: #f97316;
  width: 50px;
}

.contact-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-box p {
  color: #9ca3af;
}

.contact-form-box {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 32px;
  padding: 40px;
}

.contact-input {
  width: 100%;
  padding: 18px 22px;
  border-radius: 20px;
  background: #1f2937;
  border: 1px solid #374151;
  color: #fff;
  outline: none;
}

.contact-input:focus {
  border-color: #f97316;
}

.map-box {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid #374151;
}

.contact-wrapper {
  display: flex;
  align-items: stretch;
}

/* สกอบาร์ */
/* ความกว้าง scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* พื้นหลัง scrollbar */
::-webkit-scrollbar-track {
  background: #0f172a;
  /* สีพื้นหลังเข้ม */
}

/* ตัวเลื่อน */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f97316, #facc15);
  border-radius: 10px;
  border: 2px solid #0f172a;
}

/* hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fb923c, #fde047);
}

/* หน้าราคา */
.price-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  transition: 0.35s ease;
}

.price-card:hover {
  transform: translateY(-12px);
  border-color: #f97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: #f97316;
  margin-bottom: 10px;
}

.price-card span {
  color: #9ca3af;
}

.rate-mascot {
  width: 95px;
  height: auto;
  object-fit: contain;
  animation: floatMascot 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(249, 115, 22, .25));
}

.rate-bubble {
  background: #fff;
  color: #111827;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: .85rem;
  margin-top: 8px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
  position: relative;
}

.rate-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

.line-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #06C755, #05b84d);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: .35s ease;
  box-shadow: 0 15px 35px rgba(6, 199, 85, .25);
}

.line-contact-btn i {
  font-size: 1.25rem;
}

.line-contact-btn:hover {
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(6, 199, 85, .32);
}

/*รายชื่อจังหวัด*/

.region-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 30px;
  padding: 32px;
  transition: .35s ease;
}

.region-card:hover {
  transform: translateY(-10px);
  border-color: #f97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, .12);
}

.region-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #f97316;
  margin-bottom: 20px;
}

.region-card ul {
  display: grid;
  gap: 12px;
}

.region-card li {
  color: #d1d5db;
  padding-left: 18px;
  position: relative;
}

.region-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
}