:root{
  --bg: #050b17;
  --bg2:#070f22;
  --card:#0b1633;
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --line: rgba(234,240,255,.12);
  --accent:#3da8ff;
  --accent2:#6ee7ff;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(61,168,255,.25), transparent 55%),
    radial-gradient(900px 500px at 20% 30%, rgba(110,231,255,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(100% - 40px, var(--max));
  margin:0 auto;
}

/* Nav */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,11,23,.65);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  width:34px; height:34px;
  border-radius:10px;
}
.brand__text{ font-weight:700; letter-spacing:.2px; }

.nav__links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__links a{
  font-weight:600;
  font-size:14px;
  color:rgba(234,240,255,.85);
}
.nav__links a:hover{ color:#fff; }

.nav__burger{
  display:none;
  width:44px; height:40px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:14px;
  padding:8px 10px;
  cursor:pointer;
}
.nav__burger span{
  display:block;
  height:2px;
  margin:5px 0;
  background:rgba(234,240,255,.85);
  border-radius:2px;
}

.nav__mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 16px;
}
.nav__mobile a{
  display:block;
  padding:10px 0;
  color:rgba(234,240,255,.9);
  font-weight:600;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(61,168,255,.25);
  background:linear-gradient(180deg, rgba(61,168,255,.22), rgba(61,168,255,.10));
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
  box-shadow: 0 10px 30px rgba(61,168,255,.15);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(61,168,255,.55);
}
.btn--ghost{
  background:transparent;
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{ border-color: rgba(234,240,255,.25); }
.btn--small{ padding:10px 14px; border-radius:12px; font-size:13px; }

/* Hero */
.hero{
  padding:64px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:rgba(234,240,255,.85);
  font-weight:600;
  font-size:13px;
}
.hero__title{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.hero__subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 12px;
  background:rgba(255,255,255,.02);
}
.stat__num{ font-weight:800; letter-spacing:.2px; }
.stat__label{ color:rgba(234,240,255,.75); font-size:12px; margin-top:4px; }

.hero__visual{
  position:relative;
  min-height: 360px;
}
.mock{
  position:relative;
  border-radius: 26px;
  border:1px solid rgba(234,240,255,.14);
  background:rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateZ(0);
}
.mock img{
  width:100%;
  height:auto;
  display:block;
}
.glow{
  position:absolute;
  inset:-40px -40px auto auto;
  width:260px;
  height:260px;
  background: radial-gradient(circle at 30% 30%, rgba(110,231,255,.25), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

/* Sections */
.section{
  padding:70px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}
.section__head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.4px;
}
.section__head p{
  margin:0;
  max-width: 560px;
  color:var(--muted);
  line-height:1.6;
}

/* Cards + Grid */
.grid{
  display:grid;
  gap:16px;
}
.apps__grid{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  border:1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.card__img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom:1px solid rgba(234,240,255,.10);
}
.card__body{
  padding:16px 16px 18px;
}
.card__body h3{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:-.2px;
}
.card__body p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.app{
  transition: transform .18s ease, border-color .18s ease;
}
.app:hover{
  transform: translateY(-2px);
  border-color: rgba(61,168,255,.35);
}
.card--cta .card__body{
  padding:22px;
}
.card--cta{
  background:
    radial-gradient(600px 220px at 20% 20%, rgba(61,168,255,.22), transparent 60%),
    rgba(255,255,255,.02);
  display:flex;
  align-items:center;
}

/* Steps */
.steps{
  position:relative;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:14px;
}
.step{
  padding:16px 14px;
  border:1px solid rgba(234,240,255,.12);
  border-radius:18px;
  background: rgba(255,255,255,.02);
}
.step__dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(110,231,255,.08);
  margin-bottom:10px;
}
.step h3{
  margin:0 0 6px;
  font-size:14px;
}
.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

/* Marquee (Partners) */
.marquee{
  border:1px solid rgba(234,240,255,.12);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.marquee__track{
  display:flex;
  width:max-content;
  animation: marquee 20s linear infinite;
}
.marquee:hover .marquee__track{ animation-play-state: paused; }

.marquee__group{
  display:flex;
  align-items:center;
  gap:34px;
  padding:18px 28px;
}
.marquee__group img{
  height:34px;
  width:auto;
  opacity:.9;
  filter: grayscale(100%) contrast(1.05);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.marquee__group img:hover{
  opacity:1;
  filter: grayscale(0%) contrast(1.05);
  transform: translateY(-1px);
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Contact */
.section--contact{
  border-top:1px solid var(--line);
  background: radial-gradient(900px 500px at 20% 0%, rgba(61,168,255,.14), transparent 60%);
}
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact__mini{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.mini{
  border:1px solid rgba(234,240,255,.12);
  border-radius:16px;
  padding:12px 12px;
  background: rgba(255,255,255,.02);
}
.mini__k{ display:block; font-size:12px; color:rgba(234,240,255,.65); }
.mini__v{ display:block; font-weight:700; margin-top:3px; }

.form{
  padding:18px;
}
label{ display:block; margin-bottom:12px; }
label span{
  display:block;
  font-size:12px;
  color:rgba(234,240,255,.75);
  margin:0 0 6px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(61,168,255,.55);
  box-shadow: 0 0 0 6px rgba(61,168,255,.10);
}
textarea{ resize:vertical; min-height:120px; }

.muted{ color:var(--muted); }

/* Footer */
.footer{
  padding:42px 0 60px;
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer__brand img{
  width:34px; height:34px;
  border-radius:10px;
}
.footer__map{
  overflow:hidden;
}
.footer__map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
  }

  .hero__visual{
    order: -1;
    margin-bottom: 24px;
  }

  .hero__copy{
    order: 1;
  }
}


@media (max-width: 720px){
  .nav__links{ display:none; }
  .nav__burger{ display:block; }
  .apps__grid{ grid-template-columns: 1fr; }
}

/* Header yang kemas */
.services__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.services__head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.4px;
}
.services__head p{
  margin:0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Grid steps */
.steps{
  display:grid;
  gap:14px;
}
.steps--5{
  grid-template-columns: repeat(5, 1fr);
}

/* Card step premium */
.step{
  position:relative;
  padding:18px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(61,168,255,.10), transparent 55%),
    rgba(255,255,255,.02);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-height: 150px;
}

.step:hover{
  transform: translateY(-2px);
  border-color: rgba(61,168,255,.35);
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(61,168,255,.14), transparent 55%),
    rgba(255,255,255,.03);
}

.step__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

/* Nombor kecil macam Apple */
.step__badge{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .8px;
  color: rgba(234,240,255,.70);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(0,0,0,.18);
}

/* Dot lebih kemas (glow halus) */
.step__dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--accent2);
  box-shadow:
    0 0 0 7px rgba(110,231,255,.08),
    0 0 22px rgba(110,231,255,.18);
}

