@import "tailwindcss";

/* android-header-title-safe-20260719 */

:root {
  --ink: #07131d;
  --navy: #0a1d2c;
  --blue: #0e506b;
  --teal: #18947f;
  --green: #7abf32;
  --gold: #d5a43b;
  --mist: #eef4f3;
  --paper: #fbfcfb;
  --muted: #627481;
  --line: rgba(7, 19, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(240px, auto);
  grid-template-areas:
    "brand contact"
    "brand nav";
  align-items: end;
  gap: 8px 24px;
  min-height: 112px;
  padding: 12px clamp(18px, 4vw, 58px) 14px;
  background:
    linear-gradient(90deg, rgba(8, 29, 44, 0.96), rgba(9, 35, 55, 0.9)),
    rgba(8, 29, 44, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(20px);
}

.brand-lockup {
  grid-area: brand;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
}

.seatech-logo {
  width: clamp(150px, 15vw, 250px);
  height: auto;
  display: block;
  filter: hue-rotate(5deg) saturate(0.82) brightness(0.74) contrast(1.12) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  mix-blend-mode: normal;
}

.alis-logo {
  width: clamp(260px, 26vw, 418px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.jv-mark {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-top: 1px solid rgba(213, 164, 59, 0.55);
  border-bottom: 1px solid rgba(213, 164, 59, 0.55);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  align-self: end;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
}

.site-header nav a:hover,
.top-contact a:hover {
  color: white;
}

.top-contact {
  grid-area: contact;
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.top-contact a,
.top-contact span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("/sabah-mws-hero.png") center / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 19, 29, 0.92) 0%, rgba(7, 19, 29, 0.7) 42%, rgba(7, 19, 29, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 19, 29, 0.72), rgba(7, 19, 29, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
  padding: clamp(148px, 19vh, 210px) clamp(22px, 5vw, 76px) 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  max-width: 960px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.65vw, 4.85rem);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 span,
h1 small {
  display: block;
}

h1 small {
  margin-top: 6px;
  font: inherit;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  line-height: 1.6;
}

.hero-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #160f03;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(24px, 6vw, 70px);
  width: min(330px, calc(100% - 44px));
  padding: 22px;
  background: rgba(7, 19, 29, 0.78);
  border-left: 4px solid var(--green);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-top: 8px;
  font-size: 1.65rem;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: var(--navy);
  color: white;
}

.trust-band span {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(22px, 5vw, 76px);
}

.intro,
.sabah-section,
.certification-section,
.portfolio-section,
.process-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-copy > p,
.intro-copy p,
.contact-section p {
  max-width: 720px;
  color: #465d68;
  font-size: clamp(1.02rem, 1.42vw, 1.2rem);
  line-height: 1.68;
}

.intro-copy p + p {
  margin-top: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #d1dde0;
  gap: 1px;
}

.service-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper);
}

.service-grid article > span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--gold));
}

.service-grid p {
  color: #38505c;
  line-height: 1.58;
}

.clients-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  background:
    linear-gradient(120deg, rgba(7, 19, 29, 0.98), rgba(10, 47, 66, 0.94)),
    url("/sabah-mws-hero.png") center / cover no-repeat;
  color: white;
}

.clients-section .section-copy {
  max-width: 1040px;
}

.clients-section .section-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.client-logo-card {
  display: flex;
  min-height: 148px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 249, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.client-logo-card img {
  display: block;
  width: 92%;
  height: 104px;
  object-fit: contain;
}

.sabah-section {
  background: var(--mist);
}

.sabah-media {
  min-height: 590px;
  overflow: hidden;
}

.sabah-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.point-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: #cbd8d7;
}

.point-list article {
  padding: 24px;
  background: white;
}

