:root {
  --navy: #071827;
  --navy2: #0b2438;
  --gold: #f4ad24;
  --ink: #101820;
  --soft: #f3f6f8;
  --muted: #687681;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Manrope, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}
h2 em,
h1 em {
  color: var(--gold);
  font-style: normal;
}
.section {
  padding: 110px 0;
}
.navbar {
  padding: 18px 0;
  transition: 0.25s;
}
.navbar.scrolled {
  background: rgba(7, 24, 39, 0.96);
  padding: 10px 0;
  box-shadow: 0 8px 30px #0003;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff !important;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1;
}
.brand small {
  display: block;
  letter-spacing: 0.24em;
  font-size: 0.5rem;
  color: #a9b7c2;
  margin-top: 6px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.nav-link {
  color: #d9e2e8 !important;
  font-weight: 600;
  font-size: 0.86rem;
  margin: 0 6px;
}
.btn {
  font-weight: 700;
  border-radius: 7px;
  padding: 0.72rem 1.15rem;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.btn-gold:hover {
  background: #ffc14d;
  border-color: #ffc14d;
  transform: translateY(-2px);
}
.hero {
  min-height: 790px;
  background: linear-gradient(
      90deg,
      rgba(4, 16, 27, 0.96) 0%,
      rgba(4, 16, 27, 0.68) 54%,
      rgba(4, 16, 27, 0.25)
    ),
    url("../images/hero.webp") center/cover;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.hero-copy {
  max-width: 800px;
  padding-top: 40px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 20px;
}
.eyebrow.dark {
  color: #a66e00;
}
.hero h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 680px;
  color: #c7d1d8;
  margin-bottom: 35px;
}
.hero-stat {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #061725d9;
  border-top: 1px solid #ffffff24;
}
.hero-stat .container {
  padding: 25px 12px;
  gap: 70px;
}
.hero-stat div div {
  display: flex;
  flex-direction: column;
}
.hero-stat b {
  font-size: 1.55rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b3c0c9;
}
.advantages {
  padding: 0 0 80px;
  background: linear-gradient(#fff, #f9fafb);
}
.adv-card {
  padding: 44px 24px 20px;
  border-top: 3px solid transparent;
}
.adv-card:hover {
  border-color: var(--gold);
}
.adv-card > i,
.service-card > i {
  font-size: 2.1rem;
  color: #b27705;
}
.adv-card h3,
.service-card h3 {
  font-size: 1.1rem;
  margin: 18px 0 12px;
}
.adv-card p,
.service-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}
.image-frame {
  position: relative;
}
.image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}
.experience {
  position: absolute;
  right: -20px;
  bottom: 35px;
  background: var(--gold);
  padding: 22px 28px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 12px 30px #0002;
}
.experience b {
  font-size: 2rem;
  display: block;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #3d4b55;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.checks span {
  font-weight: 700;
  font-size: 0.88rem;
}
.checks i {
  background: var(--gold);
  color: var(--navy);
  padding: 3px;
  margin-right: 10px;
  border-radius: 50%;
}
.bg-soft {
  background: var(--soft);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-head p {
  max-width: 450px;
  color: var(--muted);
}
.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  min-height: 280px;
  box-shadow: 0 8px 35px #1020300b;
  border-bottom: 3px solid transparent;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}
.service-card a {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #8b5d00;
  text-decoration: none;
}
.project-section {
  background: var(--navy);
  color: #fff;
}
.section-head.light p {
  color: #a9b6bf;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 420px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, #051522e8);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-info {
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding: 28px;
  width: 100%;
}
.project-info span {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-info h3 {
  font-size: 1.45rem;
  margin-top: 8px;
}
.project-info > i {
  position: absolute;
  right: 28px;
  bottom: 33px;
  font-size: 1.5rem;
}
.stats > div > div {
  background: var(--soft);
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.stats b {
  font-size: 2rem;
}
.stats span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}
.map-section {
  padding: 100px 0;
  background: #e9eef1;
}
.map-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px #07182722;
}
.map-card iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}
.map-copy {
  background: var(--navy);
  color: #fff;
  padding: 60px 45px;
}
.map-copy p {
  color: #aebbc4;
  line-height: 1.8;
}
.cta {
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(#061827e8, #061827e8),
    url("../images/offshore.webp") center/cover;
}
.cta h2 {
  margin-bottom: 30px;
}
.contact-form,
.person-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 12px 50px #10203012;
}
.form-control,
.form-select,
.input-group-text {
  border: 1px solid #d9e0e5;
  border-radius: 7px;
  padding: 0.82rem;
}
.contact-form label,
.modal label,
.password-card label,
.login-panel label {
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.person-card {
  margin-top: 30px;
}
.avatar {
  float: left;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
  margin-right: 15px;
}
.person-card small {
  color: #9b6b0a;
  font-weight: 800;
}
.person-card h3 {
  font-size: 1.15rem;
  margin: 4px 0;
}
.person-card p {
  font-size: 0.8rem;
}
.person-card a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  margin: 12px 0;
  font-weight: 600;
  font-size: 0.88rem;
}
.person-card a i {
  color: #b57900;
  margin-right: 12px;
}
.btn-whatsapp {
  background: #1eaf61 !important;
  color: #fff !important;
  text-align: center;
  padding: 12px;
}
footer {
  background: #061521;
  color: #9eabb4;
  padding: 80px 0 0;
}
footer a {
  display: block;
  color: #c2cbd1;
  text-decoration: none;
  margin: 12px 0;
}
footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-brand {
  margin-bottom: 25px;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffffff0d;
  border: 1px solid #ffffff18;
}
.copyright {
  border-top: 1px solid #ffffff13;
  margin-top: 55px;
  padding: 25px 0;
  font-size: 0.75rem;
}
.float-wa,
#top {
  position: fixed;
  z-index: 10;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 22px #0003;
}
.float-wa {
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1eaf61;
  font-size: 1.5rem;
}
.float-wa:hover {
  color: #fff;
  transform: scale(1.05);
}
#top {
  right: 25px;
  bottom: 92px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
}
#top.show {
  opacity: 1;
  pointer-events: auto;
}
/* Admin */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%;
}
.login-panel {
  padding: 55px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dark-brand {
  color: var(--navy) !important;
  align-self: flex-start;
}
.login-panel h1 {
  font-size: 3.2rem;
  margin: 12px 0;
}
.login-panel form {
  margin: 35px 0;
}
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}
.login-art {
  background: linear-gradient(0deg, #061827bb, #06182755),
    url("../images/hero.webp") center/cover;
  color: #fff;
  padding: 70px;
  display: flex;
  align-items: end;
}
.login-art span {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}
.login-art h2 {
  font-size: 4.5rem;
}
.sidebar {
  width: 270px;
  background: var(--navy);
  color: #fff;
  position: fixed;
  inset: 0 auto 0 0;
}
.sidebar .offcanvas-header {
  padding: 28px 24px;
}
.sidebar .offcanvas-body {
  padding: 20px;
}
.sidebar nav a {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #9fb0bb;
  text-decoration: none;
  padding: 14px 16px;
  margin: 5px 0;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
}
.sidebar nav a.active,
.sidebar nav a:hover {
  background: #ffffff10;
  color: #ffc107;
}
.sidebar nav a.active {
  border-left: 3px solid var(--gold);
}
.logout {
  border: 0;
  background: transparent;
  color: #e18585;
  text-align: left;
  padding: 15px;
}
.admin-main {
  margin-left: 270px;
  min-height: 100vh;
  background: #f3f5f7;
}
.admin-main header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid #e4e8eb;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 38px;
}
.admin-main header div {
  display: flex;
  flex-direction: column;
}
.admin-main header small {
  font-size: 0.6rem;
  color: #9a6b0c;
  letter-spacing: 0.12em;
}
.admin-content {
  padding: 38px;
}
.admin-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.admin-title p {
  font-size: 0.65rem;
  color: #a26f08;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin: 0;
}
.admin-title h1 {
  font-size: 2.2rem;
  margin: 5px 0;
}
.metric,
.welcome-card,
.table-card,
.upload-card,
.password-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 30px #0d203008;
}
.metric {
  padding: 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
}
.metric i {
  grid-row: 1/3;
  background: #fff4dd;
  color: #9a6500;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.metric b {
  font-size: 1.8rem;
  line-height: 1;
}
.metric span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
}
.welcome-card {
  margin-top: 28px;
  padding: 55px;
  background: linear-gradient(100deg, var(--navy), #103852);
  color: #fff;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.welcome-card span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}
.welcome-card h2 {
  font-size: 2.3rem;
}
.welcome-card p {
  color: #aebbc4;
}
.welcome-card > i {
  font-size: 11rem;
  color: #ffffff08;
}
.table-card {
  padding: 20px;
}
.table th {
  font-size: 0.68rem;
  color: #687681;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.table td {
  font-size: 0.85rem;
}
.upload-card {
  padding: 25px;
}
.upload-card .preview {
  height: 170px;
  background: #f3f5f7;
  border: 1px dashed #c6d0d7;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
}
.upload-card .preview i {
  font-size: 2rem;
  color: #aab4bb;
}
.upload-card .preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.upload-card h3 {
  font-size: 1.1rem;
}
.upload-card p {
  font-size: 0.75rem;
  color: var(--muted);
}
.upload-card input {
  margin: 15px 0;
}
.password-card {
  max-width: 620px;
  padding: 35px;
}
.strength {
  height: 5px;
  background: #e6eaed;
  border-radius: 4px;
}
.strength span {
  display: block;
  height: 100%;
  width: 0;
  background: #d33;
  border-radius: 4px;
  transition: 0.2s;
}
@media (max-width: 991px) {
  .navbar {
    background: var(--navy);
  }
  .nav-link {
    padding: 12px 0;
  }
  .hero {
    min-height: 740px;
  }
  .section {
    padding: 80px 0;
  }
  .image-frame img {
    height: 480px;
  }
  .experience {
    right: 10px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .login-page {
    grid-template-columns: 1fr;
  }
  .login-art {
    display: none;
  }
  .login-panel {
    min-height: 100vh;
    padding: 40px 8vw;
  }
  .admin-main {
    margin-left: 0;
  }
  .admin-main header {
    justify-content: space-between;
  }
  .sidebar {
    position: fixed;
  }
  .project-card {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .hero {
    min-height: auto;
    display: block;
    padding-top: 130px;
  }
  .hero > .container {
    padding-bottom: 65px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-copy .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-copy .btn {
    width: 100%;
    margin: 0 !important;
  }
  .hero-stat {
    position: relative;
    bottom: auto;
  }
  .hero-stat .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px 12px;
  }
  .hero-stat .container > div {
    padding: 4px 12px;
    border-right: 1px solid #ffffff20;
    min-width: 0;
  }
  .hero-stat .container > div:nth-child(2) {
    border-right: 0;
  }
  .hero-stat .container > div:last-child {
    display: none;
  }
  .hero-stat b {
    font-size: 1.4rem;
  }
  .hero-stat span {
    font-size: 0.62rem;
    line-height: 1.45;
    white-space: normal;
  }
  .advantages .col-6 {
    width: 100%;
  }
  .adv-card {
    padding: 25px;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .map-card iframe {
    height: 340px;
  }
  .map-copy {
    padding: 40px 28px;
  }
  .login-panel h1 {
    font-size: 2.4rem;
  }
  .admin-content {
    padding: 22px 15px;
  }
  .admin-title {
    align-items: flex-start;
    gap: 15px;
  }
  .admin-title h1 {
    font-size: 1.7rem;
  }
  .welcome-card {
    padding: 30px;
  }
  .welcome-card h2 {
    font-size: 1.7rem;
  }
  .welcome-card > i {
    display: none;
  }
  .project-card {
    height: 300px;
  }
}
/* Keep hero buttons clear of the absolute statistics bar. */
.hero-copy {
  padding-bottom: 135px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) and (min-width: 576px) {
  .hero {
    min-height: 820px;
  }
  .hero-copy {
    padding-bottom: 155px;
  }
}
@media (max-width: 575px) {
  .hero-copy {
    padding-bottom: 0;
  }
}
@media (max-height: 760px) and (min-width: 992px) {
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    padding-top: 100px;
    padding-bottom: 145px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
  }
}

/* Front-page security notice */
.security-notice {
  padding: 90px 0;
  background: #eef2f4;
  border-top: 5px solid #bf201b;
}
.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 70px;
  background: #fff;
  border-radius: 14px;
  padding: 48px;
  box-shadow: 0 18px 55px #07182716;
}
.notice-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.notice-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 670px;
}
.notice-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff3f1;
  border-left: 4px solid #c6221c;
  border-radius: 8px;
  padding: 20px;
  margin: 28px 0;
  color: #6e1713;
}
.notice-rule > i {
  flex: 0 0 auto;
  font-size: 2rem;
  color: #c6221c;
}
.notice-rule span {
  line-height: 1.6;
  font-size: 0.88rem;
}
.notice-rule b {
  display: block;
  color: #8f1814;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.notice-poster {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px #06152125;
  cursor: zoom-in;
  transition: transform 0.25s, box-shadow 0.25s;
}
.notice-poster:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px #06152135;
}
.notice-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.warning-modal {
  background: #e9edf0;
}
.warning-modal .modal-body {
  max-height: 82vh;
  overflow: auto;
  padding: 12px;
}
.warning-modal .modal-body img {
  max-height: none;
  width: auto;
}
@media (max-width: 991px) {
  .notice-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 35px;
  }
  .notice-poster {
    max-width: 520px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .security-notice {
    padding: 55px 0;
  }
  .notice-layout {
    padding: 24px 18px;
  }
  .notice-rule {
    align-items: flex-start;
  }
  .notice-copy .btn {
    width: 100%;
  }
}

