:root {
  --ink: #17212b;
  --navy: #11243a;
  --deep: #07131f;
  --teal: #0f766e;
  --teal-dark: #0b5953;
  --gold: #c6a15b;
  --coral: #c65d4a;
  --mist: #f4f8f7;
  --paper: #fffdf8;
  --line: rgba(23, 33, 43, 0.14);
  --shadow: 0 24px 70px rgba(10, 30, 45, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--teal-dark);
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 36px));
  max-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 216px;
}

.brand-mark {
  width: 216px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.brand-mark img {
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--teal-dark);
  font-size: 0.93rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus {
  transform: translateY(-1px);
  opacity: 0.9;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: calc(82svh - 68px);
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 19, 31, 0.98) 0%, rgba(7, 19, 31, 0.8) 42%, rgba(7, 19, 31, 0.22) 100%),
    radial-gradient(circle at 84% 24%, rgba(15, 118, 110, 0.42), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(198, 93, 74, 0.18), transparent 38%);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -3;
  width: min(64vw, 980px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.08) brightness(1.08);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  gap: 30px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 12ch;
  font-size: clamp(2.6rem, 6.4vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #111820;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.quick-stats {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-stat {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  min-height: 112px;
}

.quick-stat:last-child {
  border-right: 0;
}

.quick-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.1;
}

.quick-stat span {
  display: block;
  margin-top: 8px;
  color: #586671;
  font-size: 0.94rem;
}

main {
  overflow: hidden;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--gold);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  color: #5c6b74;
  font-size: 1.05rem;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.grid-box {
  display: grid;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.about-text {
  font-size: 1.02rem;
  color: #394954;
}

.about-text p {
  margin-bottom: 18px;
}

.about-text img {
  width: 125px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.feature p {
  margin: 0;
  color: #65737c;
}

.catalogue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalogue-art {
  margin: -6px 0 28px;
  border: 1px solid rgba(23, 33, 43, 0.16);
  border-right: 1px solid rgba(23, 33, 43, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff8ec, #fff1dc);
  box-shadow: 0 18px 46px rgba(17, 36, 58, 0.1);
  overflow: hidden;
  padding: 14px;
}

.catalogue-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.catalogue-photo {
  min-width: 0;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius);
  background: #fffdf8;
  display: grid;
  grid-template-rows: 118px auto;
  overflow: hidden;
}

.catalogue-photo img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.catalogue-photo span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 9px 8px 11px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.16;
  text-align: center;
}

.product-card {
  min-height: 222px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 36, 58, 0.12);
}

.product-icon {
  width: 76px;
  height: 48px;
  color: var(--coral);
}

.product-card p {
  margin-bottom: 0;
  color: #64737c;
  font-size: 0.96rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.small-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #39515c;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 720;
}

.small-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}

.map-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 18px;
  min-height: 440px;
  overflow-x: auto;
}

.world-map {
  width: 100%;
  height: auto;
}

.land {
  fill: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.route {
  fill: none;
  stroke: rgba(198, 161, 91, 0.52);
  stroke-width: 1.7;
  stroke-dasharray: 8 8;
  vector-effect: non-scaling-stroke;
}

.route-current {
  stroke: rgba(44, 189, 172, 0.58);
  stroke-dasharray: 0;
}

.route-upcoming {
  stroke: rgba(198, 161, 91, 0.6);
}

.marker-dot {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.marker-current .marker-dot {
  fill: var(--teal);
}

.marker-upcoming .marker-dot {
  fill: var(--gold);
}

.marker-hub .marker-dot {
  fill: var(--coral);
}

.marker-label {
  fill: #fff;
  font-size: 22px;
  font-weight: 760;
  paint-order: stroke;
  stroke: rgba(7, 19, 31, 0.76);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.market-card {
  display: grid;
  gap: 14px;
}

.market-block {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.market-block h3 {
  margin-bottom: 14px;
  color: #fff;
}

.country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.country-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--teal);
}

.country-list.upcoming li::before {
  background: var(--gold);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cert {
  min-height: 190px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  align-content: start;
  gap: 16px;
}

.cert-logo-frame {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.58);
  background: var(--navy);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17, 36, 58, 0.14);
}

.cert-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cert span {
  color: #64737c;
  font-size: 0.92rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.facility-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 36, 58, 0.08);
}

.facility-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.facility-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.facility-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.facility-list dt {
  color: #66737b;
  font-size: 0.92rem;
  font-weight: 760;
}

.facility-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.location-visual {
  min-height: 100%;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(17, 36, 58, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(198, 161, 91, 0.38), transparent 36%);
  color: #fff;
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 44px;
  position: relative;
  overflow: hidden;
}

