﻿/* =========================================================
   RESET / BASE
========================================================= */
:root {
  --navy: #03051f;
  --navy-2: #070a2d;
  --yellow: #f6c400;
  --yellow-dark: #ddb100;
  --text: #121521;
  --muted: #6f7482;
  --line: #e8e8ee;
  --bg-soft: #f3f3f5;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(8, 11, 41, 0.08);
  --radius: 18px;
  --container: 1820px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--yellow {
  background: var(--yellow);
  color: #111;
}

.btn--yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, .6);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .08);
}

.btn--dark {
  background: var(--navy);
  color: var(--yellow);
}

.btn--dark:hover {
  filter: brightness(1.05);
}

.btn--light-outline {
  background: white;
  color: var(--text);
  border: 2px solid #20233d;
}

.btn--light-outline:hover {
  background: #fafafa;
}

.btn--small {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
}

.btn--lg {
  min-width: 220px;
  min-height: 54px;
}

.btn--xl {
  min-width: 380px;
  min-height: 58px;
  font-size: 1.05rem;
}

.btn--wide {
  min-width: 260px;
  min-height: 54px;
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar {
  background: var(--yellow);
  color: #111;
  font-size: 14px;
  font-weight: 600;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   HEADER / NAV
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 5, 31, 0.98);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 43%, var(--yellow) 43%, var(--yellow) 57%, transparent 57%),
    linear-gradient(0deg, transparent 43%, var(--yellow) 43%, var(--yellow) 57%, transparent 57%),
    #23357f;
  border: 4px solid #6271c3;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: transparent;
  flex: 0 0 auto;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 1.08rem;
  color: #dfe6ff;
}

.logo__text span {
  font-size: 0.8rem;
  color: #9ea7d7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, .9);
  padding: 28px 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--yellow);
}

.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.icon-btn:hover,
.menu-toggle:hover {
  background: rgba(255, 255, 255, .06);
}

.menu-toggle {
  display: none;
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .08), transparent 30%),
    linear-gradient(rgba(5, 7, 21, .45), rgba(5, 7, 21, .6)),
    linear-gradient(180deg, #3f4149 0%, #262836 40%, #171920 100%);
  color: white;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, .08), transparent 18%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .05), transparent 14%),
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .35));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 110px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 26px auto 0;
  max-width: 980px;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  color: var(--yellow);
  font-weight: 700;
}

.hero__desc {
  margin: 14px auto 0;
  max-width: 820px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .86);
}

.hero__buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   HERO MACHINES (CSS SHAPES)
========================================================= */

.machine-card {
  position: absolute;
  bottom: 0;
  width: 430px;
  height: 230px;
}

.machine-card--left {
  left: 8%;
}

.machine-card--right {
  right: 8%;
  transform: scaleX(-1);
}

.machine-card__body {
  position: absolute;
  inset: 0;
}

.machine-card__cab {
  position: absolute;
  left: 150px;
  top: 54px;
  width: 84px;
  height: 84px;
  background: linear-gradient(180deg, #7bc0d0, #355a6e);
  border: 8px solid #1e2633;
  border-radius: 10px;
}

.machine-card__arm {
  position: absolute;
  left: 195px;
  top: 90px;
  width: 150px;
  height: 26px;
  background: #f1b524;
  border-radius: 12px;
  transform: rotate(-26deg);
  transform-origin: left center;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .18);
}

.machine-card__bucket {
  position: absolute;
  right: 22px;
  top: 98px;
  width: 118px;
  height: 88px;
  background: linear-gradient(180deg, #f2c24f, #e0a329);
  clip-path: polygon(0 0, 100% 12%, 92% 100%, 14% 100%);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .18);
}

.machine-card__wheel {
  position: absolute;
  bottom: 20px;
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle, #333 35%, #111 36% 100%);
  border: 10px solid #232323;
  border-radius: 50%;
}

.machine-card__wheel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #f2b321;
}

.machine-card__wheel--front {
  right: 84px;
}

.machine-card__wheel--back {
  left: 84px;
}

.machine-card__body::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 118px;
  width: 190px;
  height: 54px;
  background: linear-gradient(180deg, #f2b321, #cb8f13);
  border-radius: 20px 24px 14px 14px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .14);
}

.machine-card__body::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 134px;
  width: 120px;
  height: 82px;
  background: linear-gradient(180deg, #f0ba37, #d49d22);
  clip-path: polygon(0 25%, 85% 0, 100% 100%, 18% 100%);
}

/* =========================================================
   HERO SLIDESHOW
========================================================= */
.hero {
  height: 1100px;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #0b1020;
  color: white;
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 110px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 6s ease;
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4, 7, 25, 0.45), rgba(4, 7, 25, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* ปุ่มซ้ายขวา */
.hero-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}

.hero-slide-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-slide-nav--prev {
  left: 18px;
}

.hero-slide-nav--next {
  right: 18px;
}

/* dots */
.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--yellow);
}

/* ปรับ overlay เดิมไม่ให้ทับ */
.hero__overlay {
  display: none;
}

/* responsive */

/* =========================================================
   HERO ARTICLE THUMBNAILS
========================================================= */
.hero-thumbs {
  position: absolute;
  top: 40%;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: min(1500px, calc(100% - 48px));
  /*ประขยาย Hero slide หน้า index.html*/
  justify-content: center;
}

.hero-thumbs--article {
  pointer-events: auto;
}

.hero-thumb {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

a.hero-thumb {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-thumb--article.is-active .hero-thumb__title {
  color: #fff6c8;
}

/* =========================================================
   HERO THUMB ACTIVE HIGHLIGHT FIX
========================================================= */
.hero-thumbs--article .hero-thumb--article {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

/* ตอน hover */
.hero-thumbs--article .hero-thumb--article:hover {
  border-color: rgba(246, 196, 0, 0.95);
}

/* ตอน active */
.hero-thumbs--article .hero-thumb--article.is-active {
  border: 3px solid var(--yellow);
  box-shadow:
    0 0 0 4px rgba(246, 196, 0, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.42);
}

/* เส้นเหลืองด้านล่าง active */
.hero-thumbs--article .hero-thumb--article.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 6px;
  z-index: 3;
}

/* ให้รูปไม่บังเส้นขอบ */
.hero-thumbs--article .hero-thumb--article .hero-thumb__image,
.hero-thumbs--article .hero-thumb--article .hero-thumb__content {
  position: relative;
  z-index: 1;
}

.hero-thumb--article {
  width: 500px;

  min-height: 500px;

  border-radius: 18px;
  overflow: hidden;
  background: rgba(8, 12, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  backdrop-filter: blur(6px);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    opacity .28s ease;
  opacity: .88;
  text-align: left;
}

.hero-thumb__image {
  display: block;
  width: 100%;
  height: 480px;

  overflow: hidden;
  background: #1b2236;
}

.hero-thumb__image img {
  width: 100%;
  height: 100%;

  display: block;
  transition: transform .4s ease;
}

.hero-thumb__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
}

.hero-thumb__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.hero-thumb__title {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

/* hover ขยาย */
.hero-thumb--article:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(246, 196, 0, .9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .34);
  opacity: 1;
}

.hero-thumb--article:hover .hero-thumb__image img {
  transform: scale(1.12);
}

/* active */
.hero-thumb--article.is-active {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
  opacity: 1;
}

.hero-thumb--article.is-active .hero-thumb__title {
  color: #fff6c8;
}

/* dots ขยับลง */
.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--yellow);
}

/* responsive */

/* =========================================================
   HERO BRAND STRIP
========================================================= */

.hero-brand-strip__item {
  min-height: 120px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-brand-strip__item+.hero-brand-strip__item {
  border-left: 1px solid rgba(0, 0, 0, .08);
}

/* =========================================================
   INTRO CTA
========================================================= */
.intro-cta {
  background: var(--bg-soft);
  padding: 64px 0 52px;
}

.intro-cta__inner {
  text-align: center;
}

.intro-cta__headline {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.6;
}

.highlight-box {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 70px;
  font-size: 50px;
  font-weight: 800;
  background: var(--yellow);
  color: #111;
}

.intro-cta__buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   SECTION / HEADERS
========================================================= */
.section {
  padding: 76px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.section-head.center {
  text-align: center;

}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.18;
  font-weight: 800;

}

/* =========================================================
   TABS
========================================================= */
.product-tabs {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: #2a2f3d;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* =========================================================
   PRODUCT GRID / SLIDER
========================================================= */
.product-slider-wrap {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  font-size: 32px;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--yellow);
}

.slider-arrow--left {
  left: -10px;
}

.slider-arrow--right {
  padding-left: 30px;
  right: -10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  overflow: hidden;
}

.product-card {
  display: none;
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .03);
  transition: var(--transition);

  margin: 10px 10px 10px;

  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.product-card img {
  width: 280px;
  height: 270px;
  object-fit: contain;

  display: block;
  margin: 18px auto 12px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #f3d34a;
  box-shadow: 0 10px 24px rgba(239, 243, 5, 0.678);
}

.product-card[hidden] {
  display: none !important;
}

.product-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.product-card__brand {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  font-weight: 900;
  color: #232323;
}

.product-card__image {
  margin-top: 20px;
  height: 220px;
  border-bottom: 2px solid #f0c247;
  position: relative;
}

.product-card.is-visible {
  display: block;
}

.machine-thumb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 180px;
  height: 110px;
  background: linear-gradient(180deg, #f2b321, #d59516);
  border-radius: 22px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .15);
}


.product-card h3 {
  margin: 16px 0 10px;
  font-size: 1.65rem;
  line-height: 1.3;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: #4e5361;
  font-size: 14px;
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
  color: #161921;
}

.product-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}

/* =========================================================
   SERVICES
========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card--wide {
  min-height: 320px;
}

.service-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  color: white;

}

.service-card__overlay h3 {
  margin: 0;
  font-size: 1.7rem;
  max-width: 85%;
}

.service-card__overlay span {
  font-size: 34px;
  line-height: 1;
}

/* ใช้พื้นหลังจาก gradient ให้ใช้งานได้ทันที */
.service-img-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/2.png");
}