.step h3{
  margin:0 0 8px;
  font-size: 15px;
  letter-spacing: -.2px;
}
.step p{
  margin:0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Responsive: 5 -> 3 -> 2 -> 1 */
@media (max-width: 1100px){
  .steps--5{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px){
  .services__head{
    flex-direction: column;
    align-items:flex-start;
  }
  .steps--5{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .steps--5{ grid-template-columns: 1fr; }
  .step{ min-height: unset; padding:16px; }
  .step p{ font-size: 13px; }
}

.step::before{
  content:"";
  position:absolute;
  left:16px; right:16px; top:14px;
  height:1px;
  background: rgba(234,240,255,.10);
}

/* Partners section */
.partners{
  padding: 70px 0;
}

/* Header: kiri tajuk, kanan subteks (mobile: turun bawah) */
.partners__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.partners__head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.4px;
}

.partners__head p{
  margin:0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Panel glass yang kemas */
.partners__panel{
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(900px 260px at 20% 10%, rgba(61,168,255,.10), transparent 55%),
    rgba(255,255,255,.02);
  box-shadow: 0 14px 44px rgba(0,0,0,.22);
}

/* Grid logo: auto-fit ikut bilangan (static) */
.partners__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items:center;
  gap: 18px;
}

/* Logo style: tinggi sekata, nampak korporat */
.partners__grid img{
  height: 34px;
  width: 100%;
  object-fit: contain;
  justify-self:center;

  opacity: .95;
  filter: none;              /* ✅ penting: jangan tukar warna logo */
  transition: transform .18s ease, opacity .18s ease;
}

.partners__grid img:hover{
  opacity: 1;
  transform: translateY(-1px);
}


/* Note bawah (optional) */
.partners__note{
  margin: 10px 0 0;
  color: rgba(234,240,255,.60);
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 820px){
  .partners__head{
    flex-direction: column;
    align-items:flex-start;
  }
  .partners__panel{ padding: 16px; }
  .partners__grid img{ height: 30px; }
}

@media (max-width: 520px){
  .partners{ padding: 52px 0; }
  .partners__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .partners__grid img{ height: 26px; }
}

/* ===== Our Team ===== 
.team__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.team__card{
  border:1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease;
}

.team__card:hover{
  transform: translateY(-2px);
  border-color: rgba(61,168,255,.30);
}

.team__img{
  width:100%;
  aspect-ratio: 4 / 3;          
  object-fit: cover;
  border-bottom:1px solid rgba(234,240,255,.10);
}

.team__body{
  padding:16px 16px 18px;
}

.team__name{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:-.2px;
}

.team__role{
  margin:0 0 8px;
  font-weight:700;
  color: rgba(234,240,255,.90);
  font-size:13.5px;
}

.team__edu{
  margin:0;
  color: var(--muted);
  font-size:13.5px;
  line-height:1.55;
}*/

/* Responsive */
@media (max-width: 980px){
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .team__grid{ grid-template-columns: 1fr; }
}

/* ===== Apps section: kemaskan mobile (letak PALING BAWAH) ===== */
@media (max-width: 720px){
  .section__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section__head h2{
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.6px;
    margin: 0;
  }

  .section__head p{
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
    color: rgba(234,240,255,.78);
  }

  .apps__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card{ border-radius: 20px; }

  .card__img{
    height: 170px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .card__body{ padding: 14px 14px 16px; }

  .card__body p{ font-size: 13.5px; }
}

@media (max-width: 720px){
  .section{ padding: 54px 0; }
}

/* =========================
   Animated gradient background (whole page)
   ========================= */
body{
  position: relative;
}

/* layer animasi (tak kacau content) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(61,168,255,.22), transparent 60%),
    radial-gradient(820px 520px at 85% 10%, rgba(110,231,255,.16), transparent 60%),
    radial-gradient(920px 560px at 75% 85%, rgba(61,168,255,.14), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  filter: saturate(1.05);
  animation: bgFloat 14s ease-in-out infinite alternate;
}

@keyframes bgFloat{
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-12px,0) scale(1.02); }
}

@media (prefers-reduced-motion: reduce){
  body::before{ animation: none; }
}


/* =========================
   Our Team (style macam Tenaga Pengajar)
   ========================= */

/* jadikan section team cerah + kemas */
.team.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}

/* panel putih “soft” untuk team */
.team__panel{
  border-radius: 24px;
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(255,255,255,.035);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  padding: 18px;
}

/* grid */
.team__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* card pastel (lebih cerah dari card lain) */
.team__card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(110,231,255,.12), rgba(61,168,255,.08)),
    rgba(255,255,255,.04);
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.team__card:hover{
  transform: translateY(-3px);
  border-color: rgba(110,231,255,.28);
  background:
    linear-gradient(135deg, rgba(110,231,255,.16), rgba(61,168,255,.10)),
    rgba(255,255,255,.05);
}

/* ruang atas untuk avatar + blob */
.team__avatar{
  width: 185px;
  height: 185px;
  margin: 30px auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: none;
  box-shadow: 
    0 12px 40px rgba(0,0,0,.45),
    0 0 0 6px rgba(61,168,255,.15);
}


.team__avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 50%;
  display:block;
}