/* Mobile viewport containment */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body > nav,
body > main,
body > footer,
main > section {
  width: 100%;
  max-width: 100%;
}
img,
iframe {
  max-width: 100%;
}
.navbar > .container {
  flex-wrap: nowrap;
  max-width: 100%;
}
.navbar-brand {
  min-width: 0;
  max-width: calc(100% - 68px);
  margin-right: 8px;
}
.navbar-brand > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navbar-toggler {
  flex: 0 0 auto;
  margin-left: auto;
}
.hero-copy,
.section-head > *,
.notice-copy,
.map-copy {
  min-width: 0;
}
.hero h1,
.hero p,
.brand {
  overflow-wrap: anywhere;
}

@media (max-width: 575px) {
  .navbar > .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .navbar-brand {
    max-width: calc(100% - 62px);
    font-size: 0.84rem;
  }
  .navbar-brand .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }
  .navbar-brand small {
    font-size: 0.42rem;
    letter-spacing: 0.14em;
  }
  .hero {
    width: 100vw;
    max-width: 100%;
    background-position: 62% center;
  }
  .hero > .container,
  .hero-stat > .container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 2.8rem);
  }
  .hero p {
    font-size: 0.98rem;
  }
  .notice-layout,
  .map-card,
  .contact-form,
  .person-card {
    max-width: 100%;
  }
  .float-wa {
    right: 16px;
  }
  #top {
    right: 16px;
  }
  .person-card {
    padding: 26px 20px;
  }
  .person-card a,
  footer p,
  footer a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .person-card a {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.55;
  }
  .person-card a i {
    flex: 0 0 auto;
    margin-top: 3px;
  }
  .person-card hr {
    clear: both;
  }
}