.service-img-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/3.png");
}

.service-img-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/4.png");
}

.service-img-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/5.jpg");
}

.service-img-5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/6.png");
}

.service-img-6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/7.jpg");
}

.service-img-7 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/8.png");
}

.service-img-8 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/9.png");
}

.service-img-9 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/10.png");
}

.service-img-10 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/11.png");
}

.service-img-11 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/12.png");
}

.service-img-12 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../images/service/14.jpg");
}

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .6)),
    linear-gradient(135deg, #393d44, #131722);
  color: white;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .06), transparent 18%),
    radial-gradient(circle at 76% 70%, rgba(255, 255, 255, .05), transparent 16%);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 78px 0 72px;
}

.cta-banner__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.cta-banner__content p {
  margin: 18px auto 0;
  max-width: 900px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .86);
}

/* =========================================================
   NEWS
========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.news-card__image {
  position: relative;
  height: 270px;
  background-size: cover;
  background-position: center;
}

.news-img-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/น้ำยาแอร์แอต่ละชนิด/น้ำยาแอร์.png");
}

.news-img-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/ล้างแอร์เอง/ล้างแอร์เอง.png");
}

.news-img-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/วืธีเลือกขนาดBTU/วืธีเลือกขนาดBTU.png");
}

.news-img-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/สัญญาณเตือน/1.png");
}

.news-img-5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/ทำความเข้าใจวัฏจักรการเปลี่ยนความร้อนให้เป็นความเย็น/1.jpg");
}

.news-img-6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/บำรุงรักษาเชิงป้องกันเพื่อความเย็นที่ยั่งยืน/1.jpg");
}

.news-img-7 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/บำรุงรักษาเชิงป้องกันเพื่อความเย็นที่ยั่งยืน/1.jpg");
}

.news-img-8 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/หลักการทำงานของระบบ VRF (Variable Refrigerant Flow)/1.png");

}

.news-img-9 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/เปรียบเทียบระหว่างแอร์ระบบ Fixed Speed กับ Inverter/เปรียบเทียบระหว่างแอร์ระบบ\ Fixed\ Speed\ กับ\ Inverter.png");
}

.news-img-10 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../category/articles/สูตรลับการคำนวณ BTU/1.png");
}


.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.news-card__body {
  padding: 18px;
}

.news-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.news-card__body p {
  margin: 0 0 16px;
  color: #666b79;
  font-size: 15px;
}

.news-footer-btn {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.line-add-btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 0 16px;

  background: var(--yellow);
  color: #111;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

  transition: 0.25s ease;
}

.line-add-btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.line-add-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 34px;
  height: 20px;
  padding: 0 6px;

  background: #111;
  color: var(--yellow);
  border-radius: 999px;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* =========================================================
   Promotion
========================================================= */
.promotion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promotion-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.promotion-card__image {
  position: relative;
  height: 270px;
  background-size: cover;
  background-position: center;
}

.promotion-img-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("../../promotion/Test01.png");
}

.promotion-img-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("...");
}

.promotion-img-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("...");
}

.promotion-img-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.705)), url("...");
}

.promotion-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.promotion-card__body {
  padding: 18px;
}

.promotion-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.promotion-card__body p {
  margin: 0 0 16px;
  color: #666b79;
  font-size: 15px;
}

.promotion-footer-btn {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   >
========================================================= */

.symbol {
  margin: 10px;
  color: var(--yellow);
  font-weight: 700;
  line-height: 1.55;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--navy);
  color: white;
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 0.9fr;
  gap: 34px;
}

.footer__lead {
  margin: 22px 0 18px;
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.55;
}

.footer__contact-list,
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact-list li,
.footer__links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .86);
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 2rem;
  color: white;
}

.footer__links a:hover {
  color: var(--yellow);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  border-radius: 8px;
  font-weight: 800;
}

.footer__bottom {
  margin-top: 36px;
  background: var(--yellow);
  color: #111;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.footer__grid {
  align-items: left;
  justify-items: center;
  text-align: left;
}

.footer__col {
  width: 100%;
  max-width: 320px;
}

.footer-logo {
  justify-content: left;
  text-align: left;
}

.footer__contact-list,
.footer__links {
  text-align: left;
}

.footer__lead {
  text-align: left;
}

.socials {
  justify-content: left;
}

/* =========================================================
   FLOATING BUTTON
========================================================= */
.floating-help {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #4761ff;
  color: white;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(35, 64, 211, 0.3);
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-map {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map__btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: #f6c400;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.contact-map__btn:hover {
  background: #ddb100;
}

.contact-page {
  background: #f3f3f5;
  padding: 56px 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-title-group {
  margin-bottom: 24px;
}

.contact-eyebrow {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1e2235;
  position: relative;
  padding-left: 14px;
}

.contact-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  border-radius: 99px;
  background: var(--yellow);
}

.contact-left h1,
.contact-right h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: #0f1324;
}

.contact-right h2 {
  color: var(--yellow);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-card {
  background: #efe9d8;
  border-radius: 6px;
  padding: 18px 18px 16px;
  min-height: 144px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.contact-info-card:hover {
  background: #f6f0de;
  border-color: var(--yellow);
  box-shadow:
    0 0 0 2px rgba(246, 196, 0, 0.16),
    0 12px 24px rgba(246, 196, 0, 0.18);
  transform: translateY(-3px);
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
}

.contact-info-card ul,
.contact-follow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-card li,
.contact-follow li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #1f2937;
}

.contact-follow {
  margin-top: 12px;
}

.contact-follow h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
}

.contact-map--custom {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 0;
}

.contact-map--custom iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-place-card {
  position: absolute;
  top: 18px;
  left: 18px;
  width: min(340px, calc(100% - 36px));
  background: #ffffff;
  border-radius: 2px;
  padding: 12px 14px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: #202124;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-place-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.map-place-card__title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 6px;
}

.map-place-card__meta {
  font-size: 13px;
  line-height: 1.45;
  color: #5f6368;
  margin-bottom: 10px;
}

.map-place-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.map-place-card__rating {
  color: #444;
  font-weight: 500;
}

.map-place-card__rating span {
  color: #5f6368;
}

.map-place-card__action {
  color: #1a73e8;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   CONTACT FORM
========================================================= */
.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.form-field {
  width: 100%;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #2c3142;
  background: transparent;
  padding: 8px 0 10px;
  font-size: 0.98rem;
  color: #121521;
  outline: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--yellow);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-checkbox {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #555b69;
}

.contact-checkbox input {
  margin-top: 3px;
}

.contact-checkbox a {
  color: #d9a900;
  font-weight: 600;
}

.contact-submit {
  margin-top: 18px;
  min-width: 140px;
  min-height: 48px;
  font-weight: 800;
}

.form-field--highlight input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
}

.form-field--highlight {
  padding: 12px 14px;
  border: 1px solid #d8dbe3;
  border-radius: 14px;
  background: var(--yellow);
  transition: all .25s ease;
}

/* =========================================================
   RESPONSIVE CONTACT PAGE
========================================================= */

/* =========================================================
   ABOUT US PAGE
========================================================= */
.about-hero {
  background:
    linear-gradient(rgba(7, 8, 22, 0.45), rgba(7, 8, 22, 0.7)),
    url("../../images/about-us/hero.png") center/cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 40%, rgba(255, 193, 7, 0.08), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;

}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 130px;
}

.about-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f7f0d0;
}

.about-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.about-hero p {
  max-width: 880px;
  margin: 22px 0 0;
  font-size: clamp(1.12rem, 1.8vw, 1.75rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

/* =========================================================
   GENERIC ABOUT SECTIONS
========================================================= */
.about-section {
  position: relative;
  background: #f4f4f5;
  padding: 86px 0;
  overflow: hidden;
}

.about-section--intro {
  padding-top: 94px;
  padding-bottom: 80px;
}

.about-container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.about-container--narrow {
  max-width: 980px;
}

.about-watermark {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about-watermark--vision {
  top: 4px;
}

.about-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.about-heading.center {
  text-align: center;
}

.about-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #040821;
  line-height: 1.15;
}

.about-heading__line {
  display: inline-block;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: 18px;
}

.about-text-block {
  position: relative;
  z-index: 2;
}

.about-text-block p {
  margin: 0 0 22px;
  font-size: 1.22rem;
  line-height: 1.95;
  color: #7b7f89;
  font-weight: 500;
}

.about-text-block strong {
  color: #243044;
  font-weight: 800;
}

.about-text-block.center {
  text-align: center;
}

/* =========================================================
   YELLOW MESSAGE BAND
========================================================= */
.about-message-band {
  position: relative;
  background: var(--yellow);
  padding: 86px 0 82px;
  overflow: hidden;
}

.about-message-band::before {
  content: "";
  position: absolute;
  left: -2%;
  top: -54px;
  width: 104%;
  height: 120px;
  background: #f4f4f5;
  transform: rotate(-2deg);
  transform-origin: center;
}

.about-message-band__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1320px;
}

.about-message-band__inner p {
  margin: 0 auto;
  max-width: 1320px;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.7;
  color: #111;
  font-weight: 700;
  font-style: italic;
}

.about-message-band__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-btn-outline {
  min-width: 260px;
  min-height: 56px;
  background: transparent;
  border: 2px solid #11182a;
  color: #111;
  font-weight: 800;
}

.about-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   QUOTE
========================================================= */
.about-quote {
  margin: 34px 0 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.45;
  font-weight: 900;
  font-style: italic;
  color: #050b22;
}

/* =========================================================
   RESPONSIVE ABOUT PAGE
========================================================= */

/* =========================================================
   SERVICE PAGE
========================================================= */
.service-hero {
  position: relative;

  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/13.jpg") center/cover no-repeat;
  color: #fff;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE shop
========================================================= */
.shop-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/shop/shop.png") center/cover no-repeat;
  color: #fff;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.shop-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.shop-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.shop-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.shop-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.shop-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   NEWS PAGE
========================================================= */
.news-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/13.jpg") center/cover no-repeat;
  color: #fff;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.news-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.news-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.news-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.news-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.news-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.news-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Installation
========================================================= */
.Installation-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/install-service/hero-fix.png") center/cover no-repeat;
  color: #fff;
}

.Installation-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.Installation-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.Installation-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.Installation-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.Installation-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.Installation-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.Installation-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Repair
========================================================= */
.repair-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/reapair-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.repair-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.repair-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.repair-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.repair-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.repair-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.repair-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.repair-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Cleaning
========================================================= */
.cleaning-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/cleaning-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.cleaning-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.cleaning-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.cleaning-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.cleaning-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.cleaning-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.cleaning-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.cleaning-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Move
========================================================= */
.move-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/move-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.move-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.move-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.move-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.move-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.move-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.move-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.move-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Preventive Maintenance (PM)
========================================================= */
.PM-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/preventive-maintenance-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.PM-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.PM-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.PM-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.PM-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.PM-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.PM-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.PM-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Chiller
========================================================= */
.chiller-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/chiller-service/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.chiller-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.chiller-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.chiller-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.chiller-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.chiller-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.chiller-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.chiller-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Overhaul
========================================================= */
.overhaul-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/overhaul-service/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.overhaul-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.overhaul-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.overhaul-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.overhaul-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.overhaul-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.overhaul-service-hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.overhaul-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Duct service
========================================================= */
.duct-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/duct-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.duct-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.duct-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.duct-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.duct-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.duct-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.duct-service-hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.duct-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Air condition for control boxes
========================================================= */
.controlbox-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/Air-Condition-for-Control-Boxes-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.controlbox-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.controlbox-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.controlbox-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.controlbox-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.controlbox-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.controlbox-service-hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.controlbox-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Air condition for auto control boxes
========================================================= */
.autocontrol-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/auto-control-service/hero.png") center/cover no-repeat;
  color: #fff;
}