.point-list strong {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.point-list p {
  margin: 16px 0 0;
  color: #405662;
  line-height: 1.55;
}

.certification-section {
  background:
    linear-gradient(120deg, rgba(7, 19, 29, 0.98), rgba(12, 63, 82, 0.92)),
    url("/sabah-mws-hero.png") center / cover no-repeat;
  color: white;
}

.certification-section .section-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.cert-grid article {
  min-height: 188px;
  padding: 24px;
  background: rgba(7, 19, 29, 0.76);
  border-top: 3px solid var(--gold);
}

.cert-logo {
  display: block;
  width: 100%;
  height: 76px;
  margin: 0 0 18px;
  padding: 10px 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.cert-grid span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cert-grid strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.04;
}

.cert-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.portfolio-section {
  background: white;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: #cfdcde;
  list-style: none;
}

.portfolio-list li {
  min-height: 92px;
  padding: 22px 24px;
  background: var(--paper);
  color: #29444f;
  font-weight: 850;
  line-height: 1.34;
}

.process-section {
  background: var(--mist);
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: stretch;
  background: white;
  border: 1px solid #d6e1e2;
}

.process-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 950;
}

.process-list p {
  margin: 0;
  padding: 22px;
  color: #38505c;
  line-height: 1.5;
}

.contact-section {
  padding: clamp(70px, 10vw, 126px) clamp(22px, 5vw, 76px);
  background: var(--navy);
  color: white;
}

.contact-section .section-copy > p,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-panel span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel a:not(.button) {
  width: fit-content;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1.05;
}

.contact-panel p {
  margin: 0 0 12px;
}

.contact-panel address {
  margin: 4px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.58;
}

.contact-panel address strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel .button {
  width: fit-content;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "nav";
    align-items: start;
    gap: 12px;
    position: absolute;
  }

  .site-header nav,
  .top-contact {
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: 230px;
  }

  .trust-band,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    padding: 12px 18px 14px;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .jv-mark {
    width: fit-content;
    padding: 5px 8px;
    font-size: 0.58rem;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .hero-content {
    padding-top: 290px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(2.1rem, 8vw, 3rem);
    line-height: 1.1;
    overflow: visible;
    word-break: normal;
    hyphens: none;
  }

  h1 small {
    max-width: 520px;
    font-size: 0.82em;
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.6rem);
    line-height: 1.04;
  }

  .lead,
  .hero-note,
  .section-copy > p,
  .intro-copy p,
  .contact-section p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 22px 28px;
  }

  .trust-band,
  .service-grid,
  .intro,
  .clients-section,
  .sabah-section,
  .certification-section,
  .portfolio-section,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid article {
    min-height: auto;
  }

  .sabah-media,
  .sabah-media img {
    min-height: 360px;
  }

  .cert-grid,
  .portfolio-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: auto;
    overflow: visible;
  }

  .site-header {
    position: relative;
    padding: 10px 14px 12px;
    gap: 9px;
  }

  .seatech-logo {
    width: min(174px, 56vw);
  }

  .alis-logo {
    width: min(260px, 78vw);
  }

  .site-header nav a {
    min-height: 24px;
  }

  .top-contact {
    gap: 6px;
    font-size: 0.72rem;
  }

  .top-contact a,
  .top-contact span {
    min-height: 28px;
    padding: 0 8px;
  }

  .hero-content {
    padding: 136px 18px 58px;
  }

  h1 {
    max-width: 100%;
    padding: 0 8px 0 0;
    font-size: clamp(1.72rem, 7.2vw, 2.05rem);
    line-height: 1.35;
    overflow: visible;
    word-break: normal;
    hyphens: none;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.76rem;
    text-align: center;
  }

  .section {
    padding: 56px 18px;
  }

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

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo-card {
    min-height: 118px;
    padding: 16px;
  }

  .client-logo-card img {
    height: 82px;
  }

  .cert-logo {
    height: 64px;
    padding: 8px;
  }

  .portfolio-list li,
  .process-list p {
    padding: 18px;
  }

  .top-contact a,
  .top-contact span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .process-list li {
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

@media (max-width: 380px) {
  .seatech-logo {
    width: min(152px, 54vw);
  }

  .alis-logo {
    width: min(230px, 82vw);
  }

  .hero-content {
    padding: 128px 16px 50px;
  }

  h1 {
    padding-top: 0;
    font-size: 1.6rem;
    line-height: 1.38;
  }

  h1 small {
    font-size: 0.8em;
    line-height: 1.2;
  }
}