/* Fluid desktop/tablet hero: fills the viewport and grows with its content. */
@media (min-width: 576px) {
  .hero {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    padding: 120px 0 125px;
    display: flex;
    align-items: center;
    background-position: center center;
  }
  .hero > .container {
    width: 100%;
    min-width: 0;
  }
  .hero-copy {
    padding-top: 0;
    padding-bottom: 0;
    max-width: min(800px, 72vw);
  }
  .hero-stat {
    min-height: 95px;
    display: flex;
    align-items: center;
    z-index: 3;
  }
  .hero-stat .container {
    align-items: center;
  }
}

@media (min-width: 1600px) {
  .hero-copy {
    max-width: 920px;
  }
  .hero h1 {
    font-size: clamp(5rem, 5.2vw, 6.7rem);
  }
  .hero p {
    font-size: 1.2rem;
    max-width: 760px;
  }
}

@media (min-width: 576px) and (max-height: 720px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 110px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 5vw, 4.25rem);
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-stat {
    min-height: 82px;
  }
  .hero-stat .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* Pulau Bukom operational profile */
.bukom-focus{background:linear-gradient(135deg,#eef3f5 0%,#fff 62%)}
.bukom-story{height:100%;padding:42px;background:#fff;border-radius:12px;border-top:4px solid var(--gold);box-shadow:0 12px 40px #07182712}
.bukom-year{display:inline-block;color:#9a6806;font-size:.7rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:15px}
.bukom-story h3{font-size:clamp(1.65rem,3vw,2.5rem);line-height:1.25;margin-bottom:20px}
.bukom-story p{color:var(--muted);line-height:1.8}
.bukom-story small{display:block;color:#788791;border-top:1px solid #e4e9ec;padding-top:18px;margin-top:22px;line-height:1.6}
.bukom-facts{display:grid;grid-template-columns:1fr 1fr;gap:16px;height:100%}
.bukom-facts>div{background:var(--navy);color:#fff;border-radius:10px;padding:28px;display:flex;flex-direction:column;justify-content:center;min-height:155px}
.bukom-facts b{font-size:2rem;color:var(--gold)}
.bukom-facts span{font-size:.72rem;line-height:1.55;text-transform:uppercase;letter-spacing:.08em;color:#b9c5cc}
.industry-note{display:flex;align-items:flex-start;gap:16px;margin-top:28px;padding:22px 25px;background:#fff8e9;border:1px solid #efd59b;border-radius:9px;color:#66501f}
.industry-note i{color:#ae7607;font-size:1.25rem;flex:0 0 auto}
.industry-note p{margin:0;font-size:.8rem;line-height:1.7}
@media(max-width:575px){.bukom-story{padding:28px 20px}.bukom-facts{grid-template-columns:1fr 1fr}.bukom-facts>div{padding:20px 16px;min-height:135px}.bukom-facts b{font-size:1.55rem}.industry-note{padding:18px}}

/* Employee policy modal */
.policy-modal-trigger{border:0;background:transparent}
.employee-policy-modal .modal-content{border:0;border-radius:14px;overflow:hidden;background:#f3f6f8}
.policy-modal-head{display:flex;justify-content:space-between;align-items:flex-start;gap:25px;padding:34px 38px;background:linear-gradient(110deg,var(--navy),#123e5d);color:#fff}
.policy-modal-head>div>span{color:var(--gold);font-size:.68rem;font-weight:800;letter-spacing:.14em}
.policy-modal-head h2{font-size:clamp(1.65rem,3vw,2.6rem);margin:10px 0 8px}
.policy-modal-head p{margin:0;color:#b6c4cc;font-size:.88rem;max-width:720px}
.employee-policy-modal .modal-body{padding:28px 36px}
.policy-modal-meta{display:flex;flex-wrap:wrap;gap:24px;background:#fff;border-radius:9px;padding:15px 20px;margin-bottom:20px;color:#687984;font-size:.72rem;font-weight:700}
.policy-modal-meta span{display:flex;gap:8px;align-items:center}.policy-modal-meta i{color:#a66e00}
.modal-policy-accordion{display:grid;gap:10px}
.modal-policy-accordion .accordion-item{border:1px solid #dce4e9;border-radius:9px;overflow:hidden}
.modal-policy-accordion .accordion-button{gap:15px;padding:16px 20px;font-weight:700;color:var(--navy);box-shadow:none}
.modal-policy-accordion .accordion-button:not(.collapsed){background:#edf5fa;color:#0b568a}
.modal-policy-accordion .accordion-button b{width:34px;height:34px;display:grid;place-items:center;flex:0 0 34px;border-radius:7px;background:var(--navy);color:#fff;font-size:.68rem}
.modal-policy-accordion .accordion-button:not(.collapsed) b{background:var(--gold);color:var(--navy)}
.modal-policy-accordion .accordion-body{padding:18px 24px;color:#4e5f6a;line-height:1.75;font-size:.86rem}.modal-policy-accordion .accordion-body p{margin:0}
.employee-policy-modal .modal-footer{background:#fff;border-top:1px solid #dce4e9;padding:17px 36px}
@media(max-width:991px){.employee-policy-modal .modal-content{border-radius:0}.policy-modal-head{padding:25px 20px}.employee-policy-modal .modal-body{padding:20px 15px}.employee-policy-modal .modal-footer{padding:15px;flex-wrap:nowrap}.employee-policy-modal .modal-footer .btn{flex:1;font-size:.68rem}.policy-modal-meta{gap:12px;padding:14px}.modal-policy-accordion .accordion-button{padding:14px}.modal-policy-accordion .accordion-body{padding:16px}}

/* Uploaded company logos */
.brand-logo{display:block;width:auto;height:48px;max-width:170px;object-fit:contain;flex:0 0 auto}
.brand-logo-navbar{height:46px;max-width:160px}
.brand-logo-footer{height:58px;max-width:190px}
@media(max-width:575px){.brand-logo-navbar{height:38px;max-width:110px}.brand-logo-footer{height:48px;max-width:145px}}