.location-visual svg {
  width: 100%;
  height: auto;
  opacity: 0.92;
}

.pin-pulse {
  transform-origin: center;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.28);
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.contact-card strong {
  display: block;
  margin-top: 0;
  font-size: clamp(0.82rem, 1.06vw, 0.95rem);
  line-height: 1.25;
  white-space: nowrap;
}

.site-footer {
  padding: 28px 0;
  background: #06111b;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 80px;
  }

  .brand-mark img {
    height: auto;
  }

  .nav-links {
    justify-content: flex-start;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.42;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 66px;
  }

  h1 {
    max-width: 10ch;
  }

  .quick-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-stat:nth-child(2) {
    border-right: 0;
  }

  .quick-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .market-layout,
  .facility-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .catalogue {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-word {
    font-size: 0.98rem;
  }

  .brand-word span {
    font-size: 0.58rem;
  }

  .nav-links {
    gap: 4px 13px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-inner,
  .wrap,
  .quick-stats,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    padding: 50px 0 62px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-stats,
  .catalogue,
  .cert-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-card strong {
    white-space: normal;
  }

  .quick-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .map-panel {
    padding: 10px;
    min-height: 0;
  }

  .world-map {
    width: 680px;
    max-width: none;
  }

  .marker-label {
    font-size: 30px;
  }

  .facility-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ===== MOBILE NAV SIDEBAR ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  transition: all 220ms ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 31, 0.72);
  z-index: 40;
  backdrop-filter: blur(4px);
}

.sidebar-overlay.visible {
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--navy);
  z-index: 50;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.open {
  right: 0;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 160ms ease, color 160ms ease;
}

.sidebar-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sidebar-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--gold);
  color: #111820 !important;
  font-weight: 760;
  border-radius: 999px;
  font-size: 1rem;
}

.btn-enquire-nav {
  min-height: 40px;
  padding: 8px 20px;
  background: var(--gold);
  color: #111820;
  font-weight: 760;
  font-size: 0.88rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
  white-space: nowrap;
}

.btn-enquire-nav:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* MODAL */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 31, 0.78);
  z-index: 60;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--paper);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(7, 19, 31, 0.36);
  animation: modalIn 260ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-header-text h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
}

.modal-header-text p {
  margin: 0;
  color: #586671;
  font-size: 0.91rem;
}

.modal-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  flex-shrink: 0;
}

.modal-body {
  padding: 28px;
}

/* FORM */
.enquiry-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 720;
  color: #394954;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  min-height: 52px;
  background: var(--teal);
  color: #fff;
  font-weight: 760;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  margin-top: 4px;
  width: 100%;
}

.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(15, 118, 110, 0.08);
  border: 1.5px solid rgba(15, 118, 110, 0.28);
  border-radius: var(--radius);
  text-align: center;
}

.form-success .success-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.form-success h4 {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.form-success p {
  margin: 0;
  color: #5c6b74;
  font-size: 0.93rem;
}

/* PRODUCTS ENHANCED */
.products-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card-v2 {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 36, 58, 0.13);
}

.product-card-img {
  background: #fff;
  display: inline-table;
  place-items: center;
  position: relative;
  vertical-align: top;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card-img img {
  color: var(--teal);
  width: 100%;
  height: auto;
  /* 'cover' crops the image to fill the box without stretching */
  object-fit: cover;
  /* 'object-position: center' ensures the middle of the photo is visible */
  object-position: center;
}

.product-format-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 760;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-body h3 {
  margin: 0;
  font-size: 1rem;
}

.product-card-body p {
  margin: 0;
  color: #64737c;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.product-price strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 760;
}

.product-price span {
  color: #8a9aa4;
  font-size: 0.8rem;
}

.product-card-footer {
  padding: 0 18px 16px;
}

.btn-select-enquire {
  width: 100%;
  min-height: 44px;
  background: var(--ink);
  color: #fff;
  font-weight: 720;
  font-size: 0.88rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-select-enquire:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ENQUIRY SECTION */
.enquiry-section {
  padding: 80px 0;
  background: var(--mist);
}

.enquiry-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail div span,
.contact-detail a span {
  display: block;
  font-size: 0.76rem;
  color: #8a9aa4;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-detail div strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 36, 58, 0.07);
}

.form-panel>h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
}

/* FOOTER ENHANCED */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .company {
  display: block;
  color: #fff;
  font-weight: 760;
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.footer-brand .tagline {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color 140ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social-title {
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 760;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  text-transform: uppercase;
}

.footer-social a:hover {
  background: var(--gold);
  color: #111820;
  border-color: var(--gold);
}

.footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-links,
  .btn-enquire-nav {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .products-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .product-card-img {
    aspect-ratio: auto;
  }

  .enquiry-section-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid-enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-section-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}