/* ═══════════════════════════════════════════════
ground-1.css — Hero
   ═══════════════════════════════════════════════ */

:root {
  --green-hero:  #0d3d22;
  --green-dark:  #145228;
  --white:       #ffffff;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── SECTION WRAPPER ───────────────────────────── */
.ground-1 {
  width: 100%;
  padding: 80px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

/* ── CARD ──────────────────────────────────────── */
.ground-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 */
.ground-1__clip {
  position: absolute;
  inset: 0;
  border-radius: 300px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ground-1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.ground-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 ───────────────────────────────────── */
.ground-1__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeUp 0.65s ease both;
}

.ground-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;
}

.ground-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 ───────────────────────────────────── */
.ground-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;
}

.ground-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;
}

.ground-1__btn--primary {
  background: var(--white);
  color: var(--green-dark);
  min-width: 270px;
}

.ground-1__btn--secondary {
  background: transparent;
  color: var(--white);
  min-width: 270px;
}

.ground-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;
    }
}

/* ══════════════════════════════════════════════
     SECTION airport-04 
     ══════════════════════════════════════════════ */
 
/* ── SECTION ───────────────────────────────────── */
.airport04 {
  width: 100%;
  background: #ffffff;
  padding: 160px 40px 80px;
}
 
.airport04__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* ── SHARED CARD ───────────────────────────────── */
.airport04__card {
  background: #eef4ef;
  border: 1.5px solid #1a5c2a;
  border-radius: 8px;
  padding: 32px 32px 60px;    /* tall bottom padding = card tinggi sesuai desain */
  display: flex;
  flex-direction: column;
 
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.28s ease;
}
 
.airport04__card.visible { opacity: 1; transform: translateY(0); }
 
.airport04__card:hover {
  box-shadow: 0 8px 28px rgba(26, 92, 42, 0.14);
  transform: translateY(-3px);
}
.airport04__card.visible:hover { transform: translateY(-3px); }
 
/* ── CARD TITLE ────────────────────────────────── */
.airport04__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}
 
/* ── CARD DESC ─────────────────────────────────── */
.airport04__card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
  line-height: 1.70;
}
 
/* ══════════════════════════════════════════════
   ROW 1: text kiri | FIDS kanan
   ══════════════════════════════════════════════ */
.airport04__row1 {
  display: grid;
  grid-template-columns: 92fr 45fr;
  gap: 20px;
  align-items: stretch;
}
 
/* ── LEFT TEXT ─────────────────────────────────── */
.airport04__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
 
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.airport04__text.visible { opacity: 1; transform: translateX(0); }
 
.airport04__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}
 
.airport04__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  text-align: justify;
}
 
/* ══════════════════════════════════════════════
   ROW 2: BRS | AOC | KIOSK
   ══════════════════════════════════════════════ */
.airport04__row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
/* stagger cards */
.airport04__card:nth-child(1) { transition-delay: 0.00s; }
.airport04__card:nth-child(2) { transition-delay: 0.08s; }
.airport04__card:nth-child(3) { transition-delay: 0.16s; }
 
/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .airport04 { padding: 56px 28px 64px; }
  .airport04__card { padding: 26px 26px 50px; }
  .airport04__text { padding-right: 8px; }
}
 
@media (max-width: 740px) {
  .airport04 { padding: 44px 20px 52px; }
 
  .airport04__row1 { grid-template-columns: 1fr; }
  .airport04__row2 { grid-template-columns: 1fr; gap: 14px; }
 
  .airport04__text {
    transform: translateY(20px);
    padding-right: 0;
  }
 
  .airport04__card { padding: 24px 22px 40px; }
}
 
@media (max-width: 480px) {
  .airport04 { padding: 32px 14px 40px; }
  .airport04__title { font-size: 1.3rem; }
  .airport04__card { padding: 20px 18px 36px; border-radius: 6px; }
  .airport04__card-title { font-size: 1rem; }
  .airport04__card-desc  { font-size: 0.84rem; }
}

/* ══════════════════════════════════════════════
     SECTION ground-05 — Baggage Reconciliation System (BRS)
     Row 1: 3 equal cards
     Row 2: 2 wide cards (50/50)
     Row 3: 3 equal cards
     ══════════════════════════════════════════════ */