.autocontrol-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.autocontrol-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.autocontrol-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.autocontrol-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.autocontrol-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.autocontrol-service-hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.autocontrol-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* =========================================================
   SERVICE PAGE Installation
========================================================= */
.air-dryer-service-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/air-dryer-service/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.air-dryer-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(255, 193, 7, 0.08), transparent 20%);
  pointer-events: none;
}

.air-dryer-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.air-dryer-service-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 92px;
}

.air-dryer-service-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff7d6;
}

.air-dryer-service-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.air-dryer-service-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.15;
  font-weight: 900;
}

.air-dryer-service-hero p {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}


/* =========================================================
   NEWS PAGE วิธีเลือกขนาด BTU
========================================================= */
.news-layout {
  padding: 56px 0;
  background: #ffffff;
}

.news-layout__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* MAIN */
.news-main {
  background: #fff;
}

.news-main__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
}

.news-main__media img {
  width: 100%;
  /* height: 520px;*/
  object-fit: cover;
  display: block;
}

.news-main__body {
  padding: 18px 0 0;
}

.news-main__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  color: #0b1a3a;
}

.news-main__lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.9;
  color: #2e3a52;
}

.news-main__list {
  margin: 0 0 22px;
  padding-left: 20px;
  color: #1f2a42;
  font-size: 17px;
  line-height: 1.9;
}

.news-main__list li {
  margin: 10px 0;
}

.news-main__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* BUTTONS (ใช้ได้กับทั้งเว็บ) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn--primary {
  background: #f4be00;
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.btn--ghost {
  background: #fff;
  color: #0b1a3a;
  border: 1px solid rgba(11, 26, 58, .18);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

/* SIDEBAR */
.news-side__card {
  background: #f2f2f2;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  position: sticky;
  top: 90px;
}

.news-side__title {
  font-size: 20px;
  font-weight: 900;
  color: #0b1a3a;
  margin: 0 0 12px;
}

.news-side__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.news-side__link {
  color: #0b1a3a;
  text-decoration: none;
  font-weight: 600;
  opacity: .92;
}

.news-side__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.news-side__divider {
  height: 1px;
  background: rgba(0, 0, 0, .10);
  margin: 16px 0;
}

.news-side__social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f4be00;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

/* RESPONSIVE */

/* =========================================================
   SERVICE INTRO
========================================================= */
.service-page {
  background: #f4f4f5;
  padding: 72px 0 86px;
}

.service-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
}

.service-intro__eyebrow {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow);
}

.service-intro__left h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: 900;
  color: #040821;
}

.service-intro__right p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #626874;
  font-weight: 500;
}

.service-intro__actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   SERVICE FEATURE CARDS
========================================================= */
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-feature-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 12, 31, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(10, 12, 31, 0.09);
}

.service-feature-card__image {
  height: 290px;
  background-size: cover;
  background-position: center;
}

.service-feature-card__body {
  padding: 22px 22px 24px;
}

.service-feature-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 800;
  color: #08101f;
}

.service-feature-card__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #6a707b;
}

/* ใช้ gradient placeholder ก่อน */
.service-feature-img-1 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .28)),
    url("images/service-1.jpg") center/cover no-repeat;
}

.service-feature-img-2 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .24)),
    linear-gradient(135deg, #8d744d, #354150);
}

.service-feature-img-3 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .22)),
    linear-gradient(135deg, #57718a, #283241);
}

.service-feature-img-4 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .24)),
    linear-gradient(135deg, #8b7c5f, #31404d);
}

.service-feature-img-5 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .24)),
    linear-gradient(135deg, #6a8597, #334453);
}

.service-feature-img-6 {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .24)),
    linear-gradient(135deg, #7f6757, #2f3948);
}

/* =========================================================
   CTA
========================================================= */
.service-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(4, 7, 25, 0.5), rgba(4, 7, 25, 0.7)),
    linear-gradient(135deg, #545a66 0%, #1d2432 60%, #090d1e 100%);
  color: #fff;
  padding: 78px 0 84px;
}

.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.08), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 18%);
}

.service-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-cta__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.2;
  font-weight: 900;
}

.service-cta__inner p {
  margin: 16px auto 0;
  max-width: 920px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.service-cta__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE SERVICE PAGE
========================================================= */

/* =========================================================
   NAV DROPDOWN
========================================================= */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--yellow);
}

.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-dropdown__toggle:hover::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown__arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform .25s ease;
}

.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  background: #f2f2f2;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 16px 22px;
  background: #f2f2f2;
  color: #171717;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px dashed #d6d6d6;
  transition: background .2s ease, color .2s ease;
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover {
  background: var(--navy);
  color: var(--yellow);
}

.nav-dropdown__menu a.is-current {
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
}

/* desktop hover ได้ด้วย */

/* mobile ซ่อน dropdown ใน nav หลัก เพราะ nav หลักถูกซ่อนอยู่แล้ว */

/* =========================================================
   NAV DROPDOWN SHARED
========================================================= */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--yellow);
}

.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-dropdown__toggle:hover::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown__arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform .25s ease;
}

.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  background: #f2f2f2;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 16px 22px;
  background: #f2f2f2;
  color: #171717;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px dashed #d6d6d6;
  transition: background .2s ease, color .2s ease;
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover {
  background: var(--navy);
  color: var(--yellow);
}

/* =========================================================
   SERVICE DROPDOWN
========================================================= */
.nav-dropdown--service .nav-dropdown__menu--service {
  width: 360px;
  min-width: 360px;
  max-height: 78vh;
  overflow-y: auto;
  padding: 8px 0;
}

.nav-dropdown__group+.nav-dropdown__group {
  border-top: 1px solid #dddddd;
}

.nav-dropdown__title {
  padding: 14px 22px 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--yellow);
  background: #ececec;
}

.nav-dropdown__menu--service a {
  padding: 13px 22px;
  font-size: 15px;
}

/* item current page */
.nav-dropdown__menu a.is-current {
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
}

/* desktop hover */

/* mobile */

/* =========================================================
   NEWS PAGE / DAILY WORKS
========================================================= */
.news-page-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)),
    url("../../images/service/13.jpg") center/cover no-repeat;
  color: #fff;
}

.news-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.08), transparent 20%);
}

.news-page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 58px;
  padding-bottom: 52px;
}

.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.news-breadcrumb a:hover {
  color: var(--yellow);
}

.news-page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
}

.news-page-hero p {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

/* content */
.news-page-section {
  background: #f4f4f5;
  padding: 46px 0 80px;
}

.news-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.news-filter-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-filter-btn {
  border: 0;
  background: #ffffff;
  color: #182033;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
  transition: .2s ease;
}

.news-filter-btn:hover,
.news-filter-btn.active {
  background: var(--navy);
  color: var(--yellow);
}

.news-filter-right input {
  min-width: 280px;
  height: 44px;
  border: 1px solid #d6dae2;
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
  background: #fff;
}

.news-filter-right input:focus {
  border-color: var(--yellow);
}

.daily-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.daily-work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8e8ee;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.daily-work-card:hover {
  transform: translateY(-4px);
  border-color: #f3d34a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

.daily-work-card__image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f3f4f6;
}

.daily-work-card__image img {
  width: 100%;
  height: 100%;

  display: block;
}

.daily-work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  z-index: 2;
}

.daily-work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.daily-work-card__body h3 {
  margin: 0 0 12px;
  color: #0e1424;
  font-size: 1.35rem;
  line-height: 1.45;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.daily-work-meta {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.daily-work-card__body p {
  margin: 0 0 16px;
  color: #646c79;
  line-height: 1.75;
}

.daily-work-card__body p:last-of-type {
  flex-grow: 1;
}

.daily-work-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.news-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.news-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d8dbe3;
  background: #fff;
  color: #0e1424;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.news-page-btn:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
  transform: translateY(-2px);
}

.news-page-btn.active {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}

.news-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.news-page-dots {
  padding: 0 4px;
  color: #6b7280;
  font-weight: 700;
}

/* จอใหญ่กลาง */

/* tablet */

/* mobile */

/* =========================================================
   NEWS DETAIL PAGE
========================================================= */
.news-detail-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 9, 28, 0.45), rgba(6, 9, 28, 0.72)),
    linear-gradient(135deg, #66707c 0%, #253041 60%, #0a0e1f 100%);
  color: #fff;
}

