/* ============================================================
   SECURAVISION – style.css
   REBUILT: Clean Corporate, Pixel-Perfect like Dahua Indonesia
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ============================================================
   NAVBAR
   — Thin white bar, logo left, links center, icons right
   — Exactly like Dahua reference
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.navbar {
  position: relative;
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.nav-logo-img {
  height: 49px;
  width: auto;
  object-fit: contain;
}

/* Center Menu */
.sidebar-header,
.sidebar-overlay {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
  height: 60px;
}

.nav-links>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  font-size: 13.5px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  transition: color .18s;
}

.nav-links>li>a i {
  font-size: 9px;
  color: #888;
  transition: transform .18s;
}

.nav-links>li:hover>a {
  color: #0d2c4e;
}

.nav-links>li:hover>a i {
  transform: rotate(180deg);
  color: #0d2c4e;
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border: 1px solid #e5e5e5;
  border-top: 2px solid #e21a1a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s ease;
  z-index: 500;
}

.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu ul {
  padding: 6px 0;
}

.sub-menu ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  color: #555;
  transition: all .15s;
}

.sub-menu ul li a:hover {
  background: #f5f5f5;
  color: #0d2c4e;
  padding-left: 22px;
}

/* Right Icons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #555;
  transition: all .18s;
}

.nav-icon-btn:hover {
  background: #f0f0f0;
  color: #0d2c4e;
}

.nav-lang {
  font-size: 12.5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  white-space: nowrap;
  cursor: pointer;
}

.nav-lang i {
  color: #888;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .25s;
}

/* Search bar (slides down under navbar) */
.nav-searchbar {
  display: none;
  background: #f5f7fb;
  border-top: 1px solid #e5e5e5;
}

.nav-searchbar.open {
  display: block;
}

.searchbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.searchbar-inner i {
  color: #999;
  font-size: 15px;
}

.searchbar-inner input {
  flex: 1;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  background: none;
}

.searchbar-inner input::placeholder {
  color: #aaa;
}

#searchClose {
  color: #999;
  font-size: 15px;
  padding: 4px;
}

#searchClose:hover {
  color: #e21a1a;
}


/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #0d2c4e;
  height: 70vh;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ------ Slide 1: Hotline (exactly like reference) ------ */
.slide-hotline {
  display: flex;
  background: #0d2c4e;
}

.slide-hotline-left {
  position: relative;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 0 0 40px;
  overflow: hidden;
}

.hl-tagline {
  position: absolute;
  top: 24px;
  left: 40px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hl-brand {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 4px;
}

.hl-country {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 3px;
}

.hl-title {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-top: auto;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 30px;
}

.hl-agent-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: brightness(1.05) saturate(0.9);
  display: none;
  /* hidden – shown when real agent photo exists */
}

/* Right side */
.slide-hotline-right {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border-left: 1px solid rgba(255, 255, 255, .1);
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.hl-right-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.hl-box-sv {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .25);
  padding: 4px 8px;
}

.hl-hot-badge {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hl-hot-badge span:first-child {
  background: #e21a1a;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 1px 8px;
  letter-spacing: 1px;
}

.hl-hot-badge span:last-child {
  background: #0d2c4e;
  border: 1px solid #e21a1a;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 1px 8px;
  letter-spacing: 1px;
}

.slide-hotline-right h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-hotline-right p {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  max-width: 480px;
}

.hl-schedule {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
}

.hl-hours {
  background: #e21a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  display: inline-block;
  border-radius: 3px;
  letter-spacing: 1px;
}

.hl-contacts {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 4px;
}

.qr-box {
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}

.hl-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 5px;
  color: #fff;
  font-size: 12.5px;
  transition: opacity .2s;
}

.hl-btn:hover {
  opacity: .88;
}

.hl-btn i {
  font-size: 20px;
}

.hl-btn small {
  display: block;
  font-size: 11px;
  opacity: .85;
}

.hl-btn strong {
  font-size: 14px;
  font-weight: 700;
}

.hl-btn-wa {
  background: #1daa61;
}

.hl-btn-tel {
  background: #e21a1a;
}

.hl-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

/* ------ Slides 2 & 3 ------ */
.slide-bg-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 20, 50, .8) 0%, rgba(0, 20, 50, .4) 60%, transparent 100%);
}

.slide-txt {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 10px;
}

.slide-txt h1 {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.slide-txt h1 span {
  color: #4fa3e0;
}

.slide-cta {
  display: inline-block;
  background: #e21a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 3px;
  width: fit-content;
  transition: background .18s;
}

.slide-cta:hover {
  background: #c01515;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background .18s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .32);
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: all .25s;
  border: none;
  cursor: pointer;
}

.hdot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}


/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-block {
  padding: 52px 0;
  background: #fff;
}

.section-gray {
  background: #f5f5f5;
}

.section-lightgray {
  background: #fafafa;
}

