/* ═══════════════════════════════════════════════
border-1.css — Hero
   ═══════════════════════════════════════════════ */

:root {
  --green-hero:  #0d3d22;
  --green-dark:  #145228;
  --white:       #ffffff;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── SECTION WRAPPER ───────────────────────────── */
.border-1 {
  width: 100%;
  padding: 80px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

/* ── CARD ──────────────────────────────────────── */
.border-1__card {
  position: relative;
  width: 100%;
  max-width: 1160px;
  border-radius: 300px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 80px 52px;
  background: var(--green-hero);
}

/* Clip hanya untuk bg image + overlay */
.border-1__clip {
  position: absolute;
  inset: 0;
  border-radius: 300px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.border-1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.border-1__clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,82,40,0.1) 0%,
    rgba(20,82,40,0.5) 100%
  );
}

/* ── CONTENT ───────────────────────────────────── */
.border-1__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeUp 0.65s ease both;
}

.border-1__title {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 900px;
  letter-spacing: -0.01em;
}

.border-1__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* ── BUTTONS ───────────────────────────────────── */
.border-1__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.65s 0.15s ease both;
}

.border-1__btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  border: 2.5px solid var(--white);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.border-1__btn--primary {
  background: var(--white);
  color: var(--green-dark);
  min-width: 270px;
}

.border-1__btn--secondary {
  background: transparent;
  color: var(--white);
  min-width: 270px;
}

.border-1__btn:active {
  transform: translateY(0);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-14px); }
}

/* ══════════════════════════════════════════════
     SECTION airport-02 
     ══════════════════════════════════════════════ */
 
/* ── SECTION ───────────────────────────────────── */
.airport02 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 80px;
}
 
.airport02__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
 
/* ════════════════════════════════════════════════
   KIRI — heading + desc
   ════════════════════════════════════════════════ */
.airport02__left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.airport02__left.visible { opacity: 1; transform: translateX(0); }
 
.airport02__title {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 24px;
}
 
.airport02__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: #444;
  line-height: 1.80;
  text-align: justify;          /* justified seperti di desain */
  hyphens: auto;
}
 
/* ════════════════════════════════════════════════
   KANAN — 2×2 stat grid
   ════════════════════════════════════════════════ */
.airport02__right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}
 
.airport02__right.visible { opacity: 1; transform: translateX(0); }
 
.airport02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
/* ── STAT CARD ─────────────────────────────────── */
.airport02__stat {
  background: #eef4ef;
  border-radius: 8px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
 
.airport02__stat:hover {
  box-shadow: 0 6px 24px rgba(26, 77, 46, 0.12);
  transform: translateY(-3px);
}
 
/* Number / value */
.airport02__stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1;
  letter-spacing: -0.02em;
}
 
/* Label */
.airport02__stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.3;
}
 
/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .airport02 { padding: 56px 28px 64px; }
  .airport02__inner { gap: 48px; }
  .airport02__stat { padding: 28px 22px 24px; }
}
 
@media (max-width: 740px) {
  .airport02 { padding: 44px 20px 52px; }
  .airport02__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .airport02__left  { transform: translateY(20px); }
  .airport02__right { transform: translateY(20px); transition-delay: 0.08s; }
  .airport02__desc  { text-align: left; hyphens: none; }
}
 
@media (max-width: 480px) {
  .airport02 { padding: 32px 14px 40px; }
  .airport02__inner { gap: 28px; }
  .airport02__stat { padding: 22px 18px 20px; border-radius: 6px; }
  .airport02__stat-number { font-size: 1.8rem; }
  .airport02__stat-label  { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════
   CARGO 3 — BORN IN THE CLOUD
   ═══════════════════════════════════════════════ */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.cargo3{
    display:grid;
    grid-template-columns:54% 48%;
    min-height:740px;
    width:100%;
    overflow:hidden;
}

/* ─────────────────────────
   IMAGE SIDE
───────────────────────── */
.cargo3__video{
    position:relative;
    overflow:hidden;
    width:100%;
    min-height:740px;
    background:#000;
}

.cargo3__video iframe{
    position:absolute;
    top:50%;
    left:50%;

    width:300%;
    height:100%;

    transform:translate(-50%, -50%);

    border:0;
    pointer-events:none;
}

.cargo3__video::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.15),
            rgba(0,0,0,.35)
        );

    pointer-events:none;
}