.news-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 20% 75%, rgba(255, 193, 7, 0.08), transparent 20%);
  background: linear-gradient(rgba(6, 9, 28, 0.42), rgba(6, 9, 28, 0.62)), url(../../images/service/13.jpg) center / cover no-repeat;
}

.news-detail-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 56px;
}

.news-detail-hero__badge {
  display: inline-block;
  margin-bottom: 14px;
  background: var(--yellow);
  color: #111;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.news-detail-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.18;
  font-weight: 900;
}

.news-detail-hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.news-detail-section {
  background: #f4f4f5;
  padding: 42px 0 80px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 28px;
  align-items: start;
}

.news-detail-main {
  min-width: 0;
}

.news-detail-cover {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  margin-bottom: 26px;
}

.news-detail-content {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
  border: 1px solid #e8e8ee;
}

.news-detail-content h2,
.news-detail-content h3 {
  margin-top: 0;
  color: #0e1424;
}

.news-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.news-detail-content h3 {
  font-size: 1.3rem;
  margin: 26px 0 12px;
}

.news-detail-content p {
  margin: 0 0 16px;
  color: #646c79;
  line-height: 1.85;
}

.news-detail-list {
  margin: 0;
  padding-left: 20px;
  color: #646c79;
}

.news-detail-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.news-detail-gallery {
  margin-top: 28px;
}

.news-detail-gallery h3 {
  margin: 0 0 14px;
  color: #0e1424;
  font-size: 1.35rem;
}

.news-detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-detail-thumb {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.news-detail-cover {
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  margin-bottom: 26px;
}

.news-detail-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-detail-thumb {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.news-detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-detail-bottom {
  margin-top: 28px;
}

.news-detail-sidebar {
  display: grid;
  gap: 18px;
}

.news-detail-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
  border: 1px solid #e8e8ee;
}

.news-detail-info-card h3 {
  margin: 0 0 14px;
  color: #0e1424;
  font-size: 1.2rem;
}

.news-detail-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-detail-info li {
  margin-bottom: 10px;
  color: #646c79;
  line-height: 1.7;
}

.news-detail-info strong {
  color: #0f1628;
}

.news-detail-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-detail-links li+li {
  margin-top: 10px;
}

.news-detail-links a {
  color: #1f2c47;
  font-weight: 600;
}

.news-detail-links a:hover {
  color: var(--yellow-dark);
}

.news-detail-contact-card p {
  color: #646c79;
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.news-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d8dbe3;
  background: #fff;
  color: #0e1424;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.news-page-btn:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
  transform: translateY(-2px);
}

.news-page-btn.active {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}

.news-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.news-page-dots {
  padding: 0 4px;
  color: #6b7280;
  font-weight: 700;
}

.news-search-bar {
  margin: 0 0 24px;
}

.news-search-bar__inner {
  max-width: 520px;
}

.news-search-input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #d8dbe3;
  border-radius: 14px;
  background: #fff;
  color: #0e1424;
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.news-search-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(246, 196, 0, .18);
}

.news-search-input::placeholder {
  color: #8a91a1;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 1.05rem;
  color: #dfe6ff;
}

.logo__text span {
  font-size: 0.8rem;
  color: #9ea7d7;
}

/* =========================================================
   CTA BANNER STATIC BACKGROUND
========================================================= */
.cta-banner--static {
  position: relative;
  overflow: hidden;
  background:
    url("../../images/cta-banner/6.png") center/cover no-repeat;
  color: #fff;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4, 7, 25, 0.50), rgba(4, 7, 25, 0.72));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 88px 0 82px;
}

.cta-banner__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.2;
}

.cta-banner__content p {
  margin: 18px auto 0;
  max-width: 900px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .88);
}

.cta-banner__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-banner__or {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

/* =========================================================
   ABOUT MESSAGE BAND + WORK SLIDESHOW
========================================================= */
.about-message-band--gallery {
  background: linear-gradient(135deg, #f6c400 0%, #efbb00 100%);
  padding: 150px 20px 20px 20px;
}

.about-message-band--gallery .intro-cta__inner {
  text-align: center;
}

.about-message-band--gallery .intro-cta__headline {
  margin: auto;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
  font-weight: 900;
  color: #111;
}

.about-message-band__desc {
  max-width: 920px;
  margin: 18px auto 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.88);
  font-weight: 500;
}

/* กล่อง slideshow */
.work-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border-radius: 24px;
}

.work-showcase__track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s ease;
  will-change: transform;
}

.work-showcase__item {
  flex: 0 0 calc((100% - 40px) / 3);

  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.25);
}

.work-showcase__item img {
  width: 100%;
  height: 100%;

  display: block;
  transition: transform .35s ease;
}

.work-showcase__item:hover img {
  transform: scale(1.08);
}

/* dots */
.work-showcase__dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.work-showcase__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, .28);
  cursor: pointer;
  transition: .2s ease;
}

.work-showcase__dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: #111;
}

/* responsive */

/* =========================================================
   intro cta
========================================================= */

.service-intro-cta {
  background: #f3f3f3;
  padding: 70px 0 56px;
}

.service-intro-cta__inner {
  max-width: 1220px;
}

.service-intro-cta__headline {
  text-align: center;
  margin: 0;
  color: #06163a;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-highlight-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 72px;
  margin-right: 8px;
  background: #f4be00;
  color: #000;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.service-intro-cta__desc {
  text-align: center;
  margin: 28px 0 22px;
  color: #2b3550;
  font-size: 19px;
  line-height: 1.9;
}

.service-intro-cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin: 8px 0 34px;
}

.service-intro-badge {
  color: #2b3550;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.service-warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-warranty-card {
  min-height: 275px;
  border-radius: 8px;
  padding: 34px 30px 30px;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-warranty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-warranty-card__icon {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}

.service-warranty-card h3 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  font-weight: 800;
}

.service-warranty-card p {
  text-align: center;
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.8;
}

.service-warranty-card--yellow {
  background: #f4be00;
}

.service-warranty-card--cream {
  background: #ead99c;
}

.service-warranty-card--gray {
  background: #e8e8e8;
}

/* =========================================================
   AC waranty content
========================================================= */
.ac-warranty {
  position: relative;
  overflow: hidden;
  background: #f4be00;
  background: url("../../images/service/after-sale-service/HVAC-Chillers-IG-optimized.webp") center/cover no-repeat;
  padding: 40px 0;
}

.ac-warranty::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.ac-warranty__overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 190, 0, 0.86);
}

.ac-warranty__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 780px 1fr;

  align-items: start;
  padding: 0 50px 0 50px;
}

.ac-warranty__visual {
  display: flex;
  align-items: end;
  justify-content: center;
}

.ac-warranty__visual img {
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
}

.ac-warranty__content {
  padding: 32px 0;
}

.ac-warranty__title {
  margin: 0 0 22px;
  color: #06163a;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.15;
  font-weight: 800;
}

.ac-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ac-accordion__item {
  background: #efefef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ac-accordion__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 24px 18px 54px;
  font-size: 19px;
  font-weight: 800;
  color: #1c2438;
  background: #f3f3f3;
}

.ac-accordion__item summary::-webkit-details-marker {
  display: none;
}

.ac-accordion__item summary::before {
  content: "+";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: #222;
}

.ac-accordion__item[open] summary::before {
  content: "−";
}

.ac-accordion__body {
  padding: 22px 28px 24px;
}

.ac-accordion__body p {
  margin: 0 0 10px;
  color: #1f2430;
  font-size: 18px;
  line-height: 1.75;
}

.ac-accordion__body p:last-child {
  margin-bottom: 0;
}

.ac-note {
  opacity: 0.9;
}

.ac-accordion__header {
  width: 100%;
  border: 0;
  cursor: pointer;
  position: relative;
  text-align: left;
  padding: 18px 24px 18px 54px;
  font-size: 19px;
  font-weight: 800;
  color: #1c2438;
  background: #f3f3f3;
}

.ac-accordion__header::before {
  content: "+";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: #222;
}

.ac-accordion__item.is-open .ac-accordion__header::before {
  content: "−";
}

.ac-accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background: #e9e9e9;
}

/* =========================================================
   service-highlight
========================================================= */

.service-highlight {
  background: #f3f3f3;
  padding: 56px 150px;
}