/* blob belakang (macam contoh) */
.team__avatar::before{
  content:"";
  position: absolute;
  width: 185px;
  height: 185px;
  border-radius: 48% 52% 55% 45% / 55% 45% 55% 45%;
  background: conic-gradient(from 210deg,
    rgba(61,168,255,.55),
    rgba(110,231,255,.45),
    rgba(61,168,255,.35),
    rgba(110,231,255,.30));
  filter: blur(.2px);
  opacity: .0;
  transform: rotate(-10deg);
}

/* gambar orang */
.team__photo{
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 3;          /* 4:3 */
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.15);
}

/* body text */
.team__body{
  padding: 14px 16px 18px;
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(255,255,255,.10);
}

.team__name{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -.2px;
}

.team__role{
  margin: 0 0 8px;
  font-weight: 800;
  color: rgba(234,240,255,.92);
  font-size: 13.5px;
}

.team__edu{
  margin: 0;
  color: rgba(234,240,255,.78);
  font-size: 13.5px;
  line-height: 1.55;
}

/* responsive */
@media (max-width: 980px){
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .team__grid{ grid-template-columns: 1fr; }
  .team__panel{ padding: 14px; }
  .team__avatar{ min-height: 200px; }
}


/* =========================
   MOBILE POLISH (SPACING)
   ========================= */