/* Section Header – title left, "Lainnya >>" right */
.sb-header {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.sb-title {
  font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.3px;
}

.sb-more {
  font-size: 13px;
  color: #555;
  transition: color .15s;
}

.sb-more:hover {
  color: #e21a1a;
}


/* ============================================================
   SOLUSI MOSAIC
   EXACT match Dahua reference:
   Col1     Col2      Col3
   [Transport(2row)] [Infra] [Retail(3row)]
                     [Bank]
   [Traffic][Build]  [Retail]
   ============================================================ */
.solusi-mosaic {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.54fr 1fr 1fr;
  grid-template-rows: 248px 220px 220px;
  gap: 4px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}

.mosaic-item:hover img {
  transform: scale(1.07);
}

/* Label overlay bottom-left exactly like Dahua */
.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
  pointer-events: none;
}

.mosaic-label span {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  letter-spacing: .2px;
}

/* Exact grid areas */
.mosaic-big-left {
  grid-area: 1 / 1 / 3 / 2;
}

/* Transportation: rows 1-2, col 1 */
.mosaic-tall-right {
  grid-area: 1 / 3 / 4 / 4;
}

/* Retail: rows 1-3, col 3 */
.mosaic-mid-1 {
  grid-area: 1 / 2 / 2 / 3;
}

/* Critical Infra: row 1, col 2 */
.mosaic-mid-2 {
  grid-area: 2 / 2 / 3 / 3;
}

/* Banking: row 2, col 2 */
.mosaic-bot-1 {
  grid-area: 3 / 1 / 4 / 2;
}

/* Traffic: row 3, col 1 */
.mosaic-bot-2 {
  grid-area: 3 / 2 / 4 / 3;
}

/* Building: row 3, col 2 */


/* ============================================================
   PRODUK BARU
   Horizontal slider with < > arrows, exactly like Dahua
   ============================================================ */
.produk-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.produk-slider {
  display: flex;
  gap: 0;
  overflow: hidden;
  flex: 1;
}

.prod-card {
  flex: 0 0 25%;
  /* 4 cards visible */
  padding: 20px 24px 24px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
  transition: background .2s;
}

.prod-card:last-child {
  border-right: none;
}

.prod-card:hover {
  background: #f9f9f9;
}

.prod-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.prod-img img {
  max-height: 140px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform .3s;
}

.prod-card:hover .prod-img img {
  transform: scale(1.05);
}

.prod-model {
  font-size: 13.5px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.prod-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 36px;
}

.prod-detail {
  font-size: 13px;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}

.prod-detail:hover {
  color: #0d2c4e;
}

/* Arrows (same style as Dahua's < >) */
.prod-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .18s;
  background: #fff;
}

.prod-arrow:hover {
  background: #0d2c4e;
  color: #fff;
  border-color: #0d2c4e;
}

.prod-arrow:disabled {
  opacity: .3;
  pointer-events: none;
}


/* ============================================================
   BERITA & PERISTIWA
   Two-column: featured blog left, sidebar right
   ============================================================ */
.berita-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Featured */
.berita-featured {
  border: 1px solid #e8e8e8;
  background: #fff;
}

.bf-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #111;
}

.bf-img-wrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.berita-featured:hover .bf-img-wrap>img {
  transform: scale(1.04);
}

.bf-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #e21a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}

.bf-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
}

.bf-caption-title {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0d2c4e;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 255, 255, .8);
}

.bf-meta {
  padding: 14px 16px 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bf-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333;
}

.bf-date {
  font-size: 11.5px;
  color: #999;
}

.bf-headline {
  padding: 0 16px 18px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.55;
}

/* Sidebar */
.berita-sidebar {
  border: 1px solid #e8e8e8;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.bs-divider {
  height: 1px;
  background: #eee;
  margin: 0 16px;
}

.bs-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 16px;
  transition: background .18s;
  flex: 1;
}

.bs-item:hover {
  background: #f9f9f9;
}

.bs-img {
  height: 80px;
  overflow: hidden;
  border-radius: 2px;
  background: #ddd;
}

.bs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.bs-item:hover .bs-img img {
  transform: scale(1.05);
}

.bs-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bs-text p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

.bs-item:hover .bs-text p {
  color: #0d2c4e;
}


/* ============================================================
   FOOTER
   Dark grey, exactly like Dahua
   ============================================================ */
.footer {
  background: #383838;
  color: #ccc;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 20px 36px;
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 20px;
}

