﻿:root {
  --black-900: #0a0a0a;
  --black-800: #121212;
  --black-700: #1b1b1b;
  --black-600: #242424;
  --yellow-500: #f8c400;
  --yellow-400: #ffd84d;
  --white-100: #f5f5f5;
  --muted-300: #b7b7b7;
  --line: rgba(255, 216, 77, 0.18);
  --radius: 18px;
  --max: 1180px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sarabun", "Outfit", sans-serif;
  color: var(--white-100);
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% -5%, rgba(248, 196, 0, 0.26), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(248, 196, 0, 0.12), transparent 35%),
    var(--black-900);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, #151515 0%, #111 52%, #0a0a0a 100%);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.55rem 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 78px;
  border-radius: 10px;
  padding: 0.32rem 0.82rem 0.32rem 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(90deg, #f8c400 0%, #f2bd00 78%, rgba(248, 196, 0, 0.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 20px rgba(0, 0, 0, 0.26);
}

.brand-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd200;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.04rem;
  transform: scale(1.08);
  transform-origin: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: #111;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.95rem, 2.25vw, 1.8rem);
  letter-spacing: 0.2px;
  font-weight: 800;
}

.brand-copy > span {
  color: rgba(16, 16, 16, 0.9);
  font-size: clamp(0.64rem, 1.35vw, 0.78rem);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  padding: 0.25rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--yellow-400);
  border-bottom-color: var(--yellow-500);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111;
  padding: 0.2rem;
  justify-self: end;
}

.lang-switch button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #f0f0f0;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--yellow-500);
  color: #111;
}

main {
  overflow: hidden;
}

section {
  padding: 3.1rem 0;
}

.section-head {
  margin-bottom: 1.05rem;
}

.section-head h2,
.page-title {
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
}

.page-title {
  font-size: clamp(1.8rem, 4.7vw, 3rem);
}

.muted {
  color: var(--muted-300);
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, var(--black-700), var(--black-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero {
  padding-top: 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.35rem 0.8rem;
  color: var(--yellow-400);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 3.35rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
  font-family: "Outfit", sans-serif;
}

.hero-title span {
  color: var(--yellow-400);
}

.hero-copy p {
  max-width: 62ch;
}

.hero-copy .hero-description {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.btn-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow-500);
  color: #0f0f0f;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--yellow-400);
  background: transparent;
}

.tagline {
  margin-top: 0.7rem;
  color: var(--yellow-400);
  font-weight: 600;
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  min-height: clamp(300px, 36vw, 440px);
  height: clamp(300px, 36vw, 440px);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.hero-badges {
  position: absolute;
  inset: auto 0.9rem 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.badge {
  background: rgba(18, 18, 18, 0.86);
  border: 1px solid rgba(255, 216, 77, 0.25);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
}

.kpi-grid {
  display: grid;
  gap: 0.8rem;
}

.kpi-card {
  background: linear-gradient(145deg, #1c1c1c, #131313);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
}

.kpi-card strong {
  display: block;
  font-size: 1.32rem;
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}

.image-grid {
  display: grid;
  gap: 0.85rem;
}

.photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 216, 77, 0.2);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.8);
}

.photo-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.85));
  font-size: 0.85rem;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.48rem;
  margin-top: 0.55rem;
}

.list li {
  position: relative;
  padding-left: 1rem;
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-500);
  position: absolute;
  left: 0;
  top: 0.62rem;
}

.split {
  display: grid;
  gap: 1rem;
}

.dark-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: linear-gradient(130deg, #201b00, #131313);
  padding: 1.2rem;
}


.page-hero-wide {
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  padding: 2.1rem 0 1.45rem;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  max-width: 760px;
}

.page-hero-content .page-title {
  margin-bottom: 0.2rem;
}

.page-hero-content .muted {
  margin-bottom: 0.25rem;
}
.page-banner {
  padding-top: 2.5rem;
  padding-bottom: 1.7rem;
}

.banner-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.88));
}

.service-card {
  overflow: hidden;
}

.service-card .card-image {
  margin: -1rem -1rem 0.85rem;
  height: 180px;
  object-fit: cover;
  width: calc(100% + 2rem);
  border-bottom: 1px solid var(--line);
}

.service-card h3,
.feature-card h3 {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  margin-bottom: 0.4rem;
}

.feature-card .card-image {
  margin: -1rem -1rem 0.85rem;
  height: 190px;
  width: calc(100% + 2rem);
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 11px;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #171717;
  color: #ffe8a1;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 77, 0.45);
}

.social-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--yellow-500);
  color: #111;
}

.contact-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.contact-link {
  display: flex;
  gap: 0.55rem;
  text-decoration: none;
  color: #f2f2f2;
  border: 1px solid rgba(255, 216, 77, 0.16);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  background: #171717;
}

.contact-link strong {
  color: var(--yellow-400);
}

.band {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 216, 77, 0.36);
  padding: 1.35rem;
  background: linear-gradient(120deg, #2a2200, #181818);
}