/* ── SECTION ───────────────────────────────────── */
.ground05 {
  width: 100%;
  background: #ffffff;
  padding: 72px 40px 80px;
}
 
.ground05__inner {
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ── HEADING ───────────────────────────────────── */
.ground05__head {
  text-align: center;
  margin-bottom: 48px;
 
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ground05__head.visible { opacity: 1; transform: translateY(0); }
 
.ground05__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #1a5c2a;   /* heading tetap hijau di bg putih */
  line-height: 1.2;
  margin-bottom: 10px;
}
 
.ground05__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}
 
/* ── GRID ROWS ─────────────────────────────────── */
.ground05__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
 
.ground05__row:last-child { margin-bottom: 0; }
 
.ground05__row--3 { grid-template-columns: repeat(3, 1fr); }
.ground05__row--2 { grid-template-columns: repeat(2, 1fr); }
 
/* ── CARD ──────────────────────────────────────── */
.ground05__card {
  background: #1a4d2e;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
 
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.28s ease;
}
 
.ground05__card.visible { opacity: 1; transform: translateY(0); }
 
.ground05__card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  transform: translateY(-3px);
}
.ground05__card.visible:hover { transform: translateY(-3px); }
 
/* stagger within each row */
.ground05__row--3 .ground05__card:nth-child(1) { transition-delay: 0.00s; }
.ground05__row--3 .ground05__card:nth-child(2) { transition-delay: 0.08s; }
.ground05__row--3 .ground05__card:nth-child(3) { transition-delay: 0.16s; }
.ground05__row--2 .ground05__card:nth-child(1) { transition-delay: 0.00s; }
.ground05__row--2 .ground05__card:nth-child(2) { transition-delay: 0.10s; }
 
/* ── ICON ──────────────────────────────────────── */
.ground05__icon {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.ground05__icon svg { width: 100%; height: 100%; }
 
/* ── CARD TITLE ────────────────────────────────── */
.ground05__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}
 
/* ── CARD DESC ─────────────────────────────────── */
.ground05__card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.68;
}
 
/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .ground05 { padding: 56px 28px 64px; }
  .ground05__card { padding: 24px 22px 40px; }
}
 
@media (max-width: 740px) {
  .ground05 { padding: 44px 20px 52px; }
  .ground05__row--3,
  .ground05__row--2 { grid-template-columns: 1fr; }
  .ground05__card { padding: 22px 20px 36px; }
}
 
@media (max-width: 480px) {
  .ground05 { padding: 32px 14px 40px; }
  .ground05__head { margin-bottom: 32px; }
  .ground05__card { padding: 18px 16px 30px; border-radius: 8px; }
  .ground05__card-title { font-size: 0.95rem; }
  .ground05__card-desc  { font-size: 0.84rem; }
}

/* ══════════════════════════════════════════════
     SECTION ground-4 — Centered CTA
══════════════════════════════════════════════ */ 

.ground-4 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 250px;
}
 
.ground-4__inner {
  max-width: 800px;
  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;
}
 
.ground-4__inner.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.ground-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;
}
 
.ground-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: 650px;
}

.ground-4__text {
  font-size: 12px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.7;
  margin-top: 30px;
} 
 
.ground-4__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
 
.ground-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;
}
 
.ground-4__btn--primary {
  background: #1a5c2a;
  color: #ffffff;
  border: 2px solid #1a5c2a;
}
 
.ground-4__btn--primary:hover {
  background: #0f3d1a;
  border-color: #0f3d1a;
  transform: translateY(-2px);
}
 
.ground-4__btn--secondary {
  background: #ffffff;
  color: #1a5c2a;
  border: 2px solid #1a5c2a;
}
 
.ground-4__btn--secondary:hover {
  background: #1a5c2a;
  color: #ffffff;
  transform: translateY(-2px);
}
 
/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .ground-4 { padding: 80px 28px 200px; }
}
 
@media (max-width: 740px) {
  .ground-4 { padding: 60px 20px 120px; }
  .ground-4__btn { min-width: 200px; padding: 16px 24px; }
}
 
@media (max-width: 480px) {
  .ground-4 { 
    padding: 60px 15px 90px; 
  }
  .ground-4__title { font-size: 1.5rem; }
  .ground-4__actions { flex-direction: column; width: 100%; }
  .ground-4__btn { width: 100%; min-width: unset; padding: 15px 20px; font-size: 0.88rem; }
}