.service-highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.service-highlight__title {
  margin: 0 0 22px;
  color: #06163a;
  font-size: clamp(34px, 3.2vw, 20px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-highlight__desc {
  margin: 0 0 28px;
  color: #2f3850;
  font-size: 20px;
  line-height: 1.75;
}

.service-highlight__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.service-point {
  position: relative;
  padding-left: 28px;
}

.service-point::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4be00;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.service-point__title {
  margin-bottom: 6px;
  color: #06163a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.service-point__text {
  color: #2f3850;
  font-size: 18px;
  line-height: 1.8;
}

.service-highlight__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.btn-service-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  background: #f4be00;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn-service-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-service-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #06163a;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.btn-service-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-highlight__media img {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   Shop page
========================================================= */
/* =========================
   PRODUCT SHOWCASE SECTION
========================= */
.product-showcase-section {
  background:
    linear-gradient(180deg, #04071d 0%, #070b2a 100%);
  padding: 56px 0 80px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* =========================
   SIDEBAR
========================= */
.product-sidebar {
  position: sticky;
  top: 100px;
}

.product-sidebar__box {
  background: rgba(5, 8, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 18px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.product-sidebar__title {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.product-sidebar__group+.product-sidebar__group {
  margin-top: 22px;
}

.product-sidebar__heading {
  margin: 0 0 12px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
}

.product-sidebar__search {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 0 14px;
  outline: none;
}

.product-sidebar__search:focus {
  border-color: var(--yellow);
}

.product-sidebar__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip {
  min-width: 90px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.brand-chip:hover,
.brand-chip.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.filter-check input {
  accent-color: var(--yellow);
}

.product-sidebar__btn {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 800;
}

/* =========================
   CONTENT
========================= */
.product-content__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.product-content__eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
}

.product-content__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
}

/* =========================
   GRID
========================= */
.product-grid--catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-grid--catalog .product-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 16px 16px 18px;
  border: 1px solid #dfe3ea;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  margin: 0;
}

.product-grid--catalog .product-card img {
  width: 100%;
  max-width: 280px;
  height: 270px;
  object-fit: contain;
  display: block;
  margin: 16px auto 12px;
}

.product-grid--catalog .product-card__brand {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 900;
  color: #2a2a2a;
}

.product-grid--catalog .product-badge {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
}

.product-grid--catalog .product-card h3 {
  margin: 14px 0 10px;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 800;
  color: #111827;
  min-height: 58px;
}

.product-grid--catalog .product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.product-grid--catalog .product-specs li {
  font-size: 13px;
  color: #5f6675;
  position: relative;
  padding-left: 14px;
}

.product-grid--catalog .product-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-dark);
  font-weight: 900;
}

.product-grid--catalog .product-price {
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
}

.product-grid--catalog .product-price span {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--yellow);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.product-card__cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.product-sidebar__brand-list {
  display: grid;
  gap: 10px;
}

.product-sidebar__brand-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.brand-action-btn {
  border: 1px solid rgba(255, 255, 255, .16);
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.brand-action-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* =========================
   เมื่อกรองไม่พบสินค้า
========================= */

.product-empty-state {
  grid-column: 1 / -1;
}

/* =========================
   ปุ่มถัดไป
========================= */

.product-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-page-btn {
  position: static;
  transform: none;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
  font-size: 16px;
  font-weight: 800;
  color: #111;
  cursor: pointer;
  transition: .25s ease;
}

.product-page-btn:hover {
  background: var(--yellow);
}

.product-page-btn.is-active {
  background: var(--yellow);
  color: #111;
}

.product-page-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.product-page-btn--text {
  border-radius: 999px;
  padding: 0 18px;
}

.product-page-dots {
  color: #fff;
  font-weight: 800;
  padding: 0 4px;
}

/* =========================
   ไฮไลท์ product-card
========================= */

.product-grid--catalog .product-card {
  transition: all 0.25s ease;
  border: 1px solid #dfe3ea;
}

.product-grid--catalog .product-card:hover {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 2px rgba(246, 196, 0, 0.18),
    0 12px 26px rgba(246, 196, 0, 0.22);
  transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */



/* =========================
   product-detail-section
========================= */

.product-detail-section {
  background: #f3f3f3;
  padding: 50px 200px 20px 200px;
  color: #111;
}

.product-detail {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 34px;
  align-items: start;
}

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail__main-image {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-in;
}

.product-detail__main-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform 0.15s ease;
  transform-origin: center center;
  will-change: transform;
}

.product-detail__main-image.is-zooming img {
  transform: scale(2.5);
}

.product-detail__main-image:hover img {
  transform: scale(2.5);
}

.product-detail__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: #777;
  cursor: pointer;
}

.product-detail__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-detail__thumb {
  width: 82px;
  height: 82px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
}

.product-detail__thumb.is-active {
  border-color: #f6c400;
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
}

.product-detail__eyebrow {
  margin: 0 0 8px;
  padding-left: 10px;
  border-left: 4px solid #f6c400;
  font-size: 14px;
  font-weight: 700;
}

.product-detail__title {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 900;
}

.product-detail__price-wrap {
  text-align: right;
  white-space: nowrap;
}

.product-detail__price-label {
  font-size: 14px;
  color: #666;
}

.product-detail__price {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
}

.product-detail__price span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.product-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #666;
}

.product-detail__breadcrumb a {
  color: #444;
  text-decoration: none;
}

.product-detail__breadcrumb .is-current {
  color: #f0b900;
  font-weight: 700;
}

.product-detail__block {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 2px solid #f0c247;
}

.product-detail__block h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 900;
}

.product-detail__block p {
  margin: 0;
  line-height: 1.8;
  color: #222;
}

.product-detail__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.product-detail__highlights li {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
}

.product-detail__highlights li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #f6c400;
  font-weight: 900;
}

.product-detail__sku {
  font-weight: 700;
  margin-bottom: 14px !important;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

.product-spec-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #f6c400;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.product-spec-card__label {
  font-size: 13px;
  color: #666;
  line-height: 1.2;
}

.product-spec-card__value {
  font-size: 1.05rem;
  font-weight: 900;
  color: #111;
  margin-top: 3px;
}

.product-detail__tags {
  color: #222;
}

.product-detail__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-detail__contact-label {
  font-weight: 800;
  margin-right: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.btn--yellow {
  background: #f6c400;
  color: #111;
}

.btn--yellow:hover {
  background: #e2b300;
}

.btn--line {
  background: #16c035;
  color: #fff;
}

.btn--line:hover {
  background: #10a72c;
}

.btn--dark {
  background: #0d1024;
  color: #fff;
}

.btn--dark:hover {
  background: #161b3b;
}

.product-detail__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 2px solid #f0c247;
  flex-wrap: wrap;
}

.product-detail__social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.social-square {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #f6c400;
  color: #111;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
}

.product-tabs-box {
  margin-top: 34px;
}

.product-tabs-menu {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.product-tab-btn {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #dfdfdf;
  background: #fff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
}

.product-tab-btn+.product-tab-btn {
  margin-left: 6px;
}

.product-tab-btn.is-active {
  background: #f7f7f7;
}

.product-tabs-content {
  background: #ececec;
  border-radius: 0 8px 8px 8px;
  padding: 24px 26px;
}

.product-tabs-content h2 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  font-weight: 900;
}

.product-tabs-content p {
  margin: 0;
  line-height: 1.9;
  color: #222;
}

.product-detail__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-detail__thumb {
  width: 82px;
  height: 82px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  transition: .2s ease;
}

.product-detail__thumb:hover {
  border-color: #f6c400;
}

.product-detail__thumb.is-active {
  border-color: #f6c400;
  box-shadow: 0 0 0 2px rgba(246, 196, 0, 0.18);
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   POLICY LINK + MODAL
========================================================= */
.policy-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 2px;
  color: #d9a900;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.policy-link:hover {
  color: #b68d00;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.policy-modal.is-open {
  display: block;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 26, 0.62);
  backdrop-filter: blur(2px);
}

.policy-modal__dialog {
  position: relative;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 2;
  animation: modalFadeUp 0.22s ease;
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-modal__body {
  padding: 28px 26px 26px;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
}

.policy-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #a98500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-modal__body h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.2;
  color: #0f1324;
}

.policy-modal__body h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}

.policy-modal__body p,
.policy-modal__body li {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #374151;
}

.policy-modal__body ul {
  margin: 0;
  padding-left: 20px;
}

.policy-modal__actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.policy-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f5f5f5;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.policy-modal__close:hover {
  background: #ececec;
}

body.modal-open {
  overflow: hidden;
}

/* =========================================================
   customer-review-section
========================================================= */

.customer-review-section {
  background: #f6c400;
  padding: 70px 0 60px;
}

.customer-review-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.customer-review-head {
  text-align: center;
  margin-bottom: 28px;
}

.customer-review-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  font-weight: 900;
  color: #111;
}

.customer-review-head p {
  max-width: 900px;
  margin: 0 auto;
  color: #2a2a2a;
  line-height: 1.8;
  font-size: 1rem;
}

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.customer-review-card {
  background: #fff7d8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.customer-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.customer-review-card__image {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #e9e9e9;
}

.customer-review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customer-review-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #d62f2f;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.customer-review-card__body {
  padding: 14px;
}

.customer-review-card__body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  color: #111;
}

.customer-review-card__body p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #333;
}

.customer-review-card__footer {
  font-size: 0.88rem;
  color: #111;
}

.customer-review-bottom {
  text-align: center;
  margin-top: 18px;
}

.customer-review-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.7;
}

/* =========================================================
   SEARCH ASIDE
========================================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
  z-index: 999;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-aside {
  position: fixed;
  top: 0;
  right: 0;
  width: min(660px, 100%);
  height: 100vh;
  background: #02051f;
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1000;
  box-shadow: -12px 0 30px rgba(0, 0, 0, .25);
}

.search-aside.is-open {
  transform: translateX(0);
}

.search-aside__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.search-aside__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 120px 28px 40px;
}

.search-aside__inner h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.search-aside__form {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.search-aside__form input {
  flex: 1;
  height: 56px;
  border: 0;
  outline: none;
  padding: 0 16px;
  font-size: 1rem;
  color: #111;
  background: #fff;
}

.search-aside__form button {
  width: 110px;
  border: 0;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.search-aside__form button:hover {
  background: var(--yellow-dark);
}

body.search-lock {
  overflow: hidden;
}

/* =========================================================
   APPS ASIDE
========================================================= */
.apps-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
  z-index: 999;
}

.apps-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apps-aside {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100vh;
  background: #02051f;
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1000;
  box-shadow: -14px 0 30px rgba(0, 0, 0, .28);
  overflow-y: auto;
}

.apps-aside.is-open {
  transform: translateX(0);
}

.apps-aside__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.apps-aside__inner {
  padding: 20px 34px 36px;
}

.apps-aside__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apps-aside__logo {
  align-self: center;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.apps-aside__brand-text strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1.45;
}

.apps-aside__brand-text p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.8;
  font-size: 0.98rem;
}