.band h2 {
  color: var(--yellow-400);
  margin-bottom: 0.45rem;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  background: linear-gradient(90deg, #e8b300 0%, #f4c812 50%, #e8b300 100%);
  color: #111111;
  font-size: 0.9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (min-width: 720px) {
  .page-hero-wide {
    min-height: 100px;
    padding: 2.55rem 0 1.8rem;
  }

  .topbar-inner {
    grid-template-columns: minmax(420px, auto) 1fr auto;
  }

  .nav {
    grid-column: auto;
    justify-content: center;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split.cols-2,
  .grid.cols-2,
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .image-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Hero Enhancements */
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(248, 196, 0, 0.4), 0 0 22px rgba(248, 196, 0, 0.45);
}

.btn-secondary:hover {
  background: rgba(248, 196, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.35), 0 0 16px rgba(255, 216, 77, 0.3);
}

.hero-controls {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-control {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 77, 0.5);
  background: rgba(10, 10, 10, 0.72);
  color: var(--yellow-400);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.hero-control:hover {
  background: rgba(248, 196, 0, 0.18);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 5.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.35rem;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--yellow-400);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 196, 0, 0.24);
  border: 1px solid rgba(255, 216, 77, 0.4);
  font-size: 0.8rem;
}
/* Landing Highlights Frames */
.highlight-grid {
  gap: 1rem;
  grid-template-columns: 1fr;
}

.highlight-frame {
  min-height: 210px;
}

.highlight-frame img {
  filter: brightness(0.64);
}

.highlight-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  display: grid;
  gap: 0.2rem;
}

.highlight-caption strong {
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.highlight-caption span {
  color: #f5f5f5;
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .image-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Landing Custom Layout Tweaks */
.image-grid.cols-2.highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.highlight-frame {
  min-height: 210px;
  max-width: 250px;
  width: 100%;
  justify-self: center;
}

@media (min-width: 980px) {
  .image-grid.cols-2.highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Hero Metric Cards */
.hero-badges {
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  gap: 0.45rem;
}

.metric-badge {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 14px;
  padding: 0.68rem 0.72rem;
  border: 1px solid rgba(255, 216, 77, 0.34);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  min-height: 96px;
  background: #121212;
}

.metric-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(255, 216, 77, 0.86), rgba(248, 196, 0, 0.78));
}

.metric-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.metric-badge:nth-child(even) {
  border-color: rgba(255, 216, 77, 0.45);
}

.metric-badge:nth-child(even) .metric-card-overlay {
  background: linear-gradient(120deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.84));
}

.metric-badge .badge-icon {
  width: 30px;
  height: 30px;
  background: rgba(12, 12, 12, 0.14);
  border: 1px solid rgba(12, 12, 12, 0.35);
  font-size: 0.95rem;
  color: #111;
}

.badge-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.badge-value {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 2rem);
  line-height: 1.05;
  color: #111;
  letter-spacing: 0.2px;
}

.badge-label {
  color: rgba(17, 17, 17, 0.88);
  font-size: 0.76rem;
  line-height: 1.25;
}