/* 1) Tambah padding kiri/kanan + kemaskan rhythm mobile */
@media (max-width: 720px){
  /* container asal: 100% - 40px (kadang nampak rapat) */
  .container{
    width: min(100% - 28px, var(--max)); /* kiri/kanan lebih selesa */
  }

  /* Section spacing lebih kemas */
  .section{ padding: 54px 0; }
  .hero{ padding: 52px 0 18px; }

  /* Headline/intro tak terlalu rapat */
  .section__head{ gap: 10px; margin-bottom: 18px; }
  .section__head p{ font-size: 14px; line-height: 1.6; }

  /* Grid gaps konsisten */
  .grid{ gap: 14px; }
  .apps__grid{ gap: 14px; }

  /* Card padding nampak premium */
  .card__body{ padding: 14px 14px 16px; }

  /* Buttons tak melekat tepi */
  .hero__cta{ gap: 10px; }
  .btn{ width: auto; }
}

/* 2) Extra kecil (telefon sangat kecil) */
@media (max-width: 420px){
  .container{ width: min(100% - 24px, var(--max)); }
  .section{ padding: 48px 0; }
}

/* =========================
   CONTACT MOBILE ORDER FIX
   Form atas, contact bawah
   ========================= */
@media (max-width: 980px){
  .contact__grid{
    display:flex;
    flex-direction: column;
    gap: 14px;

    padding: 0 16px;     /* ruang kiri kanan */
    max-width: 560px;    /* elak stretch besar */
    margin: 0 auto;      /* center */
  }

  .contact__grid > form{ order: -1; }
  .contact__grid > div{ order: 1; }

  .form.card{
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }
}



  /* Mini contact cards kemas */
  .contact__mini{ gap: 10px; }
  .mini{ padding: 12px; }
}


/* ===== Mobile spacing polish (more left-right breathing room) ===== */
@media (max-width: 720px){
  .container{
    width: min(100% - 28px, var(--max)); /* ok & stabil */
  }
}


  /* jarak antara card / section lebih kemas */
  .grid{ gap: 18px; }
  .section{ padding: 56px 0; }

  /* bagi content dalam card rasa lapang */
  .card__body{ padding: 18px 18px 20px; }

  /* elak card nampak sempit sangat */
  .card{
    border-radius: 20px;
  }
}

/* kalau skrin terlalu kecil (contoh 360px), longgarkan sikit lagi */
@media (max-width: 420px){
  .container{
    width: min(100% - 52px, var(--max)); /* 26px kiri + 26px kanan */
  }
}


/* Floating WhatsApp button - bottom RIGHT */
.wa-float{
  position: fixed;
  right: 20px;     /* tukar dari left → right */
  bottom: 20px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
              /* warna rasmi WhatsApp */
  color: #fff;
  font-weight: 700;

  box-shadow: 0 18px 40px rgba(37,211,102,.35);
  border: none;

  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hover effect */
.wa-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(37,211,102,.45);
}

/* Mobile: icon sahaja (lebih clean) */
@media (max-width: 520px){
  .wa-float{
    padding: 14px;
  }
  .wa-float span{
    display: none;
  }
}

/* =========================
   GLOBAL MOBILE SYSTEM
   ========================= */

@media (max-width: 768px){

  /* Container uniform */
  .container{
    width: 100%;
    max-width: 520px;     /* elak terlalu stretch */
    margin: 0 auto;
    padding: 0 20px;      /* ruang kiri kanan konsisten */
  }

  /* Section spacing konsisten */
  .section{
    padding: 56px 0;
  }

  /* Headings */
  .section__head{
    margin-bottom: 20px;
    gap: 12px;
  }

  .section__head h2{
    font-size: 26px;
    line-height: 1.1;
  }

  .section__head p{
    font-size: 14px;
    line-height: 1.6;
  }

  /* Grid spacing */
  .grid{
    gap: 18px;
  }

  /* Card padding seragam */
  .card__body{
    padding: 18px;
  }

  /* Buttons breathing room */
  .btn{
    padding: 12px 18px;
  }

}