.apps-aside__divider {
  height: 1px;
  background: rgba(255, 255, 255, .18);
  margin: 28px 0;
}

.apps-aside__section h3 {
  margin: 0 0 18px;
  font-size: 1.7rem;
  color: #fff;
}

.apps-aside__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.apps-aside__nav>a,
.apps-submenu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease;
}

.apps-aside__nav>a:hover,
.apps-submenu__toggle:hover,
.apps-aside__nav>a.is-active {
  color: var(--yellow);
}

.apps-submenu__toggle span {
  font-size: 14px;
  transition: transform .25s ease;
}

.has-submenu.is-open .apps-submenu__toggle span {
  transform: rotate(180deg);
}

.apps-submenu {
  display: none;
  padding: 0 0 8px 14px;
}

.has-submenu.is-open .apps-submenu {
  display: block;
}

.apps-submenu a {
  display: block;
  padding: 9px 8px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
}

.apps-submenu a:hover {
  color: var(--yellow);
}

.apps-aside__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 10px;
  background: var(--yellow);
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: 16px;
}

.apps-aside__cta:hover {
  background: var(--yellow-dark);
}

body.apps-lock {
  overflow: hidden;
}

/* =========================================================
   FLOATING COOKIE BUTTON
========================================================= */
.floating-cookie-btn {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #4761ff;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(35, 64, 211, 0.28);
}

/* =========================================================
   COOKIE MODAL
========================================================= */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
  z-index: 1000;
}

.cookie-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
  z-index: 1001;
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
}

.cookie-modal__header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid #ddd;
}

.cookie-modal__header h2 {
  margin: 0;
  font-size: 2rem;
  color: #111;
}

.cookie-modal__body {
  padding: 20px 24px;
}

.cookie-modal__intro {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.cookie-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #e5e5e5;
}

.cookie-item:first-of-type {
  border-top: 0;
}

.cookie-item__left h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #111;
}

.cookie-item__left p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

.cookie-item__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  background: #9a9a9a;
  border-radius: 999px;
  transition: .25s ease;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .25s ease;
}

.cookie-switch input:checked+.cookie-slider {
  background: #2d8cff;
}

.cookie-switch input:checked+.cookie-slider::before {
  transform: translateX(24px);
}

/* footer buttons */
.cookie-modal__footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 24px 22px;
  border-top: 1px solid #ddd;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn--light {
  background: #f2f2f2;
  color: #222;
}

.cookie-btn--secondary {
  background: #1f6fff;
  color: #fff;
}

.cookie-btn--primary {
  background: #1f6fff;
  color: #fff;
}

body.cookie-lock {
  overflow: hidden;
}

/* =========================================================
   SHOP CATALOG SECTION
========================================================= */
.shop-catalog-section {
  background: linear-gradient(180deg, #04071d 0%, #070b2a 100%);
  padding: 56px 0 80px;
}

.shop-catalog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* =========================================================
   SIDEBAR
========================================================= */
.shop-catalog-sidebar {
  position: sticky;
  top: 100px;
}

.shop-catalog-sidebar__box {
  background: rgba(5, 8, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 18px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.shop-catalog-sidebar__title {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #fff;
}

.shop-catalog-sidebar__group+.shop-catalog-sidebar__group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-catalog-sidebar__heading {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: #f6c400;
}

.shop-catalog-sidebar__search {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
  outline: none;
  transition: all 0.25s ease;
}

.shop-catalog-sidebar__search::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.shop-catalog-sidebar__search:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(246, 196, 0, 0.14);
}

.shop-catalog-sidebar__brand-list {
  display: grid;
  gap: 10px;
}

.shop-catalog-sidebar__brand-label {
  margin-top: 8px;
  color: #f6c400;
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-catalog-sidebar__actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shop-catalog-action-btn {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-catalog-action-btn:hover {
  background: rgba(246, 196, 0, 0.12);
  border-color: rgba(246, 196, 0, 0.35);
  color: #fff6d0;
}

.shop-catalog-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.shop-catalog-check:hover {
  background: rgba(255, 255, 255, 0.06);
}

.shop-catalog-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.shop-catalog-check span {
  font-size: 0.96rem;
  line-height: 1.4;
}

.shop-catalog-sidebar__submit {
  width: 100%;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 800;
}

/* =========================================================
   CONTENT
========================================================= */
.shop-catalog-content {
  min-width: 0;
}

.shop-catalog-content__top {
  margin-bottom: 20px;
}

.shop-catalog-content__eyebrow {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f6c400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-catalog-content__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
}

/* =========================================================
   GRID
========================================================= */
.shop-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* =========================================================
   CARD
========================================================= */
.shop-catalog-card {
  position: relative;
  display: none;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  overflow: hidden;
}

.shop-catalog-card.is-visible {
  display: block;
}

.shop-catalog-card:hover {
  transform: translateY(-5px);
  border-color: #f3d34a;
  box-shadow: 0 14px 28px rgba(246, 196, 0, 0.2);
}

.shop-catalog-card__badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.shop-catalog-card__brand {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  font-weight: 900;
  color: #232323;
}

.shop-catalog-card img {
  width: 100%;
  max-width: 260px;
  height: 230px;
  object-fit: contain;
  display: block;
  margin: 18px auto 12px;
}

.shop-catalog-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #161921;
}

.shop-catalog-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: #4e5361;
  font-size: 14px;
}

.shop-catalog-card__price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #161921;
}

.shop-catalog-card__price span {
  font-size: 0.98rem;
  font-weight: 500;
  color: #777;
}

.shop-catalog-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.shop-catalog-card__cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* =========================================================
   PAGINATION
========================================================= */
.shop-catalog-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-catalog-page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.shop-catalog-page-btn:hover {
  background: var(--yellow);
  transform: translateY(-1px);
}

.shop-catalog-page-btn.is-active {
  background: var(--yellow);
  color: #111;
}

.shop-catalog-page-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-catalog-page-btn--text {
  min-width: 50px;
}

.shop-catalog-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: #fff;
  font-weight: 700;
}

.shop-catalog-empty-state {
  grid-column: 1 / -1;
}

.app-tools-cta {
  position: relative;
  padding: 70px 0;
  background: #0b1638;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 0;
}

/* background image */
/* dark overlay ทับรูป — ปรับ opacity ของสีเพื่อเพิ่ม/ลดความเข้มได้ */
.app-tools-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 18, 50, .88) 0%, rgba(6, 18, 50, .72) 60%, rgba(6, 18, 50, .55) 100%);
  z-index: 1;
}

/* dark overlay */
.app-tools-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(6, 22, 58, .92) 0%, rgba(6, 22, 58, .78) 55%, rgba(6, 22, 58, .55) 100%);*/
}

.app-tools-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.app-tools-cta__content {
  max-width: 780px;
  color: #fff;
}

.app-tools-cta__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 190, 0, .16);
  border: 1px solid rgba(244, 190, 0, .35);
  color: #ffd45a;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.app-tools-cta__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.02em;
}

.app-tools-cta__desc {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .92);
}

.app-tools-cta__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 28px;
}

.app-tools-cta__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(6px);
}

.app-tools-cta__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 190, 0, .18);
  border: 1px solid rgba(244, 190, 0, .22);
  flex: 0 0 auto;
  font-size: 20px;
}

.app-tools-cta__f-title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 3px;
}

.app-tools-cta__f-text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .86);
}

.app-tools-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-app-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: #f4be00;
  color: #000;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.btn-app-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
}

.btn-app-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.btn-app-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

@media (max-width: 991px) {
  .app-tools-cta {
    padding: 54px 0;
  }

  .app-tools-cta__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .app-tools-cta__desc {
    font-size: 16px;
  }

  .btn-app-primary,
  .btn-app-ghost {
    width: 100%;
  }
}

/* =========================================================
   BOOKING CTA SECTION
========================================================= */
.booking-cta {
  position: relative;
  padding: 70px 0;
  background: #0a1e38 url('../../images/booking/Booking.png') center/cover no-repeat;
  overflow: hidden;
  border-radius: 0;
}

@media (max-width: 768px) {
  .booking-cta {
    background-image: url('../../images/booking/Booking-responsive.png');
  }
}

.booking-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 24, 60, .90) 0%, rgba(4, 24, 60, .74) 60%, rgba(4, 24, 60, .52) 100%);
  z-index: 1;
}

.booking-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.booking-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.booking-cta__content {
  max-width: 780px;
  color: #fff;
}

.booking-cta__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 190, 0, .16);
  border: 1px solid rgba(244, 190, 0, .35);
  color: #ffd45a;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.booking-cta__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.02em;
}

.booking-cta__desc {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .92);
}

.booking-cta__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 28px;
}

.booking-cta__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(6px);
}

.booking-cta__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 140, .18);
  border: 1px solid rgba(0, 180, 140, .28);
  flex: 0 0 auto;
  font-size: 20px;
}

.booking-cta__f-title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 3px;
}

.booking-cta__f-text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .86);
}

.booking-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-booking-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.btn-booking-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
}

.btn-booking-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.btn-booking-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