@media (min-width: 720px) {
  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .hero-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-dots {
  bottom: 7.2rem;
}


/* Hero badges below image */
.hero-media-stack {
  display: grid;
  gap: 0.65rem;
}

.hero-media {
  min-height: clamp(300px, 36vw, 440px);
  height: clamp(300px, 36vw, 440px);
  border-radius: calc(var(--radius) + 2px);
}

.hero-media > img {
  height: 100%;
  border-radius: inherit;
}

.hero-badges.hero-badges-below {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
}

.hero-badges.hero-badges-below .metric-badge {
  min-height: 74px;
}

@media (min-width: 720px) {
  .hero-badges.hero-badges-below {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .hero-badges.hero-badges-below {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.check-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 0.4rem 0 0;
}

.check-list li {
  position: relative;
  padding: 0.62rem 0.78rem 0.62rem 2.45rem;
  border: 1px solid rgba(255, 216, 77, 0.24);
  border-radius: 12px;
  background: rgba(248, 196, 0, 0.06);
  line-height: 1.45;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f0f0f;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--yellow-400);
}

#contact {
  scroll-margin-top: 92px;
}


.metric-badge:nth-child(even) .badge-value,
.metric-badge:nth-child(even) .badge-label,
.metric-badge:nth-child(even) .badge-icon {
  color: var(--yellow-400);
}

.metric-badge:nth-child(even) .badge-icon {
  background: rgba(255, 216, 77, 0.12);
  border-color: rgba(255, 216, 77, 0.35);
}

.highlight-metrics {
  margin-top: 0.2rem;
}
.hero-floating-badge {
  width: min(90%, 380px);
  margin: -2rem auto 0;
  z-index: 5;
}

@media (max-width: 719px) {
  .hero-floating-badge {
    width: min(94%, 360px);
    margin-top: -1.55rem;
  }
}

@media (min-width: 1180px) {
  .highlight-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hero-floating-badge--yellow .metric-card-overlay {
  background: linear-gradient(120deg, rgba(255, 216, 77, 0.92), rgba(248, 196, 0, 0.86));
}

.hero-floating-badge--yellow .badge-value,
.hero-floating-badge--yellow .badge-label,
.hero-floating-badge--yellow .badge-icon {
  color: #111;
}

.hero-floating-badge--yellow .badge-icon {
  width: 40px;
  height: 40px;
  font-size: 1.28rem;
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.14);
}
/* 24/7 Hero card style to match reference theme */
.hero-floating-badge--yellow {
  border-radius: 22px;
  border: 2px solid rgba(250, 214, 52, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.hero-floating-badge--yellow .metric-card-image {
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
}

.hero-floating-badge--yellow .metric-card-overlay {
  background: linear-gradient(120deg, rgba(255, 222, 62, 0.96), rgba(245, 195, 22, 0.92));
}

.hero-floating-badge--yellow .metric-card-content {
  gap: 0.68rem;
}

.hero-floating-badge--yellow .badge-value {
  color: #050505;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero-floating-badge--yellow .badge-label {
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

.hero-floating-badge--yellow .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.35rem;
  color: #111;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
/* Force override for 24/7 floating card */
.hero-media-stack .hero-floating-badge--yellow.metric-badge .metric-card-overlay {
  background: linear-gradient(120deg, #ffdf4e, #f5c316) !important;
}

.hero-media-stack .hero-floating-badge--yellow.metric-badge .badge-value,
.hero-media-stack .hero-floating-badge--yellow.metric-badge .badge-label,
.hero-media-stack .hero-floating-badge--yellow.metric-badge .badge-icon {
  color: #111 !important;
}

.hero-media-stack .hero-floating-badge--yellow.metric-badge .badge-icon {
  background: rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
}
/* Company Highlights: 3 cards fit full section width */
.highlight-metrics {
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .highlight-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* Landing Core Services section */
.core-services-grid {
  gap: 0.95rem;
}

.core-service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.24);
  background: linear-gradient(180deg, #171717, #121212);
}

.core-service-image {
  width: calc(100% + 2rem);
  height: 180px;
  object-fit: cover;
  margin: -1rem -1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 216, 77, 0.28);
  filter: brightness(0.84);
}

.core-service-card h3 {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

@media (min-width: 1040px) {
  .core-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.core-services-head {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

.core-services-head-action {
  display: flex;
  justify-content: flex-start;
}

.core-services-head-action .btn {
  white-space: nowrap;
}

@media (min-width: 960px) {
  .core-services-head {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
  }

  .core-services-head-action {
    justify-content: flex-end;
    align-self: start;
  }
}
/* Landing Equipment and Vehicles section */
.equipment-grid {
  gap: 1rem;
}

.equipment-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: linear-gradient(160deg, #1a1a1a, #101010);
}

.equipment-image {
  width: calc(100% + 2rem);
  height: 210px;
  object-fit: cover;
  margin: -1rem -1rem 0.95rem;
  border-bottom: 1px solid rgba(255, 216, 77, 0.32);
  filter: brightness(0.88) saturate(1.02);
}

.equipment-card h3 {
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.45rem;
  line-height: 1.28;
}

.equipment-body {
  margin-bottom: 0.6rem;
}

.equipment-list {
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.equipment-list li {
  position: relative;
  padding-left: 1.05rem;
  color: #ececec;
  line-height: 1.45;
}

.equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-500);
}

@media (min-width: 1100px) {
  .equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Equipment cards: same height and one-row layout */
.equipment-grid {
  align-items: stretch;
}

.equipment-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* Vehicle fleet gallery section */
.equipment-head {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

.equipment-head-action {
  display: flex;
  justify-content: flex-start;
}

.vehicle-grid {
  display: grid;
  gap: 0.12rem;
  background: #101010;
  border: 1px solid rgba(255, 216, 77, 0.18);
}

.vehicle-card {
  margin: 0;
  background: #0b0b0b;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.16);
}

.vehicle-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.vehicle-caption {
  background: #070707;
  color: var(--yellow-500);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(0.98rem, 1.25vw, 1.3rem);
  padding: 0.9rem 1rem;
  line-height: 1.25;
}

@media (min-width: 960px) {
  .equipment-head {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
  }

  .equipment-head-action {
    justify-content: flex-end;
    align-self: start;
  }

  .vehicle-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Facilities section compact layout with gallery slider */
.facility-section {
  padding: 2.1rem 0;
}

.facility-layout {
  align-items: start;
}

.facility-panel {
  padding: 1rem;
}

.facility-head {
  display: grid;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.facility-head-action {
  display: flex;
  justify-content: flex-start;
}

.facility-list {
  gap: 0.5rem;
}

.facility-list li {
  padding: 0.52rem 0.72rem 0.52rem 2.25rem;
}

.facility-gallery {
  min-height: clamp(210px, 28vw, 300px);
}

.facility-gallery img {
  height: 100%;
}

.facility-controls {
  top: 0.65rem;
  right: 0.65rem;
}

.facility-dots {
  bottom: 0.85rem;
}

@media (min-width: 960px) {
  .facility-head {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.9rem;
  }

  .facility-head-action {
    justify-content: flex-end;
  }
}
/* Facilities: force gallery height equal to text panel */
@media (min-width: 720px) {
  .facility-layout {
    align-items: stretch;
  }

  .facility-layout > * {
    height: 100%;
  }

  .facility-panel,
  .facility-gallery {
    height: 100%;
  }

  .facility-gallery img {
    height: 100%;
    min-height: 100%;
  }
}
/* Smart Yard Technology header action */
.tech-head {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

.tech-head-action {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 960px) {
  .tech-head {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
  }

  .tech-head-action {
    justify-content: flex-end;
    align-self: start;
  }
}
/* About page refresh */
.about-profile-grid .profile-list li {
  padding-left: 0;
}

.about-profile-grid .profile-list li::before {
  display: none;
}

.mini-title {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  margin-bottom: 0.28rem;
}
/* Technology cards: icon on top, larger, centered, no label */
.tech-highlights .metric-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  min-height: 96px;
}

.tech-highlights .badge-icon {
  width: 54px;
  height: 54px;
  font-size: 1.7rem;
}

.tech-highlights .badge-copy {
  width: 100%;
}

.tech-highlights .badge-value {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  text-align: center;
}
/* Contact showcase section style */
.contact-showcase {
  border-top: 2px solid rgba(248, 196, 0, 0.9);
  background: linear-gradient(180deg, #0f0f10, #0a0a0a);
}

.contact-eyebrow {
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
}

.contact-location-title {
  margin-top: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 2.05vw, 1.62rem);
  line-height: 1.18;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
}

.contact-showcase-list {
  margin-top: 1.05rem;
  display: grid;
  gap: 0.88rem;
}

.contact-showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  text-decoration: none;
  color: #d5d5d5;
  font-size: 1.02rem;
}

.contact-dot {
  width: 26px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.1;
}

.contact-socials-grid {
  margin-top: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-social-btn {
  justify-content: flex-start;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.15);
  color: #a9a9a9;
}

.contact-map-btn {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  background: var(--yellow-500);
  color: #080808;
  border-radius: 0;
  padding: 0.88rem 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
}
/* Contact map full-height to match left panel */
#contact .split.cols-2 {
  align-items: stretch;
}

#contact .split.cols-2 > article {
  height: 100%;
}

#contact .contact-map-card {
  display: flex;
  flex-direction: column;
}

#contact .contact-map-card .map-wrap {
  flex: 1;
  min-height: 0;
}

#contact .contact-map-card .map-wrap iframe {
  height: 100% !important;
  min-height: 100%;
}
/* About page redesign (KRK) */
.about-story-grid {
  align-items: stretch;
}

.about-story-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(150deg, rgba(248, 196, 0, 0.12), #171717 38%, #111 100%);
  border-color: rgba(255, 216, 77, 0.34);
}

.about-story-copy {
  display: grid;
  gap: 0.7rem;
}

.about-story-copy p {
  line-height: 1.68;
  color: #ececec;
}

.about-facts-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.about-fact-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: rgba(15, 15, 15, 0.7);
  padding: 0.75rem 0.8rem;
  display: grid;
  gap: 0.2rem;
}

.about-fact-label {
  color: #d0d0d0;
  font-size: 0.8rem;
}

.about-fact-value {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  font-size: 1.05rem;
  line-height: 1.2;
}

.about-story-media {
  display: grid;
  gap: 0.8rem;
}

.about-story-main-photo {
  min-height: 320px;
}

.about-story-sub-grid .photo-card {
  min-height: 145px;
}

.about-highlights-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.about-highlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: linear-gradient(165deg, #191919, #101010);
  padding-top: 2.2rem;
}

.about-highlight-card h3 {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  margin-bottom: 0.35rem;
  line-height: 1.25;
  padding-left: 4.3rem;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
}
.about-highlight-card p {
  color: #e5e5e5;
  line-height: 1.6;
}

.about-highlight-index {
  position: absolute;
  top: -1px;
  left: -1px;
  right: auto;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 14px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, #ffd84d, #f8c400);
  color: #0f0f0f;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.about-vm-grid {
  align-items: stretch;
}

.about-vm-card,
.about-strategic-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.about-strategic-layout {
  align-items: stretch;
}

.about-strategic-photo {
  min-height: 300px;
}

.about-vm-block {
  display: grid;
  gap: 0.35rem;
}

.about-plain-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.about-plain-list li {
  position: relative;
  padding-left: 0.95rem;
  line-height: 1.58;
  color: #ececec;
}

.about-plain-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-500);
  position: absolute;
  left: 0;
  top: 0.64rem;
}

.about-strategic-intro {
  margin-top: -0.15rem;
}

.about-infra-grid {
  align-items: stretch;
}

.about-infra-panel {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.about-infra-panel .check-list {
  margin-top: 0;
}

.about-infra-media .photo-card {
  min-height: 175px;
}

@media (min-width: 760px) {
  .about-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .about-highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 520px) {
  .about-highlight-card h3 {
    padding-left: 3.9rem;
  }
}



/* Service page redesign (KRK) */
.service-overview-grid {
  align-items: stretch;
}

.service-capability-grid {
  align-items: stretch;
}

.service-overview-card {
  display: grid;
  gap: 0.95rem;
  background: linear-gradient(145deg, rgba(248, 196, 0, 0.1), #161616 36%, #111 100%);
  border-color: rgba(255, 216, 77, 0.34);
  min-height: 450px;
  height: auto;
  max-height: none;
  overflow: visible;
}

.service-overview-copy {
  display: grid;
  gap: 0.7rem;
}

.service-overview-copy p {
  line-height: 1.66;
  color: #ececec;
}

.service-overview-photo {
  min-height: 450px;
  height: auto;
  max-height: none;
  align-self: stretch;
}

.service-kpi-row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.service-kpi {
  border: 1px solid rgba(255, 216, 77, 0.28);
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.72);
  padding: 0.72rem 0.75rem;
  display: grid;
  gap: 0.12rem;
}

.service-kpi strong {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-kpi span {
  color: #d2d2d2;
  font-size: 0.82rem;
}

.service-modules-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-module-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 216, 77, 0.24);
  background: linear-gradient(160deg, #171717, #101010);
}

.service-module-image {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 216, 77, 0.25);
  filter: brightness(0.86);
}

.service-module-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.55rem;
}