/* ─────────────────────────
   GREEN PANEL
───────────────────────── */
.cargo3__panel{
    position:relative;
    background:#12452f;

    display:flex;
    flex-direction:column;
    justify-content:center;

    gap:32px;

    padding:90px 0px 90px 250px;

    clip-path:polygon(
        20% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    margin-left:-200px;

    z-index:2;

    opacity:0;
    transform:translateX(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.cargo3__panel.visible{
    opacity:1;
    transform:translateX(0);
}

/* ─────────────────────────
   TITLE
───────────────────────── */
.cargo3__title{
    font-family:'Poppins',sans-serif;
    font-size: 48px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
    max-width:600px;
}

/* ─────────────────────────
   DESCRIPTION
───────────────────────── */
.cargo3__desc{
    max-width:560px;

    font-family:'Poppins',sans-serif;
    font-size: 16px;
    line-height:1.8;
    text-align:justify;

    color:rgba(255,255,255,.82);
}

/* ═══════════════════════════════════════════════
   TABLET
   ═══════════════════════════════════════════════ */

@media (max-width:1024px){

    .cargo3{
        min-height:650px;
    }

    .cargo3__panel{
        padding:70px 60px 70px 120px;
    }

    .cargo3__title{
        font-size:2.4rem;
    }
}

/* ═══════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════ */

@media (max-width:740px){

    .cargo3{
        grid-template-columns:1fr;
        grid-template-rows:280px auto;
    }

    .cargo3__panel{
        margin-left:0;

        clip-path:none;

        padding:50px 36px 60px;

        transform:translateY(30px);
    }

    .cargo3__panel.visible{
        transform:translateY(0);
    }

    .cargo3__title{
        font-size:2rem;
    }

    .cargo3__desc{
        font-size:.95rem;
    }
}

@media (max-width:480px){

    .cargo3{
        grid-template-rows:220px auto;
    }

    .cargo3__panel{
        padding:40px 24px 50px;
        gap:24px;
    }

    .cargo3__title{
        font-size:1.7rem;
    }

    .cargo3__desc{
        font-size:.88rem;
        line-height:1.7;
    }
}

/* ═══════════════════════════════════════════════
   border-2.css
   Government-Grade Border Exchange
   ═══════════════════════════════════════════════ */

/* ── SECTION ─────────────────────────────────── */
.border2{
  width:100%;
  background:#fff;
  padding:80px 40px;
}

.border2__inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* ── HEADING ─────────────────────────────────── */
.border2__head{
  margin-bottom:8px;
  opacity:0;
  transform:translateY(16px);
  transition:opacity .5s ease, transform .5s ease;
}

.border2__head.visible{
  opacity:1;
  transform:translateY(0);
}

.border2__title{
  font-family:'Poppins',sans-serif;
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-weight:700;
  color:#1a1a1a;
  line-height:1.2;
  margin-bottom:10px;
}

.border2__title-line{
  width:36px;
  height:3px;
  background:#1a5c2a;
  border-radius:999px;
}

/* ── GRID LAYOUT ─────────────────────────────── */
.border2__row1,
.border2__row2{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}

/* ── CARD ────────────────────────────────────── */
.border2__card{
  background:#f0f5f1;
  border:1.5px solid #d4e0d6;
  border-radius:10px;

  padding:28px;
  min-height:260px;

  display:flex;
  flex-direction:column;

  opacity:0;
  transform:translateY(24px);

  transition:
    opacity .55s ease,
    transform .55s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.border2__card.visible{
  opacity:1;
  transform:translateY(0);
}

.border2__card:hover{
  border-color:#1a5c2a;
  box-shadow:0 10px 30px rgba(26,92,42,.08);
  transform:translateY(-4px);
}

/* ── TITLE ───────────────────────────────────── */
.border2__card-title{
  font-family:'Poppins',sans-serif;
  font-size:1rem;
  font-weight:600;
  color:#1a5c2a;
  line-height:1.45;

  min-height:60px;

  display:flex;
  align-items:flex-start;

  margin-bottom:12px;
}

/* ── DESCRIPTION ─────────────────────────────── */
.border2__card-desc{
  font-family:'Poppins',sans-serif;
  font-size:.875rem;
  font-weight:400;
  color:#555;
  line-height:1.75;

  flex:1;
  margin:0;
}

/* ═══════════════════════════════════════════════
   TABLET
   ═══════════════════════════════════════════════ */
@media (max-width:1024px){

  .border2{
    padding:60px 28px;
  }

  .border2__row1,
  .border2__row2{
    grid-template-columns:repeat(2,1fr);
  }

  .border2__card{
    min-height:240px;
  }

}

/* ═══════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width:740px){

  .border2{
    padding:48px 20px;
  }

  .border2__row1,
  .border2__row2{
    grid-template-columns:1fr;
    gap:14px;
  }

  .border2__card{
    min-height:auto;
    padding:24px 20px;
  }

  .border2__card-title{
    min-height:auto;
    margin-bottom:10px;
  }

}

/* ═══════════════════════════════════════════════
   SMALL MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width:480px){

  .border2{
    padding:40px 16px;
  }

  .border2__title{
    font-size:1.5rem;
  }

  .border2__card-title{
    font-size:.95rem;
  }

  .border2__card-desc{
    font-size:.84rem;
    line-height:1.7;
  }

}

/* ═══════════════════════════════════════════════
   border-3.css — "Security & Data Sovereignty"
   Parallax BG, text+features kiri | video card kanan
   Sovereignty Status badge overlap bawah video
   Breakpoints: 1024 | 740 | 480
   ═══════════════════════════════════════════════ */

/* ── SECTION ───────────────────────────────────── */
.border3 {
  position: relative;
  width: 100%;
  padding: 88px 40px 96px;

  background-image: url('assets/images/airport-border.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #dce8dc;
}

/* very light green tint overlay */
.border3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230, 240, 232, 0.82);
  pointer-events: none;
  z-index: 0;
}

.border3__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ════════════════════════════════════════════════
   KIRI — heading + feature list
   ════════════════════════════════════════════════ */
.border3__left {
  display: flex;
  flex-direction: column;
  gap: 40px;

  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.border3__left.visible { opacity: 1; transform: translateX(0); }

/* Heading */
.border3__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

/* Feature items */
.border3__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.border3__feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* Icon box */
.border3__feat-icon-box {
  width: 44px;
  height: 44px;
  background: #1a4d2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.border3__feat-icon-box svg {
  width: 22px;
  height: 22px;
}

/* Text */
.border3__feat-body {
  display: flex;
  flex-direction: column;
}

.border3__feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 6px;
}

.border3__feat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.70;
}

/* ════════════════════════════════════════════════
   KANAN — video card + sovereignty badge
   ════════════════════════════════════════════════ */
.border3__right {
  position: relative;

  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.border3__right.visible { opacity: 1; transform: translateX(0); }

/* Outer card frame (light green, rounded) */
.border3__video-frame {
  background: #d4e4d4;
  border-radius: 20px;
  padding: 16px;
  position: relative;
}

/* Inner video area */
.border3__video-inner {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0d1f2d;
}

.border3__video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Play button */
.border3__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.border3__play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.90);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.border3__play:hover .border3__play-btn {
  transform: scale(1.08);
  background: #ffffff;
}

.border3__play-btn svg {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
  margin-left: 3px;
}

/* ── SOVEREIGNTY BADGE ─────────────────────────── */
/* Overlaps bottom-left of the video frame */
.border3__badge {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #c8b800;    /* gold/yellow */
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 230px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  z-index: 5;

  /* entrance animation */
  animation: badgeSlide 0.7s 0.5s ease both;
}

@keyframes badgeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.border3__badge-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.border3__badge-icon {
  width: 18px;
  height: 18px;
  color: #1a4d2e;
}

.border3__badge-icon svg { width: 100%; height: 100%; }

.border3__badge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.border3__badge-row {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #2a2a2a;
  line-height: 1.8;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .border3 { padding: 72px 28px 80px; }
  .border3__inner { gap: 48px; }
  .border3__feat-icon-box { width: 40px; height: 40px; }
}

@media (max-width: 740px) {
  .border3 {
    padding: 56px 20px 72px;
    background-attachment: scroll;
  }

  .border3__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .border3__left  { transform: translateY(24px); }
  .border3__right { transform: translateY(24px); }

  .border3__badge {
    position: static;
    margin-top: 24px;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .border3 { padding: 44px 14px 56px; }
  .border3__inner { gap: 36px; }
  .border3__title { font-size: 1.4rem; }
  .border3__feat-title { font-size: 0.95rem; }
  .border3__feat-desc  { font-size: 0.84rem; }
  .border3__play-btn { width: 50px; height: 50px; }
  .border3__badge { min-width: 200px; padding: 12px 14px; }
}

/* ══════════════════════════════════════════════
SECTION Border-4 — Centered CTA
══════════════════════════════════════════════ */ 

.border-4 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 250px;
}
 
.border-4__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
 
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.border-4__inner.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.border-4__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1.2;
  margin-bottom: 16px;
}
 
.border-4__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.border-4__text {
  font-size: 12px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.7;
  margin-top: 30px;
} 
 
.border-4__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
 
.border-4__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  min-width: 240px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}
 
.border-4__btn--primary {
  background: #1a5c2a;
  color: #ffffff;
  border: 2px solid #1a5c2a;
}
 
.border-4__btn--primary:hover {
  background: #0f3d1a;
  border-color: #0f3d1a;
  transform: translateY(-2px);
}
 
/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .border-4 { padding: 80px 28px 200px; }
}
 
@media (max-width: 740px) {
  .border-4 { padding: 60px 20px 120px; }
  .border-4__btn { min-width: 200px; padding: 16px 24px; }
}
 
@media (max-width: 480px) {
  .border-4 { 
    padding: 60px 15px 90px; 
  }
  .border-4__title { font-size: 1.5rem; }
  .border-4__actions { flex-direction: column; width: 100%; }
  .border-4__btn { width: 100%; min-width: unset; padding: 15px 20px; font-size: 0.88rem; }
}