/* Newsletter column */
.footer-nl-label {
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-nl-form {
  display: flex;
  margin-bottom: 10px;
}

.footer-nl-form input {
  flex: 1;
  height: 34px;
  background: #fff;
  border: none;
  padding: 0 10px;
  font-size: 13px;
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  outline: none;
}

.footer-nl-form button {
  height: 34px;
  padding: 0 16px;
  background: #0d2c4e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
  font-family: 'Noto Sans', sans-serif;
}

.footer-nl-form button:hover {
  background: #1a4070;
}

.footer-nl-note {
  font-size: 11.5px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-nl-link {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}

.footer-nl-link:hover {
  color: #ddd;
}

/* Footer columns */
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col li a {
  font-size: 12px;
  color: #999;
  transition: color .15s;
}

.footer-col li a:hover {
  color: #fff;
}

.footer-col li a em {
  font-style: italic;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-brand span {
  font-size: 12px;
  color: #888;
}

.footer-socials {
  display: flex;
  gap: 6px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #555;
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .18s;
}

.footer-socials a[aria-label="Facebook"]:hover {
  background: #1877f2;
  color: #fff;
}

.footer-socials a[aria-label="YouTube"]:hover {
  background: #e00;
  color: #fff;
}

.footer-socials a[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

.footer-socials a[aria-label="TikTok"]:hover {
  background: #010101;
  color: #fff;
}

.footer-socials a[aria-label="Maps"]:hover {
  background: #4285f4;
  color: #fff;
}


/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .45);
  transition: all .2s;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .6);
}


/* ============================================================
   ABOUT STRIP
   Clean white bar: teks kiri + 4 angka kanan
   ============================================================ */
.about-strip {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text side */
.about-text h2 {
  font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0d2c4e;
  margin-bottom: 14px;
  padding-bottom: 12px;
  display: inline-block;
}

.about-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0d2c4e;
  border-bottom: 1.5px solid #0d2c4e;
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}

.about-link:hover {
  color: #e21a1a;
  border-color: #e21a1a;
}

/* Stats side */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 22px 10px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.about-stat:nth-child(2) {
  border-right: none;
}

.about-stat:nth-child(3) {
  border-bottom: none;
}

.about-stat:nth-child(4) {
  border-right: none;
  border-bottom: none;
}

.about-stat strong {
  display: block;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0d2c4e;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 12.5px;
  color: #888;
}

/* About responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-stat {
    border-bottom: none;
  }

  .about-stat:last-child {
    border-right: none;
  }

  .about-stat:nth-child(3) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(2) {
    border-bottom: 1px solid #e8e8e8;
  }

  .about-stat:nth-child(2),
  .about-stat:nth-child(4) {
    border-right: none;
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(3) {
    border-right: 1px solid #e8e8e8;
  }

  .about-stat:nth-child(3) {
    border-bottom: none;
  }
}

/* ============================================================
   TENTANG KAMI PAGE STYLES
   ============================================================ */
.about-page-hero {
  position: relative;
  height: 400px;
  margin-top: 60px;
  overflow: hidden;
}

.about-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 78, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.about-page-hero-overlay h1 {
  color: #fff;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.about-page-hero-overlay p {
  color: #fff;
  font-size: 18px;
  max-width: 600px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-story-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-vm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.vm-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: #f0f4f8;
  color: #0d2c4e;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.vm-card h3 {
  font-size: 22px;
  color: #0d2c4e;
  margin-bottom: 15px;
}

.vm-card p {
  color: #666;
  line-height: 1.7;
}

.about-values-sec {
  max-width: 1280px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-item i {
  font-size: 40px;
  color: #e21a1a;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.value-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}


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

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .solusi-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .mosaic-big-left {
    grid-area: 1 / 1 / 2 / 2;
  }

  .mosaic-tall-right {
    grid-area: 1 / 2 / 4 / 3;
  }

  .mosaic-mid-1 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .mosaic-mid-2 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .mosaic-bot-1,
  .mosaic-bot-2 {
    display: none;
  }

  .prod-card {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 900px) {

  .about-story-inner,
  .about-vm-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-lang {
    display: none;
  }

  .hero {
    height: auto;
  }

  .hl-title {
    font-size: 56px;
  }

  .slide-hotline-left {
    width: 38%;
  }

  .solusi-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .prod-card {
    flex: 0 0 50%;
  }

  .berita-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero-overlay h1 {
    font-size: 32px;
  }

  .about-page-hero-overlay p {
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .slide-bg-img {
    height: auto;
  }

  .slide-hotline {
    flex-direction: column;
    height: auto;
  }

  .slide-hotline-left {
    width: 100%;
    height: 120px;
    padding: 16px 20px 0;
  }

  .hl-title {
    font-size: 44px;
    position: static;
  }

  .slide-hotline-right {
    padding: 20px;
  }

  .hl-contacts {
    flex-direction: column;
  }

  .solusi-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }

  .mosaic-big-left,
  .mosaic-tall-right,
  .mosaic-mid-1,
  .mosaic-mid-2,
  .mosaic-bot-1,
  .mosaic-bot-2 {
    grid-area: auto;
    display: block;
  }

  .prod-card {
    flex: 0 0 100%;
  }

  .sb-title {
    font-size: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Mobile nav open state (Sidebar) */
@media (max-width: 900px) {
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    visibility: hidden;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    align-items: flex-start;
  }

  .nav-links.mobile-open {
    left: 0;
    visibility: visible;
  }

  .sidebar-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }

  .sidebar-logo {
    height: 30px;
    object-fit: contain;
  }

  .sidebar-close {
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .sidebar-close:hover {
    color: #e21a1a;
  }

  .nav-links>li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f5f5f5;
  }

  .nav-links>li>a {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    display: block;
  }

  .sidebar-overlay {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}