.service-module-body h3 {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  line-height: 1.26;
}

.service-module-body p {
  color: #ededed;
  line-height: 1.58;
}

.service-bullet-list {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  margin-top: 0.1rem;
}

.service-bullet-list li {
  position: relative;
  padding-left: 0.95rem;
  color: #dddddd;
  line-height: 1.5;
}

.service-bullet-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-500);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.service-capability-photo {
  min-height: 295px;
}

.service-capability-card {
  display: grid;
  gap: 0.75rem;
}

.service-capability-card p {
  color: #f1f1f1;
  line-height: 1.62;
}

.service-capability-card .check-list {
  margin-top: 0;
}

.service-fleet-grid {
  gap: 0.95rem;
}

.service-fleet-card {
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.26);
  background: linear-gradient(155deg, #181818, #101010);
}

.service-fleet-image {
  width: calc(100% + 2rem);
  height: 180px;
  object-fit: cover;
  margin: -1rem -1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 216, 77, 0.24);
  filter: brightness(0.87);
}

.service-fleet-card h3 {
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  line-height: 1.24;
  margin-bottom: 0.3rem;
}

.service-fleet-card p {
  color: #e7e7e7;
}

@media (min-width: 760px) {
  .service-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .service-modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service-cta-row {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

.service-cta-action {
  display: flex;
  justify-content: flex-start;
}

.service-cta-band .btn {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .service-cta-row {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
  }

  .service-cta-action {
    justify-content: flex-end;
    align-self: start;
  }
}
/* Technology page redesign (KRK) */
.tech-overview-grid,
.tech-security-grid {
  align-items: stretch;
}

.tech-overview-card {
  display: grid;
  gap: 0.95rem;
  background: linear-gradient(148deg, rgba(248, 196, 0, 0.1), #171717 40%, #101010 100%);
  border-color: rgba(255, 216, 77, 0.34);
}

.tech-overview-copy {
  display: grid;
  gap: 0.68rem;
}

.tech-overview-copy p {
  color: #ececec;
  line-height: 1.66;
}

.tech-overview-photo {
  min-height: 320px;
}

.tech-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-pill {
  border: 1px solid rgba(255, 216, 77, 0.32);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.8rem;
  color: #111;
  background: linear-gradient(130deg, #ffd84d, #f8c400);
  font-weight: 700;
}

.tech-features-grid {
  gap: 1rem;
}

.tech-feature-card {
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.24);
  background: linear-gradient(160deg, #171717, #101010);
}

.tech-feature-image {
  width: calc(100% + 2rem);
  height: 185px;
  object-fit: cover;
  margin: -1rem -1rem 0.88rem;
  border-bottom: 1px solid rgba(255, 216, 77, 0.25);
  filter: brightness(0.86);
}

.tech-feature-card h3 {
  font-family: "Outfit", sans-serif;
  color: var(--yellow-400);
  margin-bottom: 0.36rem;
  line-height: 1.26;
}

.tech-feature-card p {
  color: #e9e9e9;
  line-height: 1.58;
}

.tech-security-photo {
  min-height: 295px;
}

.tech-security-card {
  display: grid;
  gap: 0.75rem;
}

.tech-security-card p {
  color: #efefef;
  line-height: 1.62;
}

.tech-security-card .check-list {
  margin-top: 0;
}

.tech-accuracy-card {
  display: grid;
  gap: 0.85rem;
}

.tech-accuracy-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.tech-accuracy-item {
  border: 1px solid rgba(255, 216, 77, 0.25);
  border-radius: 12px;
  background: rgba(248, 196, 0, 0.06);
  padding: 0.72rem 0.8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.62rem;
  align-items: flex-start;
}

.tech-accuracy-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-500);
  color: #111;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.tech-accuracy-item p {
  color: #ececec;
  line-height: 1.58;
}

@media (min-width: 1020px) {
  .tech-accuracy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-yard-layout {
  align-items: stretch;
}

.about-yard-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.about-yard-card .check-list {
  margin-top: 0;
}

.about-yard-photo {
  min-height: 420px;
}

.about-yard-photo img {
  object-fit: cover;
}
/* Landing Smart Yard Technology redesign */
.home-tech-section {
  position: relative;
}

.home-tech-top {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.home-tech-intro {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: linear-gradient(150deg, rgba(248, 196, 0, 0.1), #171717 40%, #101010 100%);
}

.home-tech-intro p {
  color: #ececec;
  line-height: 1.62;
}

.home-tech-action {
  margin-top: 0.2rem;
}

.home-tech-hero {
  min-height: 290px;
}

.home-tech-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.home-tech-card {
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.26);
  background: linear-gradient(160deg, #171717, #101010);
  padding: 0;
}

.home-tech-card-image {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 216, 77, 0.24);
  filter: brightness(0.86);
}

.home-tech-card-body {
  padding: 0.78rem 0.85rem;
  display: grid;
  gap: 0.32rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.home-tech-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 216, 77, 0.38);
  background: rgba(248, 196, 0, 0.14);
  color: var(--yellow-400);
}

.home-tech-card-body strong {
  color: var(--yellow-400);
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

@media (min-width: 920px) {
  .home-tech-top {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .home-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .home-tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.about-infra-single {
  min-height: 320px;
}


.about-profile-title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-profile-title small {
  font-size: 0.72em;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.2;
}






.about-yard-bottom-photo {
  margin-top: 1rem;
  min-height: 420px;
}

.about-yard-bottom-photo img {
  object-fit: cover;
}

/* Contact social buttons redesign */
.contact-socials-grid {
  gap: 0.82rem;
}

.contact-social-btn.social-platform {
  justify-content: flex-start;
  gap: 0.78rem;
  min-height: 62px;
  padding: 0.72rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 216, 77, 0.34);
  background: linear-gradient(155deg, rgba(32, 32, 32, 0.95), rgba(14, 14, 14, 0.95));
  color: #f3f3f3;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-social-btn.social-platform:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 216, 77, 0.72);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 216, 77, 0.22);
}

.contact-social-btn.social-platform .social-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  color: #0d0d0d;
  background: linear-gradient(145deg, #ffe36a, #f8c400);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.28);
}

.contact-social-btn.social-platform span:last-child {
  font-size: 1.02rem;
  color: #f4f4f4;
}

.contact-social-btn.social-facebook .social-icon,
.contact-social-btn.social-instagram .social-icon,
.contact-social-btn.social-line .social-icon,
.contact-social-btn.social-tiktok .social-icon {
  font-size: 1.08rem;
}


/* Contact map button redesign override */
.contact-map-btn {
  margin-top: 1.25rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  text-decoration: none;
  background: linear-gradient(145deg, #ffe36a, #f8c400) !important;
  color: #0b0b0b !important;
  border: 1px solid rgba(255, 216, 77, 0.72);
  border-radius: 14px !important;
  padding: 0.95rem 1.15rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.contact-map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 216, 77, 0.25);
  filter: saturate(1.08);
}

.contact-map-btn span:first-child {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(12, 12, 12, 0.15);
  font-size: 1.15rem;
}

/* Technology page: Smart Yard redesign */
.tech-smart-section {
  position: relative;
}

.tech-smart-layout {
  margin-top: 0.9rem;
  display: grid;
  gap: 1rem;
}

.tech-smart-copy {
  border: 1px solid rgba(248, 196, 0, 0.34);
  background: linear-gradient(160deg, rgba(248, 196, 0, 0.16), #171717 42%, #0f0f0f 100%);
}

.tech-smart-copy h3 {
  margin-bottom: 0.65rem;
  color: var(--yellow-400);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.tech-smart-copy p {
  color: #f1f1f1;
  line-height: 1.68;
}

.tech-smart-copy .check-list {
  margin-top: 0.8rem;
}

.tech-smart-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.tech-smart-photo {
  min-height: 170px;
  overflow: hidden;
}

.tech-smart-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

@media (min-width: 920px) {
  .tech-smart-layout {
    grid-template-columns: 1fr 1.08fr;
    align-items: stretch;
  }

  .tech-smart-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main side1"
      "main side2";
    grid-template-rows: minmax(152px, 1fr) minmax(152px, 1fr);
  }

  .tech-smart-photo.is-1 {
    grid-area: main;
    min-height: 318px;
  }

  .tech-smart-photo.is-2 {
    grid-area: side1;
  }

  .tech-smart-photo.is-3 {
    grid-area: side2;
  }
}

.contact-social-btn.social-platform.is-disabled {
  opacity: 0.5;
  filter: grayscale(0.3);
  cursor: not-allowed;
  pointer-events: auto;
}

.contact-social-btn.social-platform.is-disabled:hover {
  transform: none;
  border-color: rgba(255, 216, 77, 0.34);
  box-shadow: none;
}

/* Smart Yard gallery: 4-image layout */
@media (min-width: 920px) {
  .tech-smart-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(152px, 1fr));
    grid-template-areas: none;
  }

  .tech-smart-photo.is-1,
  .tech-smart-photo.is-2,
  .tech-smart-photo.is-3,
  .tech-smart-photo.is-4 {
    grid-area: auto;
    min-height: 170px;
  }
}



.no-break {
  white-space: nowrap;
  display: inline-block;
}

/* Header + landing page refinements */
.topbar-inner {
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    ". brand lang"
    "nav nav nav";
  row-gap: 0.55rem;
}

.brand {
  grid-area: brand;
  justify-self: center;
}

.nav {
  grid-area: nav;
  grid-column: auto;
  justify-content: center;
}

.lang-switch {
  grid-area: lang;
  justify-self: end;
}

@media (min-width: 720px) {
  .topbar-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      ". brand lang"
      "nav nav nav";
  }

  .nav {
    grid-column: auto;
  }
}

.hero-title span {
  display: block;
  margin-top: 0.12rem;
}

.hero-subtitle {
  font-weight: 800;
  color: #f2f2f2;
}

.gallery-subtitle-strong {
  font-weight: 800;
  color: #f2f2f2;
}

.vehicle-image {
  object-fit: contain;
  background: #080808;
  padding: 0.35rem;
}

/* Vehicles and Equipment: compact card height */
.vehicle-image {
  height: clamp(190px, 22vw, 245px);
  object-fit: contain;
  background: #080808;
  padding: 0.25rem;
}

.vehicle-caption {
  padding: 0.62rem 0.78rem;
  font-size: clamp(0.88rem, 1.02vw, 1.08rem);
  line-height: 1.22;
}

/* Topmenu: keep nav items on one line */
.nav {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

/* Topmenu redesign: two-row yellow/black layout */
.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: transparent;
  border-bottom: none;
}

.topbar-brand-row {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(24, 20, 6, 0.95) 10%,
    #f3c400 22%,
    #f8cf26 50%,
    #f3c400 78%,
    rgba(24, 20, 6, 0.95) 90%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.topbar-brand-inner {
  display: flex;
  justify-content: center;
  padding: 0.45rem 0;
}

.brand {
  min-height: 78px;
  width: min(980px, 100%);
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.2rem 0;
}

.brand-copy {
  text-align: center;
}

.brand-copy strong {
  color: #111;
  font-size: clamp(0.98rem, 2vw, 1.78rem);
}

.brand-copy > span {
  color: rgba(16, 16, 16, 0.9);
}

.topbar-nav-row {
  background: #090909;
  border-top: 1px solid rgba(255, 216, 77, 0.16);
  border-bottom: 1px solid rgba(255, 216, 77, 0.16);
}

.topbar-nav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
}

.nav {
  grid-column: auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.lang-switch {
  justify-self: end;
}

@media (max-width: 719px) {
  .topbar-brand-inner {
    justify-content: flex-start;
  }

  .brand {
    justify-content: flex-start;
    width: 100%;
  }

  .brand-copy {
    text-align: left;
  }

  .topbar-nav-inner {
    grid-template-columns: 1fr auto;
  }
}

/* Topmenu nav centered, language switch stays right */
.topbar-nav-inner {
  grid-template-columns: 1fr auto 1fr;
}

.topbar-nav-inner .nav {
  grid-column: 2;
  justify-content: center;
}

.topbar-nav-inner .lang-switch {
  grid-column: 3;
  justify-self: end;
}


/* Vehicles and Equipment caption centered */
.vehicle-caption {
  text-align: center;
}

/* Thai typography: prefer TH SarabunPSK */
html[lang="th"] body,
html[lang="th"] body * {
  font-family: "TH SarabunPSK", "TH Sarabun New", "Sarabun", sans-serif !important;
}

/* Embedded Thai font: TH Sarabun New */
@font-face {
  font-family: "TH Sarabun New Embedded";
  src: url("/assets/fonts/THSarabunNew.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TH Sarabun New Embedded";
  src: url("/assets/fonts/THSarabunNew Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TH Sarabun New Embedded";
  src: url("/assets/fonts/THSarabunNew Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TH Sarabun New Embedded";
  src: url("/assets/fonts/THSarabunNew BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

html[lang="th"] body,
html[lang="th"] body * {
  font-family: "TH Sarabun New Embedded", "TH SarabunPSK", "TH Sarabun New", "Sarabun", sans-serif !important;
}

/* Thai font size boost (+5 levels) */
html[lang="th"] {
  font-size: 150%;
}

@media (max-width: 719px) {
  html[lang="th"] {
    font-size: 142%;
  }
}


/* Topbar row 1 typography +100% */
.topbar-brand-row .brand-copy strong {
  font-size: clamp(1.96rem, 4vw, 3.56rem);
}

.topbar-brand-row .brand-copy > span {
  font-size: clamp(1.28rem, 2.7vw, 1.56rem);
}

/* Topbar row 1 tuning: slogan -30%, logo larger */
.topbar-brand-row .brand-copy > span {
  font-size: clamp(0.9rem, 1.9vw, 1.1rem);
}

.topbar-brand-row .brand {
  min-height: 104px;
  gap: 0.95rem;
}

.topbar-brand-row .brand-logo-wrap {
  width: clamp(88px, 7.8vw, 118px);
  height: clamp(88px, 7.8vw, 118px);
}

.topbar-brand-row .brand-logo {
  transform: scale(1.05);
}

/* Topbar adjust: restore yellow top row + EN company name -30% */
body[data-page="home"] .topbar-brand-row {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(24, 20, 6, 0.95) 10%,
    #f3c400 22%,
    #f8cf26 50%,
    #f3c400 78%,
    rgba(24, 20, 6, 0.95) 90%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border-bottom-color: rgba(0, 0, 0, 0.22);
}

html[lang="en"] .topbar-brand-row .brand-copy strong {
  font-size: clamp(1.37rem, 2.8vw, 2.49rem);
}



/* Topbar brand text -10% */
.topbar-brand-row .brand-copy strong {
  font-size: clamp(1.764rem, 3.6vw, 3.204rem);
}

.topbar-brand-row .brand-copy > span {
  font-size: clamp(0.81rem, 1.71vw, 0.99rem);
}

/* Mobile topbar: keep company name in one line */
@media (max-width: 719px) {
  .topbar-brand-row .brand {
    min-height: 86px;
    gap: 0.62rem;
  }

  .topbar-brand-row .brand-logo-wrap {
    width: 64px;
    height: 64px;
  }

  .topbar-brand-row .brand-copy {
    min-width: 0;
  }

  .topbar-brand-row .brand-copy strong {
    font-size: clamp(0.9rem, 3.55vw, 1.08rem);
    line-height: 1.06;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    letter-spacing: 0;
  }
}

/* Thai typography: tighter line spacing */
html[lang="th"] body {
  line-height: 1.42;
}

html[lang="th"] p,
html[lang="th"] li,
html[lang="th"] .muted,
html[lang="th"] .check-list li,
html[lang="th"] .vehicle-caption,
html[lang="th"] .contact-showcase-item {
  line-height: 1.35;
}

/* Core Services: full image without crop, card fits image */
.core-service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.core-service-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  margin: 0;
  border-bottom: 1px solid rgba(255, 216, 77, 0.28);
  background: #0b0b0b;
  filter: none;
}

.core-service-card h3,
.core-service-card p {
  padding-inline: 1rem;
}

.core-service-card h3 {
  padding-top: 0.85rem;
}

.core-service-card p {
  padding-bottom: 0.95rem;
}

/* Company Highlights (TH): text +80% and bolder */
html[lang="th"] .hero-badges.hero-badges-below .metric-badge {
  min-height: 96px;
}

html[lang="th"] .hero-badges.hero-badges-below .badge-value {
  font-size: clamp(1.45rem, 2.65vw, 2.52rem);
  font-weight: 900;
  line-height: 1.02;
}

html[lang="th"] .hero-badges.hero-badges-below .badge-label {
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.18;
}


/* Topmenu TH: tighter line spacing + smaller logo balance */
html[lang="th"] .topbar-brand-row .brand {
  min-height: 92px;
  gap: 0.62rem;
}

html[lang="th"] .topbar-brand-row .brand-logo-wrap {
  width: clamp(70px, 6.3vw, 92px);
  height: clamp(70px, 6.3vw, 92px);
}

html[lang="th"] .topbar-brand-row .brand-copy {
  line-height: 1.02;
}

html[lang="th"] .topbar-brand-row .brand-copy strong {
  line-height: 0.98;
  margin-bottom: 0.04rem;
}

html[lang="th"] .topbar-brand-row .brand-copy > span {
  line-height: 1.02;
  letter-spacing: 0.02em;
}

/* Topmenu EN: smaller logo balance */
html[lang="en"] .topbar-brand-row .brand {
  min-height: 92px;
  gap: 0.6rem;
}

html[lang="en"] .topbar-brand-row .brand-logo-wrap {
  width: clamp(68px, 6.1vw, 88px);
  height: clamp(68px, 6.1vw, 88px);
}

html[lang="en"] .topbar-brand-row .brand-logo {
  transform: scale(1.02);
}

/* Topmenu yellow bar with black fade on both sides */
.topbar-brand-row {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(24, 20, 6, 0.95) 10%,
    #f3c400 22%,
    #f8cf26 50%,
    #f3c400 78%,
    rgba(24, 20, 6, 0.95) 90%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border-bottom: 1px solid rgba(255, 216, 77, 0.28);
  box-shadow:
    inset 32px 0 46px rgba(0, 0, 0, 0.34),
    inset -32px 0 46px rgba(0, 0, 0, 0.34);
}

/* Force topbar yellow gradient (global + home override) */
.topbar-brand-row,
body[data-page="home"] .topbar-brand-row {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(24, 20, 6, 0.95) 10%,
    #f3c400 22%,
    #f8cf26 50%,
    #f3c400 78%,
    rgba(24, 20, 6, 0.95) 90%,
    rgba(10, 10, 10, 0.98) 100%
  ) !important;
  border-bottom-color: rgba(255, 216, 77, 0.28) !important;
  box-shadow:
    inset 32px 0 46px rgba(0, 0, 0, 0.34),
    inset -32px 0 46px rgba(0, 0, 0, 0.34) !important;
}





/* Service Overview (TH): tighter text to avoid vertical scrollbar */
html[lang="th"] body[data-page="service"] .service-overview-copy {
  gap: 0.4rem;
}

html[lang="th"] body[data-page="service"] .service-overview-copy p {
  margin: 0;
  line-height: 1.18;
}

.service-overview-photo > img {
  height: 100%;
}

