/* ==== NAVBAR PALING ATAS ==== */
:root{
  --brand:#0ea5b8;           /* biru toska (sesuai hero) */
  --brand-dark:#0b7f93;
  --ink:#0f172a;
  --muted-ink:#334155;
}

.topbar{
  position: sticky;   /* nempel di atas saat discroll */
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.topbar .container{ width:min(1200px,92%); margin-inline:auto; }
.topbar__inner{
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
}

/* Logo */
.brandlogo{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .2px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brandlogo .cv{ opacity:.85; font-weight:800; }
.brandlogo .highlight{ color: var(--brand); margin-left:.15rem; }
.brandlogo .dark{ color: var(--ink); font-weight: 800; }

/* Menu tengah */
.mainnav{
  display: flex; gap: 28px;
  margin: 0 auto;           /* membuat menu berada di tengah */
}
.mainnav a{
  color: var(--muted-ink);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.mainnav a:hover,
.mainnav a:focus{
  color: var(--brand);
  background: #e8f7fb;
}

/* Tombol CTA kanan */
.btn{ display:inline-flex; align-items:center; gap:10px; padding:12px 16px;
  border-radius:12px; text-decoration:none; font-weight:700; border:1px solid transparent; }
.btn svg{ width:18px; height:18px }
.btn--primary{ background: var(--brand); color:#fff; box-shadow:0 10px 24px rgba(14,165,184,.28); }
.btn--primary:hover{ background: var(--brand-dark); transform: translateY(1px); }
.btn--sm{ padding:10px 14px }

/* Responsif: sembunyikan menu di layar kecil (opsional) */
@media (max-width: 760px){
  .mainnav{ display:none; }      /* tetap rapi, CTA & logo saja */
}

/* ====== CTA BAWAH DENGAN BACKGROUND ala ChatGPT ====== */
.cta-mesh{
  position: relative;
  overflow: clip;
  color: #fff;
  isolation: isolate;
  /* Mesh gradient = "image background" buatan CSS (tanpa file) */
  background:
    radial-gradient(900px 520px at 18% 30%, rgba(14,165,184,.95) 0%, rgba(14,165,184,.0) 60%),
    radial-gradient(1200px 600px at 82% 55%, rgba(59,130,246,.90) 0%, rgba(59,130,246,.0) 62%),
    radial-gradient(700px 420px at 55% 90%, rgba(8,145,178,.65) 0%, rgba(8,145,178,.0) 70%),
    linear-gradient(180deg, #0b2c3b 0%, #0a2a37 100%);
}

/* optional: jika kamu ingin pakai foto sendiri, cukup aktifkan 3 baris ini */
/*
.cta-mesh{
  background-image:
    linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.55)),
    url("images/bg-chatgpt.jpg");
  background-size: cover, cover;
  background-position: center;
}
*/

.cta-mesh__shade{
  position: absolute; inset: 0;
  /* lapisan lembut agar teks tetap terbaca */
  background:
    radial-gradient(1200px 600px at 12% 30%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 70%, rgba(255,255,255,.08), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cta-mesh__inner{
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}

.cta-mesh__title{
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 900;
  letter-spacing: .3px;
  margin: 0 0 8px;
}
.cta-mesh__lead{
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .95;
  margin: 0 auto 18px;
  max-width: 760px;
}

.cta-mesh__actions{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:12px; text-decoration:none; font-weight:700;
  border:1px solid transparent; transition:.2s; }
.btn--primary{ background: var(--brand); color:#fff; box-shadow:0 10px 24px rgba(14,165,184,.30) }
.btn--primary:hover{ background: #0b7f93; transform: translateY(1px) }
.btn--ghost{ background: rgba(255,255,255,.16); color:#fff; border-color: rgba(255,255,255,.28) }
.btn--ghost:hover{ background: rgba(255,255,255,.22); transform: translateY(1px) }

.cta-mesh__badges{
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0; margin: 8px 0 0; list-style: none;
}
.cta-mesh__badges li{
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  font-weight: 700; letter-spacing: .2px;
  backdrop-filter: blur(2px);
}

/* responsif */
@media (max-width: 560px){
  .btn{ width: 100% }
}

:root{
  --brand: #0ea5b8;      /* biru toska judul */
  --text: #0f172a;
  --muted: #5b6b7a;
  --bg: #f7fafc;
  --btn: #0ea5b8;
  --btn-dark: #0b7f93;
  --ghost: #e6f6fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(2, 28, 44, .16);
}

*{ box-sizing: border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== HERO ===== */
/* ===== HERO DENGAN BACKGROUND FOTO CV ADITYA TEKNIK ===== */
.hero{
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: stretch;
  overflow: clip;

  /* Foto + lapisan gelap tipis agar teks kontras */
  background-image:
    linear-gradient(180deg, rgba(2, 24, 39, .45), rgba(2, 24, 39, .45)),
    url("images/hero-home-appliances.jpg");
  background-size: cover, cover;
  /* Geser fokus ke kanan supaya teknisi terlihat jelas */
  background-position: 72% center, 72% center;
  background-repeat: no-repeat;
  background-color: #e9f3f7; /* fallback saat loading */
}

/* Tint biru seperti di contohmu */
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 18% 40%,
      rgba(19, 62, 68, 0.8) 0%, rgba(14,165,184,.35) 55%, rgba(14,165,184,.18) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Container & teks tetap sama */
.hero__container{
  display: grid;
  place-items: center;      /* = align-items + justify-items center */
  align-content: center;    /* jaga tetap di tengah saat konten tinggi */
  padding: 0;               /* opsional: hilangkan padding agar benar2 center */
}
.hero__content{ text-align:center; color:#fff; max-width:980px; margin-inline:auto }
.hero__title{ font-size: clamp(42px, 7vw, 72px); font-weight:900; line-height:1.06; margin:0 0 8px }
.hero__title .brand{ color:#e6faff; text-shadow: 0 2px 12px rgba(255,255,255,.25) }
.hero__lead{ font-size: clamp(16px, 2.4vw, 22px); opacity:.95; margin: 6px auto 18px; max-width: 920px }

/* Responsif: geser komposisi di layar sempit supaya objek tidak kepotong */
@media (max-width: 780px){
  .hero{ background-position: 55% center, 55% center; }
}


/* CTA buttons */
.hero__cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn{
  --padY: 12px;
  --padX: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--padY) var(--padX);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  user-select: none;
}
.btn svg{ width: 18px; height: 18px }

.btn--primary{
  background: var(--btn);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(14,165,184,.32);
}
.btn--primary:hover{ background: var(--btn-dark); transform: translateY(1px) }

.btn--ghost{
  background: var(--ghost);
  color: #083640;
  border-color: #cbeff6;
}
.btn--ghost:hover{ background: #dff3f7; transform: translateY(1px) }

/* badges */
.hero__badges{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(8, 54, 64, .08);
  box-shadow: 0 6px 16px rgba(8, 54, 64, .06);
  font-weight: 600;
  color: #204e57;
  backdrop-filter: blur(2px);
}
.badge svg{ width: 18px; height: 18px }

/* responsive fine–tuning */
@media (max-width: 820px){
  .hero{ min-height: 92vh }
  .hero__content{ max-width: 680px }
}
@media (max-width: 520px){
  .btn{ width: 100%; justify-content: center }
  .hero__badges{ gap: 10px }
}

/* ====== SECTION LAYANAN ====== */
.section{ padding: clamp(42px, 6vw, 80px) 0; }
.section .container{ width:min(1100px, 92%); margin-inline:auto; }
.section__title{
  text-align:center;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 6px;
}
.section__lead{
  text-align:center;
  color: var(--muted);
  max-width: 840px;
  margin: 0 auto clamp(22px, 3vw, 36px);
  font-size: clamp(14px, 1.6vw, 18px);
}

/* GRID 3 kolom (responsif) */
.service-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.service-card{
  grid-column: span 4;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 25px rgba(2,34,56,.06);
  padding: 26px 22px 18px;
  transition: transform .18s ease, box-shadow .18s ease;
  text-align: left;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2,34,56,.10);
}
@media (max-width: 980px){ .service-card{ grid-column: span 6 } }
@media (max-width: 640px){ .service-card{ grid-column: 1 / -1 } }

.service-card h3{
  text-align:center;
  margin: 8px 0 10px;
  font-size: 20px;
}
.service-card .muted{
  text-align:center;
  display:block;
  margin: 0 auto 12px;
  max-width: 520px;
}

/* ikon kotak biru */
.service-icon{
  width: 58px; height: 58px;
  border-radius: 14px;
  margin: 2px auto 10px;
  display: grid; place-items: center;
  color:#fff;
  background: radial-gradient(120% 120% at 30% 20%, #bce0e5 0%, #10b6d6 55%, #0891b2 100%);
}
.service-icon svg{ width: 28px; height: 28px }

/* bullets */
.service-list{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 18px;
}
.service-list li{
  display: flex; gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  color: #354758;
  font-size: 14.5px;
}
.dot{
  width: 8px; height: 8px; flex: 0 0 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(16,182,214,.22);
}

/* tombol kertas seperti di screenshot */
.btn--paper{
  display:block;
  width:100%;
  text-align:center;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  color:#0a3140;
  border: 1px solid #e5edf4;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn--paper:hover{ filter: brightness(0.985); transform: translateY(1px) }

/* Pusatkan SEMUA isi hero secara konsisten */
.hero__content{
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;   /* anak-anaknya otomatis ke tengah */
}

/* Tombol CTA */
.hero__cta{
  display: inline-flex;    /* shrink to content */
  gap: 14px;
  margin-inline: auto;     /* center block */
  justify-content: center; /* jaga center kalau melebar */
  align-items: center;
  width: auto;             /* pastikan tidak full-width */
}
.hero__cta > *{ margin: 0; } /* hilangkan margin kiri/kanan bawaan kalau ada */

/* Chip/badge keunggulan — pakai class yang kamu gunakan */
.hero__badges,
.hero__features{
  display: inline-flex;    /* shrink to content */
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px auto 0;     /* center block */
  justify-content: center; /* jaga tetap center saat wrap */
}

/* Bila chip kamu berupa <li> dengan display flex, tetap centerkan isinya */
.hero__badges li,
.hero__features li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ukuran topbar untuk perhitungan tinggi layar */
:root{ --topbar-h: 60px; }

/* ------- Hero betul-betul center ------- */
.hero{ min-height: calc(100vh - var(--topbar-h)); }
.hero__container{ display:grid; place-items:center; align-content:center; padding:0; }
.hero__content{ display:grid; justify-items:center; text-align:center; margin-inline:auto; max-width:980px; }
.hero__cta{ display:inline-flex; gap:14px; margin-inline:auto; justify-content:center; align-items:center; }
.hero__features, .hero__badges{ display:inline-flex; gap:14px; flex-wrap:wrap; margin:10px auto 0; justify-content:center; }
.hero__features li, .hero__badges li{ display:inline-flex; align-items:center; justify-content:center; }

/* ------- Navbar mobile (hamburger) ------- */
.nav-toggle{
  display:none; position:relative; width:42px; height:38px; border:0; background:transparent; border-radius:10px;
}
.nav-toggle__bar{
  position:relative; display:block; width:24px; height:2px; margin:6px auto; background:#0f172a; border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}

/* panel menu default (desktop) */
.mainnav{ display:flex; gap:28px; margin:0 auto; }
.cta-mobile{ display:none; }  /* tombol WA hanya untuk mobile */
.cta-desktop{ display:inline-flex; }

/* ------- Breakpoint: ≤ 760px ------- */
@media (max-width:760px){
  :root{ --topbar-h: 56px; }

  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .cta-desktop{ display:none; }

  /* jadikan menu panel slide-down */
  .mainnav{
    position: fixed; inset: var(--topbar-h) 0 auto 0;
    display: flex; flex-direction: column; gap: 6px;
    background: rgba(255,255,255,.98);
    transform: translateY(-120%);
    transition: transform .25s ease;
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    z-index: 999;
  }
  .mainnav a{ padding: 12px 8px; border-radius:10px; color:#334155; font-weight:700; }
  .mainnav a:hover{ background:#e8f7fb; color:#0ea5b8; }

  /* tampilkan panel saat .open */
  .topbar.open .mainnav{ transform: translateY(0); }

  /* ubah ikon hamburger jadi X */
  .topbar.open .nav-toggle__bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .topbar.open .nav-toggle__bar:nth-child(2){ opacity:0; }
  .topbar.open .nav-toggle__bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

  /* CTA khusus mobile di dalam menu */
  .cta-mobile{ display:inline-flex; margin-top: 4px; }

  /* Hero fokus foto & ukuran teks */
  .hero{ min-height: calc(100dvh - var(--topbar-h)); background-position: 55% center, 55% center; }
  .hero__title{ font-size: clamp(32px, 9vw, 44px); line-height:1.1; }
  .hero__lead{ font-size: 15px; margin: 8px 0 16px; padding: 0 10px; }

  /* Tombol = 1 kolom lebar penuh */
  .hero__cta{ display:grid; grid-template-columns: 1fr; width:min(520px,92%); gap:10px; }
  .btn--hero, .btn--ghost-white{ width:100%; justify-content:center; }

  /* Chip/Badge jadi 1 kolom */
  .hero__features, .hero__badges{
    display:grid; grid-template-columns: 1fr; width:min(520px,92%); gap:10px;
  }
  .ficon{ width:48px; height:48px }

  /* Grid layanan = 1 kolom */
  .section{ padding: 36px 0; }
  .section .container{ width:92%; }
  .service-grid{ grid-template-columns: 1fr !important; }
  .service-card{ grid-column: 1 / -1 !important; }
}

/* ------- Breakpoint: ≤ 420px ------- */
@media (max-width:420px){
  .hero__title{ font-size: 30px; }
  .hero__lead{ font-size: 14px; }
  .btn--sm{ padding:8px 12px }
}

/* ===== Ikon umum di topbar ===== */
.icon-btn{
  display:inline-grid; place-items:center;
  width:40px; height:36px; border-radius:10px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff; color:#0f172a;
  box-shadow:0 4px 12px rgba(2,34,56,.06);
  padding:0; cursor:pointer;
  transition:background .15s ease, transform .08s ease, box-shadow .15s ease;
}
.icon-btn:hover{ background:#f5fbfd }
.icon-btn:active{ transform: translateY(1px) }

/* ===== Strip 3 (hamburger) ===== */
.nav-toggle{ display:none } /* tampilkan hanya di mobile - lihat breakpoint */
.nav-toggle__bar{
  width:20px; height:2px; background:#0f172a; border-radius:2px; display:block; margin:4px 0;
}

/* ===== Titik 3 (kebab) ===== */
.kebab{ position:relative; margin-left:8px }
.kebab-toggle .dot{
  width:4px; height:4px; border-radius:50%; background:#0f172a; display:block;
}
.kebab-toggle .dot + .dot{ margin-top:3px }

/* Panel menu kebab */
.kebab-menu{
  position:absolute; right:0; top:calc(100% + 8px);
  background:#fff; border:1px solid rgba(15,23,42,.08);
  border-radius:12px; padding:8px;
  box-shadow:0 14px 30px rgba(2,34,56,.16);
  min-width:170px; z-index:1001;
}
.kebab-menu a{
  display:block; padding:10px 12px; border-radius:10px;
  text-decoration:none; color:#334155; font-weight:600;
}
.kebab-menu a:hover{ background:#e8f7fb; color:#0ea5b8 }

/* ===== Responsif: tampilkan hamburger di mobile ===== */
@media (max-width:760px){
  .nav-toggle{ display:inline-grid; margin-left:auto } /* geser ke kanan saat brand + hamburger */
  /* karena hamburger tampil, biarkan kebab tetap terlihat di kanan CTA-mobile (dalam panel) atau di topbar */
}

/* ===== TENTANG V2 ===== */
.aboutv2__grid{
  display:grid;
  grid-template-columns: 6.8fr 5.2fr; /* kiri lebih lebar */
  gap: 28px;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#eefbff;
  border:1px solid #d6f1f7;
  color:#0a5361;
  font-weight:700;
  font-size:13px;
  margin-bottom:8px;
}

.aboutv2__title{
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  margin: 4px 0 10px;
  font-weight: 900;
  color: #0b2239;
}
.aboutv2__title .brand{ color: var(--brand); }
.aboutv2__lead{
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 18px);
  margin: 0 0 16px;
  max-width: 62ch;
}

/* list 2 kolom */
.aboutv2__list{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns: repeat(2,minmax(220px,1fr)); gap:10px 22px;
}
.aboutv2__list li{ color:#294452; font-weight:600; display:flex; gap:10px; align-items:flex-start }
.ck{
  width:20px; height:20px; border-radius:50%;
  border:2px solid var(--brand);
  display:inline-block; position:relative; margin-top:2px;
}
.ck::after{
  content:""; position:absolute; left:4px; top:6px;
  width:8px; height:4px; border-left:2px solid var(--brand); border-bottom:2px solid var(--brand);
  transform:rotate(-45deg);
}

/* kanan: stat cards */
.aboutv2__right{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.statcard{
  background: #f3fbfe;
  border: 1px solid #e1f1f6;
  border-radius: 14px;
  padding: 18px 18px 16px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(2,34,56,.06);
}
.statcard__icon{
  width:56px; height:56px; border-radius:14px; margin: 2px auto 10px;
  display:grid; place-items:center; color:#fff;
  background: radial-gradient(120% 120% at 30% 20%, #38d2ea 0%, #10b6d6 55%, #0891b2 100%);
}
.statcard__icon svg{ width:26px; height:26px }
.statcard__value{
  font-weight:900; color:#0b2239;
  font-size: clamp(22px, 3.2vw, 28px);
}
.statcard__label{ color:#557185; font-weight:700; font-size:14px }

/* responsif */
@media (max-width: 980px){
  .aboutv2__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .aboutv2__list{ grid-template-columns: 1fr; }
  .aboutv2__right{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px){
  .aboutv2__right{ grid-template-columns: 1fr; }
}

/* ===== TESTIMONI ===== */
.testi .section__title{ color: var(--brand); }
.testi__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.t-card{
  grid-column: span 4;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  box-shadow:0 10px 24px rgba(2,34,56,.06);
  padding:18px 18px 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.t-card:hover{ transform: translateY(-3px); box-shadow:0 16px 36px rgba(2,34,56,.10) }

.t-head{ display:grid; grid-template-columns: auto 1fr auto; gap:12px; align-items:center; margin-bottom:10px }
.t-avatar{
  width:48px; height:48px; border-radius:12px;
  display:grid; place-items:center; font-weight:900; color:#fff;
  background: radial-gradient(120% 120% at 30% 20%, #38d2ea 0%, #10b6d6 55%, #0891b2 100%);
}
.t-id strong{ display:block; line-height:1.2 }
.t-id span{ color:#667a8a; font-size:13px }
.t-stars{ display:flex; gap:3px; align-items:center }
.t-stars svg{ width:16px; height:16px; fill:#f7b500 }   /* warna bintang */
.t-stars .dim{ fill:#e9eef5 }                            /* bintang kosong */

.t-quote{
  color:#243c4a;
  background: #f7fbfe;
  border:1px solid #e2f1f7;
  border-radius:12px;
  padding:12px;
}

/* Responsif */
@media (max-width: 980px){ .t-card{ grid-column: span 6 } }
@media (max-width: 640px){ .t-card{ grid-column: 1 / -1 } }

/* ===== Carousel Base ===== */
.slider{ position:relative; overflow:hidden; }
.slider-track{ display:flex; transition:transform .35s ease; will-change: transform; }
.slider-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:999px; border:1px solid rgba(15,23,42,.12);
  background:#fff; color:#0f172a; font-size:22px; line-height:1; display:grid; place-items:center;
  box-shadow:0 10px 20px rgba(2,34,56,.12); cursor:pointer;
}
.slider-btn:hover{ background:#f5fbfd }
.slider-btn.prev{ left: -6px; }
.slider-btn.next{ right: -6px; }

.slider-dots{ display:flex; gap:8px; justify-content:center; margin-top:12px; }
.slider-dots button{
  width:8px; height:8px; border-radius:999px; border:0; background:#d9e7ee; cursor:pointer;
}
.slider-dots button[aria-selected="true"]{ background: var(--brand); width:24px; }

.testi .t-card{
  flex: 0 0 100%;         /* default: 1 slide per layar */
  margin: 0 10px;         /* jarak antar slide */
  background:#fff; border:1px solid rgba(15,23,42,.08); border-radius:16px;
  box-shadow:0 10px 24px rgba(2,34,56,.06);
  padding:18px 18px 16px;
}
@media (min-width:640px){ .testi .t-card{ flex: 0 0 50%; } }   /* 2 kolom */
@media (min-width:1024px){ .testi .t-card{ flex: 0 0 33.3333%; } } /* 3 kolom */

.t-head{ display:grid; grid-template-columns:auto 1fr auto; gap:12px; align-items:center; margin-bottom:10px }
.t-avatar{
  width:48px; height:48px; border-radius:12px; display:grid; place-items:center; font-weight:900; color:#fff;
  background: radial-gradient(120% 120% at 30% 20%, #38d2ea 0%, #10b6d6 55%, #0891b2 100%);
}
.t-id strong{ display:block; line-height:1.2 }
.t-id span{ color:#667a8a; font-size:13px }
.t-stars{ display:flex; gap:3px; }
.t-stars svg{ width:16px; height:16px; fill:#f7b500 }
.t-stars .dim{ fill:#e9eef5 }
.t-quote{ color:#243c4a; background:#f7fbfe; border:1px solid #e2f1f7; border-radius:12px; padding:12px }

/* tombol disembunyikan di HP kecil biar tidak menutupi */
@media (max-width:480px){ .slider-btn{ display:none } }

/* ===== HUBUNGI KAMI ===== */
.contact__grid{
  display:grid; grid-template-columns: 5fr 7fr; gap:26px;
}
.contact__info .contact__quick{
  display:flex; flex-wrap:wrap; gap:10px; margin:10px 0 12px;
}
.contact__list{
  list-style:none; padding:0; margin:10px 0 0; display:grid; gap:12px;
}
.contact__list li{
  display:grid; grid-template-columns: 36px 1fr; gap:12px; align-items:center;
  background:#f7fbfe; border:1px solid #e2f1f7; border-radius:12px; padding:10px 12px;
}
.ci{ width:28px; height:28px; border-radius:8px; display:inline-block; position:relative;
     background:#e8f7fb; border:1px solid #c0eaf2; }
.ci::before{ content:""; position:absolute; inset:0; margin:auto; width:14px; height:14px; }
.ci-pin::before{ border:2px solid var(--brand); border-radius:50% }
.ci-time::before{ border:2px solid var(--brand); border-radius:50%; box-shadow: inset 4px 0 0 0 var(--brand); transform: rotate(45deg) scale(.9); }
.ci-shield::before{ width:0; height:0; border:8px solid transparent; border-top-color:var(--brand); transform: translate(3px,2px) }

.contact__form{
  background:#fff; border:1px solid rgba(15,23,42,.08); border-radius:16px;
  box-shadow:0 12px 28px rgba(2,34,56,.06);
  padding:18px;
}
.contact__form-title{ margin:0 0 10px; font-size:20px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
label{ font-weight:700; color:#2a3f4e; font-size:14px; display:grid; gap:6px; }
input, select, textarea{
  width:100%; border:1px solid #d7e4ec; border-radius:12px; padding:12px 12px;
  font:inherit; color:#0f172a; background:#fbfdff;
}
input:focus, select:focus, textarea:focus{
  outline:none; border-color:#9bdcea; box-shadow: 0 0 0 4px rgba(16,182,214,.18);
}
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.contact__note{ color:#5b6b7a; font-size:12.5px; margin:8px 0 0; }

/* responsif */
@media (max-width: 920px){
  .contact__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .form-row{ grid-template-columns: 1fr; }
  .form-actions .btn{ width:100%; justify-content:center; }
}

/* ===== FOOTER (seperti screenshot) ===== */
.site-footer{
  color:#fff;
  background: linear-gradient(180deg, #1ba2e0 0%, #0ea5b8 100%);
  border-top-left-radius: 10px; border-top-right-radius: 10px;
  overflow:hidden;
}

/* padding ekstra agar teks tidak mepet kiri */
.container--pad{ padding-inline: clamp(18px, 5vw, 48px); }

.footer__top{
  display:grid;
  grid-template-columns: 5fr 3.5fr 3.5fr;
  gap: 28px;
  padding: 26px 0;
}
.footer__logo{ margin:0 0 6px; font-size:22px; font-weight:900; letter-spacing:.2px }
.footer__logo .brand{ color:#e6faff }
.footer__desc{ opacity:.95; margin:0 0 10px; max-width:56ch }
.footer__rating{ display:flex; align-items:center; gap:10px; font-weight:700 }
.footer__rating .stars{ display:flex; gap:4px }
.footer__rating svg{ width:16px; height:16px; fill:#ffdb46 }

.footer__col h4{ margin:4px 0 8px; font-size:16px; font-weight:800; color:#eefbff }
.footer__list{ list-style:none; padding:0; margin:0; display:grid; gap:6px }
.footer__list li{ position:relative; padding-left:12px }
.footer__list li::before{ content:"•"; position:absolute; left:0; color:#d9f4ff }
.footer__list a{ color:#fff; text-decoration:none; opacity:.95 }
.footer__list a:hover{ text-decoration:underline }

.footer__divider{ height:1px; background: rgba(255,255,255,.35); opacity:.45 }
.footer__bottom{ padding: 14px 0; text-align:center; font-weight:600; opacity:.95 }

/* Responsif */
@media (max-width:920px){ .footer__top{ grid-template-columns: 1fr 1fr } }
@media (max-width:640px){
  .footer__top{ grid-template-columns: 1fr }
  .footer__rating{ justify-content:flex-start }
}
/* Tambah ruang dalam footer kiri-kanan */
.site-footer .footer__top,
.site-footer .footer__bottom .container{
  padding-left: clamp(18px, 5vw, 48px);
  padding-right: clamp(18px, 4vw, 40px);
}

/* (opsional) batasi lebar konten agar proporsional di layar sangat lebar */
.site-footer .footer__top,
.site-footer .footer__bottom .container{
  max-width: 1200px;
  margin-inline: auto;
}