@media (max-width: 991px) {
  .booking-cta {
    padding: 54px 0;
  }

  .booking-cta__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .booking-cta__desc {
    font-size: 16px;
  }

  .btn-booking-primary,
  .btn-booking-ghost {
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1280px) {

  .service-highlight__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-highlight__media {
    order: -1;
  }

  .shop-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .shop-catalog-layout {
    grid-template-columns: 1fr;
  }

  .shop-catalog-sidebar {
    position: static;
  }

  .shop-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {

  .shop-hero {
    min-height: 20px;
  }

  .shop-hero p {
    margin: 18px 0 0;
    max-width: 980px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
  }

  .shop-catalog-sidebar__actions #checkAllBrands {
    display: none;
  }

  .shop-catalog-sidebar__group+.shop-catalog-sidebar__group {
    margin-top: 0px;
    padding: 0px;
  }

  .shop-catalog-sidebar__heading {
    display: none;
  }

  .shop-catalog-sidebar__brand-list {
    display: none;
  }

  st .shop-catalog-section {
    padding: 42px 0 60px;
  }

  .shop-catalog-sidebar__box {
    padding: 18px 14px;
  }

  .shop-catalog-sidebar__actions {
    grid-template-columns: 1fr;
  }

  .shop-catalog-grid {
    grid-template-columns: 1fr;
  }

  .shop-catalog-card {
    padding: 16px;
  }

  .shop-catalog-card img {
    height: 210px;
  }

  .shop-catalog-card__price {
    font-size: 1.5rem;
  }
}

/* =========================================================
   RESPONSIVE / GROUPED MEDIA QUERIES
   รวม @media ไว้ท้ายไฟล์เพื่อให้อ่านและดูแลง่าย
========================================================= */

/* =========================================================
   RESPONSIVE :: (max-width: 1280px)
========================================================= */
@media (max-width: 1280px) {

  /* ----- block 1 ----- */
  .nav {
    gap: 18px;
    font-size: 15px;
  }

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

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


  .topbar {
    display: none;
  }

  .nav {
    display: none;
  }

  /* ----- block 2 ----- */
  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 1200px)
========================================================= */
@media (max-width: 1200px) {

  /* ----- block 1 ----- */
  .hero-thumbs {
    width: min(1000px, calc(100% - 32px));
    gap: 14px;
  }

  .hero-thumb--article {
    width: 220px;
    min-height: 160px;
  }

  /* ----- block 2 ----- */
  .daily-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-toggle {
    display: none;
  }

  /* ----- block 3 ----- */
  .ac-warranty__inner {
    grid-template-columns: 360px 1fr;
    gap: 28px;
  }

  /* ----- block 4 ----- */
  .service-highlight__title {
    font-size: clamp(30px, 3vw, 48px);
  }

  .service-highlight__desc {
    font-size: 18px;
  }

  .service-point__title {
    font-size: 24px;
  }

  .service-point__text,
  .btn-service-primary,
  .btn-service-phone {
    font-size: 17px;
  }

  /* ----- block 5 ----- */
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 1100px)
========================================================= */
@media (max-width: 1100px) {

  /* ----- block 1 ----- */
  .customer-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 1024px)
========================================================= */
@media (max-width: 1024px) {

  .hero {
    min-height: 760px;
  }

  .hero-machines {
    width: calc(100% - 30px);
    height: 210px;
    bottom: 110px;
  }

  .machine-card {
    width: 320px;
    height: 180px;
  }

  .machine-card--left {
    left: 2%;
  }

  .machine-card--right {
    right: 2%;
  }

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

  .service-card--wide {
    grid-column: auto;
  }

  .service-highlight__actions {
    display: flex;
    align-items: center;
    gap: 16px 22px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .service-highlight__inner {
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 42px;
  }



  /* ----- block 3 ----- */
  .about-hero {
    min-height: 520px;
  }

  .about-hero__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-text-block p {
    font-size: 1.08rem;
    line-height: 1.85;
  }

  .about-message-band__inner p {
    font-size: 1.45rem;
  }

  /* ----- block 4 ----- */
  .service-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-feature-card__image {
    height: 250px;
  }

  /* ----- block 5 ----- */
  .nav-dropdown {
    display: none;
  }

  /* ----- block 6 ----- */
  .nav-dropdown {
    display: none;
  }

  /* ----- block 7 ----- */
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  /* ----- block 8 ----- */
  .work-showcase__item {
    flex: 0 0 calc((100% - 20px) / 2);
    /* เหลือ 2 รูป */
    height: 260px;
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 991px)
========================================================= */
@media (max-width: 991px) {

  /* ----- block 1 ----- */
  .news-layout__inner {
    grid-template-columns: 1fr;
  }

  .news-main__media img {
    height: 360px;
  }

  .news-side__card {
    position: static;
  }

  /* ----- block 2 ----- */
  .service-intro-cta {
    padding: 56px 0 42px;
  }

  .service-intro-cta__desc {
    font-size: 17px;
    line-height: 1.8;
  }

  .service-warranty-grid {
    grid-template-columns: 1fr;
  }

  .service-warranty-card {
    min-height: auto;
  }

  /* ----- block 3 ----- */
  .ac-warranty {
    padding: 32px 0;
  }

  .ac-warranty__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ac-warranty__visual {
    order: 2;
  }

  .ac-warranty__content {
    order: 1;
    padding: 10px 0 0;
  }

  .ac-warranty__visual img {
    max-height: 420px;
  }

  /* ----- block 4 ----- */
  .service-highlight {
    padding: 42px 0;
  }

  .service-highlight__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-highlight__media {
    order: -1;
  }

  /* ----- block 5 ----- */
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

}



/* =========================================================
   RESPONSIVE :: (max-width: 900px)
========================================================= */
@media (max-width: 900px) {

  /* ----- block 1 ----- */
  .hero-thumbs {
    width: calc(100% - 24px);
    gap: 10px;
    bottom: 80px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .hero-thumbs::-webkit-scrollbar {
    height: 6px;
  }

  .hero-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .28);
    border-radius: 999px;
  }

  .hero-thumb--article {
    flex: 0 0 200px;
    width: 200px;
    min-height: 148px;
  }

  .hero-thumb__image {
    /*height: 88px;*/
  }

  .hero-thumb__title {
    font-size: 14px;
  }

  /* ----- block 2 ----- */
  .daily-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-work-card__image {
    height: 220px;
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 768px)
========================================================= */
@media (max-width: 768px) {

  /* ----- block 1 ----- */
  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding-top: 86px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-slide-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .hero-slide-nav--prev {
    left: 10px;
  }

  .hero-slide-nav--next {
    right: 10px;
  }

  .hero-slide-dots {
    bottom: 20px;
  }

  /* ----- block 2 ----- */
  .hero-thumbs {
    bottom: 62px;
  }

  .hero-thumb--article {
    flex: 0 0 180px;
    width: 180px;
    min-height: 138px;
    border-radius: 14px;
  }


  .hero-thumb__content {
    gap: 6px;
    padding: 12px 12px 14px;
  }

  .hero-thumb__tag {
    font-size: 11px;
    padding: 5px 8px;
  }

  .hero-thumb__title {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-slide-dots {
    bottom: 14px;
  }

  /* ----- block 3 ----- */
  .header__inner {
    min-height: 72px;
  }

  .logo__mark {
    width: 48px;
    height: 48px;
  }

  .logo__text strong {
    font-size: 0.95rem;
  }

  .logo__text span {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    padding-top: 72px;
  }

  .hero__buttons {
    gap: 12px;
  }

  .btn--lg,
  .btn--xl {
    min-width: auto;
    width: 100%;
  }

  .hero-machines {
    display: none;
  }

  .hero-brand-strip {
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .hero-brand-strip__item+.hero-brand-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .news-grid,
  .service-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .section {
    padding: 10px 0;
  }

  .section-head h2,
  .cta-banner__content h2,
  .footer h4,
  .product-card h3,
  .news-card__body h3,
  .service-card__overlay h3 {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .intro-cta__headline {
    font-size: 1.08rem;
  }

  .floating-help {
    width: 50px;
    height: 50px;
  }

  /* ----- block 4 ----- */
  .contact-map--custom {
    height: 320px;
  }

  .map-place-card {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .map-place-card__title {
    font-size: 15px;
  }

  .map-place-card__meta,
  .map-place-card__footer {
    font-size: 12px;
  }

  /* ----- block 5 ----- */
  .contact-map {
    height: 320px;
  }

  .contact-page {
    padding: 42px 0 60px;
  }

  .contact-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-left h1,
  .contact-right h2 {
    font-size: 2rem;
  }

  /* ----- block 6 ----- */
  .about-hero {
    min-height: 420px;
  }

  .about-hero__content {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-section,
  .about-section--intro,
  .about-message-band {
    padding: 58px 0;
  }

  .about-watermark {
    font-size: 2.5rem;
    top: 6px;
  }

  .about-text-block p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-message-band__inner p {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .about-btn-outline,
  .about-message-band .btn--dark {
    width: 100%;
    min-width: auto;
  }

  .about-quote {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* ----- block 7 ----- */
  .service-hero__content {
    padding-top: 68px;
    padding-bottom: 66px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .service-page {
    padding: 54px 0 64px;
  }

  .service-intro__left h2 {
    font-size: 2rem;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card__image {
    height: 220px;
  }

  .service-cta {
    padding: 58px 0 64px;
  }

  .service-cta__inner h2 {
    font-size: 1.8rem;
  }

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

  .service-highlight__actions {
    display: flex;
    align-items: center;
    gap: 16px 22px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  /* ----- block 8 ----- */
  .news-detail-hero {
    min-height: 280px;
  }

  .news-detail-hero__content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .news-detail-cover {
    height: 260px;
  }

  .news-detail-content {
    padding: 20px;
  }

  .news-detail-gallery__grid {
    grid-template-columns: 1fr;
  }

  .news-detail-thumb {
    height: 200px;
  }

  .news-detail-sidebar {
    grid-template-columns: 1fr;
  }

  /* ----- block 9 ----- */
  .logo__img {
    width: 50px;
    height: 50px;
  }


  .logo__text span {
    font-size: 0.72rem;
  }

  /* ----- block 10 ----- */
  .cta-banner__content {
    padding: 58px 0 60px;
  }

  .cta-banner__actions {
    flex-direction: column;
  }

  .cta-banner__or {
    margin: 2px 0;
  }

  /* ----- block 11 ----- */
  .about-message-band--gallery {
    padding: 100px 0 60px;
  }

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

  .about-message-band--gallery .intro-cta__headline {
    font-size: 2rem;
  }

  .about-message-band__desc {
    font-size: 1rem;
  }

  .work-showcase {
    margin-top: 24px;
  }

  .work-showcase__item {
    flex: 0 0 100%;
    /* มือถือแสดงทีละ 1 รูป */
    height: 220px;
    border-radius: 16px;
  }

  /* ----- block 12 ----- */
  .product-showcase-section {
    padding: 42px 0 60px;
  }

  .product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .product-content__title {
    font-size: 1.7rem;
  }

  /* ----- block 13 ----- */
  .product-detail-section {
    padding: 20px 0 44px;
  }

  .product-detail__main-image {
    min-height: 320px;
  }

  .product-detail__title {
    font-size: 1.7rem;
  }

  .product-detail__price {
    font-size: 1.7rem;
  }

  .product-detail__head {
    flex-direction: column;
  }

  .product-detail__price-wrap {
    text-align: left;
  }

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

  .product-tabs-content h2 {
    font-size: 1.4rem;
  }

  /* ----- block 14 ----- */
  .policy-modal__dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 14px;
  }

  .policy-modal__body {
    padding: 22px 18px 20px;
    max-height: calc(100vh - 20px);
  }

  /* ----- block 15 ----- */
  .customer-review-section {
    padding: 56px 0 48px;
  }

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

  .customer-review-card__image {
    height: 140px;
  }

  /* ----- block 16 ----- */
  .search-aside__inner {
    padding: 100px 18px 30px;
  }

  .search-aside__inner h2 {
    font-size: 2rem;
  }

  .search-aside__form {
    flex-direction: column;
    gap: 10px;
  }

  .search-aside__form button {
    width: 100%;
    height: 52px;
  }

  .search-aside__form input {
    height: 52px;
  }

  /* ----- block 17 ----- */
  .apps-aside {
    width: 100%;
  }

  .apps-aside__inner {
    padding: 20px 22px 28px;
  }

  .apps-aside__logo {
    width: 180px;
  }

  .apps-aside__brand-text strong {
    font-size: 1.2rem;
  }

  .apps-aside__section h3 {
    font-size: 1.35rem;
  }

  .apps-aside__nav>a,
  .apps-submenu__toggle {
    font-size: 1rem;
  }

  /* ----- block 18 ----- */
  .cookie-modal__header h2 {
    font-size: 1.45rem;
    padding-right: 24px;
  }

  .cookie-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-modal__footer {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }



}

/* =========================================================
   RESPONSIVE :: (max-width: 640px)
========================================================= */
@media (max-width: 640px) {

  /* ----- block 2 ----- */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    display: flex;
    flex-direction: column-reverse;
  }

  /* ----- block 1 ----- */
  .daily-work-grid {
    grid-template-columns: 1fr;
  }

  .daily-work-card__image {
    height: 220px;
  }

  .daily-work-card__body {
    padding: 18px;
  }

  .daily-work-card__body h3 {
    font-size: 1.2rem;
    min-height: auto;
  }

  .logo__text strong {
    display: none;
  }

  .logo__text span {
    display: none;
  }


  .menu-toggle {
    display: none;
  }

  .hero-thumb {
    margin-top: 80px;
    min-width: 250px;
    height: 550px;
  }

  .hero {
    height: 1180px;
  }

  /* ----- block 2 ----- */
  .service-highlight-box {
    width: 34px;
    height: 54px;
  }

  .service-intro-badge {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .service-warranty-card {
    padding: 26px 22px;
  }

  .service-warranty-card h3 {
    font-size: 20px;
  }

  /* ----- block 3 ----- */
  .ac-accordion__header {
    padding: 16px 18px 16px 46px;
    font-size: 17px;
  }

  .ac-accordion__header::before {
    left: 14px;
    font-size: 30px;
  }

  .ac-accordion__body {
    padding: 18px 18px 20px;
  }

  .ac-accordion__body p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ----- block 4 ----- */
  .ac-warranty__title {
    margin-bottom: 16px;
  }

  .ac-accordion__item summary {
    padding: 16px 18px 16px 46px;
    font-size: 17px;
  }

  .ac-accordion__item summary::before {
    left: 14px;
    font-size: 30px;
  }

  .ac-accordion__body {
    padding: 18px 18px 20px;
  }

  .ac-accordion__body p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ----- block 5 ----- */
  .service-highlight__title {
    font-size: 28px;
  }

  .service-highlight__desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-point__title {
    font-size: 20px;
  }

  .service-point__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn-service-primary,
  .btn-service-phone {
    width: 100%;
    justify-content: center;
  }

  /* ----- block 6 ----- */
  .product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 50%;
    grid-template-columns: unset;
    gap: 12px;
  }

  .product-card {
    scroll-snap-align: start;
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 600px)
========================================================= */
@media (max-width: 600px) {

  /* ----- block 1 ----- */
  .product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: unset;
    gap: 12px;
  }

  .product-card {
    scroll-snap-align: start;
  }


  .product-card img {
    width: 280px;
    height: 270px;
    object-fit: contain;
    display: block;
    margin: 18px auto 12px;
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 560px)
========================================================= */
@media (max-width: 560px) {

  /* ----- block 1 ----- */
  .customer-review-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   RESPONSIVE :: (max-width: 520px)
========================================================= */
@media (max-width: 520px) {

  /* ----- block 1 ----- */
  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-tab-btn {
    width: 100%;
    border-radius: 8px;
    margin-left: 0 !important;
    margin-bottom: 6px;
  }

  .product-tabs-content {
    border-radius: 8px;
  }

}

/* =========================================================
   RESPONSIVE :: (min-width: 1025px)
========================================================= */
@media (min-width: 1025px) {

  /* ----- block 1 ----- */
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown__toggle {
    color: var(--yellow);
  }

  .nav-dropdown:hover .nav-dropdown__toggle::after {
    transform: scaleX(1);
  }

  .nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
  }

  /* ----- block 2 ----- */
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown__toggle {
    color: var(--yellow);
  }

  .nav-dropdown:hover .nav-dropdown__toggle::after {
    transform: scaleX(1);
  }

  .nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
  }

}

/* =========================================================
   IMAGE UTILITIES
   ใช้ class เหล่านี้กับ <img> โดยตรง — ไม่ต้องเพิ่ม CSS ใน style.css
   ทุกครั้งที่ใส่รูปใหม่

   ตัวอย่างการใช้งาน:
   <img src="..." class="img-cover img-rounded img-shadow">
   <div class="img-box img-box--16-9">
     <img src="..." alt="...">
   </div>
   <div class="img-zoom img-box--4-3">
     <img src="..." alt="...">
   </div>
========================================================= */

/* --- Object-fit helpers --- */
.img-fluid {
  width: 100%;
  height: auto;
}

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

.img-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-fill {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.img-center-obj {
  object-position: center;
}

.img-top-obj {
  object-position: top;
}

.img-bottom-obj {
  object-position: bottom;
}

/* --- Fixed aspect-ratio on <img> itself --- */
.img-ratio-16-9 {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.img-ratio-4-3 {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.img-ratio-3-2 {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.img-ratio-1-1 {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.img-ratio-2-3 {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
}

/* --- Max-width sizes (ไม่ stretch เกินขนาดกำหนด) --- */
.img-xs {
  max-width: 80px;
  height: auto;
}

.img-sm {
  max-width: 200px;
  height: auto;
}

.img-md {
  max-width: 400px;
  height: auto;
}

.img-lg {
  max-width: 700px;
  height: auto;
}

.img-xl {
  max-width: 1000px;
  height: auto;
}

.img-full {
  width: 100%;
  height: auto;
}

/* --- Border radius --- */
.img-rounded {
  border-radius: var(--radius);
}

.img-rounded-sm {
  border-radius: 8px;
}

.img-rounded-lg {
  border-radius: 24px;
}

.img-circle {
  border-radius: 50%;
}

/* --- Shadow --- */
.img-shadow {
  box-shadow: var(--shadow);
}

.img-shadow-lg {
  box-shadow: 0 20px 50px rgba(8, 11, 41, 0.15);
}

/* --- Alignment (block element) --- */
.img-center {
  display: block;
  margin-inline: auto;
}

.img-left {
  display: block;
  margin-right: auto;
}

.img-right {
  display: block;
  margin-left: auto;
}

/* --- img-box: wrapper div ที่ lock aspect-ratio ให้ img ข้างใน --- */
/* ใช้งาน: <div class="img-box img-box--16-9"><img src="..." alt="..."></div> */
.img-box {
  overflow: hidden;
  display: block;
  width: 100%;
}

.img-box>img,
.img-box>picture>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-box--16-9 {
  aspect-ratio: 16/9;
}

.img-box--4-3 {
  aspect-ratio: 4/3;
}

.img-box--3-2 {
  aspect-ratio: 3/2;
}

.img-box--1-1 {
  aspect-ratio: 1/1;
}

.img-box--2-3 {
  aspect-ratio: 2/3;
}

.img-box--21-9 {
  aspect-ratio: 21/9;
}

/* --- img-zoom: hover zoom effect (ใส่บน wrapper) --- */
/* ใช้งาน: <div class="img-zoom img-box--4-3"><img src="..." alt="..."></div> */
.img-zoom {
  overflow: hidden;
}

.img-zoom>img,
.img-zoom>picture>img {
  transition: transform 0.4s ease;
}

.img-zoom:hover>img,
.img-zoom:hover>picture>img {
  transform: scale(1.05);
}

/* --- Thumbnail strip (รูปขนาดเล็กในแถวแนวนอน) --- */
.img-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.img-thumb-md {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.img-thumb-lg {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* --- Avatar (รูปโปรไฟล์กลม) --- */
.img-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.img-avatar-md {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.img-avatar-lg {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}

/* --- Hero / Banner full-bleed --- */
.img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Grayscale / Filter helpers --- */
.img-grayscale {
  filter: grayscale(100%);
}

.img-grayscale-hover:hover {
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.img-dim {
  filter: brightness(0.7);
}

.img-dim-hover:hover {
  filter: brightness(1);
  transition: filter 0.3s ease;
}

/* =========================================================
   END IMAGE UTILITIES
========================================================= */