
  :root{
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --navy: #0b1c39;
    --teal: #10b981;
    --purple: #8b5cf6;
    --ink: #0f172a;
    --muted: #64748b;
    --nav-h: 50px; /* fallback awal, akan di-override JS secara presisi */
  }

  *{ box-sizing: border-box; }

  html{ scroll-behavior: smooth; }

  body{
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink);
    background:#fff;
  }

  h1,h2,h3,h4,.brand-text{ font-weight: 800; letter-spacing:-0.02em; }

  /* ========================= NAVBAR ======================================================= */
  .navbar{
    transition: box-shadow .3s ease, padding .3s ease, background-color .3s ease;
    background: rgba(255,255,255,0.98);
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }
  .navbar.scrolled{
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    padding-top: .65rem;
    padding-bottom: .65rem;
  }
  .navbar-brand{ font-weight: 800; font-size: 1.35rem; color: var(--ink) !important; display:flex; align-items:center; gap:.6rem; }
  .brand-mark{
    width: 80px; height:80px; border-radius: 10px;
    background: linear-gradient(135deg,#facc15,#2563eb 55%);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:800; font-size: 1.05rem; flex-shrink:0;
  }
  .brand-sub{ font-size:.62rem; line-height:1.15; color: var(--muted); font-weight:600; letter-spacing:.03em; }

  .nav-link{ font-weight:600; color:#334155 !important; position:relative; margin: 0 .35rem; }
  .nav-link.active{ color: var(--primary) !important; }
  .nav-link::after{
    content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0;
    background: var(--primary); transition: width .25s ease;
  }
  .nav-link:hover::after, .nav-link.active::after{ width:100%; }

  .btn-login{
    background: var(--primary); border:none; font-weight:700; padding:.55rem 1.3rem; border-radius:8px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  }
  .btn-login:hover{ background: var(--primary-dark); transform: translateY(-2px); box-shadow:0 8px 18px rgba(37,99,235,.35); color:#fff; }

  /* =================================== HERO ======================================== */
  .hero{
    position:relative;
    min-height: 88svh;
    margin-top: var(--nav-h);   /* dorong konten ke bawah navbar fixed */
    padding-bottom: 140px;       /* jarak aman di atas curve (::after tinggi 120px) */
    box-sizing: border-box;
    display:flex; align-items:center;
    overflow:visible;            /* jangan hidden, biar konten tidak terpotong kalau melebihi box */
  background:
    linear-gradient(100deg, rgba(6,20,45,.85) 0%, rgba(6,20,45,.55) 45%, rgba(6,20,45,.15) 70%),
    url('../img/hero4.png') center/cover no-repeat;
  }
  .hero::after{
    content:"";
    position:absolute; left:0; right:0; bottom:-2px; height:00px;
    background:#fff;
    clip-path: ellipse(65% 100% at 50% 100%);
    pointer-events:none;
  }
  .hero-content{
    position:relative; z-index:2;
    padding-top: 0; /* sudah ditangani padding-top .hero, jangan dobel */
  }
  .hero h1{
    color:#fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height:1.08; text-shadow: 0 2px 24px rgba(0,0,0,.25);
  }
  .hero p.lead{
    color: rgba(255,255,255,.92); max-width: 560px; font-size:1.08rem;
  }
  .btn-hero-primary{
    background: var(--primary); border:none; font-weight:700; padding:.85rem 1.6rem; border-radius:9px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-hero-primary:hover{ transform: translateY(-3px); box-shadow: 0 12px 24px rgba(37,99,235,.4); color:#fff; }
  .btn-hero-outline{
    border:2px solid rgba(255,255,255,.85); color:#fff; font-weight:700; padding:.8rem 1.6rem; border-radius:9px; background: rgba(255,255,255,.06);
    transition: all .2s ease;
  }
  .btn-hero-outline:hover{ background:#fff; color: var(--ink); transform: translateY(-3px); }

  /* Carousel indicators */
  .hero-dots{ position:relative; z-index:2; display:flex; gap:.5rem; margin-top:2rem; }
  .hero-dots span{
    width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,.45); cursor:pointer; transition: all .3s ease;
  }
  .hero-dots span.active{ background:#fff; width:26px; border-radius:6px; }
  
  .hero h1{
  color:#fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height:1.08;
  text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 8px 30px rgba(0,0,0,.35);
  -webkit-text-stroke: 1px rgba(0,0,0,.35);
  paint-order: stroke fill;
}

.hero p.lead{
  color: rgba(255,255,255,.95);
  max-width: 560px;
  font-size:1.08rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
  -webkit-text-stroke: 0.4px rgba(0,0,0,.3);
  paint-order: stroke fill;
}

/* ======================================================= VIDEO SHOWCASE ========================= */
.video-showcase{
  position:relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow:hidden;
}

.video-showcase::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(37,99,235,.14) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 0%, transparent 75%);
  pointer-events:none;
}

.video-icon-badge{
  width:56px; height:56px; border-radius:50%;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color:#fff; font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 12px 24px -6px rgba(37,99,235,.4);
}

.video-subtitle{
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

.video-frame-wrap{
  position:relative;
  z-index:1;
  max-width: 640px;
  margin: 0 auto;
}

.video-glow{
  position:absolute;
  inset: -30px;
  background: radial-gradient(circle at 30% 20%, rgba(37,99,235,.18), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(139,92,246,.14), transparent 55%);
  filter: blur(10px);
  z-index:0;
  border-radius: 32px;
}

.video-frame{
  position:relative;
  z-index:1;
  border-radius: 22px;
  overflow:hidden;
  background:#0b1c39;
  box-shadow:
    0 40px 80px -20px rgba(15,23,42,.35),
    0 0 0 1px rgba(15,23,42,.06),
    0 0 0 8px rgba(255,255,255,.9);
  transition: transform .4s ease, box-shadow .4s ease;
}
.video-frame:hover{
  transform: translateY(-6px);
  box-shadow:
    0 50px 90px -18px rgba(15,23,42,.4),
    0 0 0 1px rgba(15,23,42,.06),
    0 0 0 8px rgba(255,255,255,.95);
}
.video-frame video{
  width:100%; display:block; aspect-ratio: 16/9; object-fit:cover;
}

.video-badge{
  position:absolute; top:16px; left:16px; z-index:2;
  display:flex; align-items:center; gap:.4rem;
  background: rgba(11,28,57,.65);
  backdrop-filter: blur(6px);
  color:#fff; font-size:.78rem; font-weight:700;
  padding:.4rem .85rem; border-radius:999px;
  letter-spacing:.02em; border:1px solid rgba(255,255,255,.15);
}
.video-badge i{ color:#60a5fa; font-size:.9rem; }

/* -----================================================== floating stat chips ==============================----- */
.video-floating-chip{
  position:absolute;
  z-index:3;
  display:flex; align-items:center; gap:.6rem;
  background:#fff;
  padding:.65rem 1rem;
  border-radius: 14px;
  box-shadow: 0 14px 30px -10px rgba(15,23,42,.25);
  border: 1px solid #eef1f6;
}
.video-floating-chip i{
  width:34px; height:34px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:#e8f0fe; color:#2563eb; font-size:1rem; flex-shrink:0;
}
.video-floating-chip strong{
  display:block; font-size:1rem; font-weight:800; color: var(--ink); line-height:1.1;
}
.video-floating-chip span{
  display:block; font-size:.72rem; color: var(--muted); font-weight:600;
}

.chip-left{ bottom:-22px; left:-28px; }
.chip-right{ top:-22px; right:-28px; }

@media (max-width: 767.98px){
  .video-floating-chip{ display:none; }
}

@media (max-width: 576px){
  .video-showcase{ padding-top: 4rem; padding-bottom: 3.5rem; }
  .video-glow{ inset:-14px; }
  .video-frame{ border-radius: 16px; box-shadow: 0 24px 48px -16px rgba(15,23,42,.3), 0 0 0 6px rgba(255,255,255,.9); }
}
  /* ===== SERVICE CARDS ===== */
  .service-card{
    border: 1px solid #eef1f6; border-radius: 16px; padding: 2.1rem 1.6rem; height:100%;
    background:#fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15,23,42,.08);
    border-color: transparent;
  }
  .service-icon{
    width:72px; height:72px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.7rem; margin: 0 auto 1.3rem;
    transition: transform .3s ease;
  }
  .service-card:hover .service-icon{ transform: scale(1.1) rotate(-4deg); }
  .icon-blue{ background:#e8f0fe; color:#2563eb; }
  .icon-green{ background:#e6f9f1; color:#0ea472; }
  .icon-purple{ background:#f1eafe; color:#8b5cf6; }
  .icon-navy{ background:#e6edfb; color:#1d4ed8; }

  .service-card h5{ font-weight:700; }
  .service-card p{ color: var(--muted); font-size:.95rem; }
  .service-link{ font-weight:700; font-size:.92rem; text-decoration:none; }
  .service-link i{ transition: transform .25s ease; display:inline-block; }
  .service-link:hover i{ transform: translateX(5px); }
  .link-blue{ color:#2563eb; } .link-green{ color:#0ea472; } .link-purple{ color:#8b5cf6; } .link-navy{ color:#1d4ed8; }

  /* ============================================= STATS ============================================================ */
  .stats-panel{
    background: #f8fafc; border-radius: 20px; padding: 2.4rem 1.5rem; border:1px solid #eef1f6;
  }
  .stat-icon{
    width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.25rem; margin-bottom:.9rem;
  }
  .stat-num{ font-weight:800; font-size:1.7rem; }
  .stat-label{ font-weight:600; font-size:.92rem; }
  .stat-sub{ color: var(--muted); font-size:.8rem; }

  /* fade-in on scroll */
  .fade-up{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .fade-up.in-view{ opacity:1; transform: translateY(0); }

  /* ===== FOOTER ===== */
  footer{ background: var(--navy); color: #cbd5e1; }
  footer h6{ color:#fff; font-weight:700; margin-bottom:1.1rem; }
  footer a{ color:#cbd5e1; text-decoration:none; font-size:.92rem; transition: color .2s ease, padding-left .2s ease; display:inline-block; }
  footer a:hover{ color:#fff; padding-left:4px; }
  footer .footer-brand{ display:flex; align-items:center; gap:.6rem; margin-bottom:1rem; }
  footer .social-icon{
    width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08);
    display:flex; align-items:center; justify-content:center; color:#fff; transition: all .25s ease;
  }
  footer .social-icon:hover{ background: var(--primary); transform: translateY(-3px); padding-left:0; }
  footer .contact-item{ display:flex; gap:.7rem; margin-bottom:.85rem; font-size:.92rem; color:#cbd5e1; }
  footer .contact-item i{ color:#60a5fa; margin-top:2px; }
  footer .footer-bottom{ border-top:1px solid rgba(255,255,255,.1); font-size:.85rem; color:#94a3b8; }

  /* Back to top */
  #backToTop{
    position: fixed; bottom: 26px; right: 26px; width:46px; height:46px; border-radius:50%;
    background: var(--primary); color:#fff; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 10px 24px rgba(37,99,235,.35); opacity:0; visibility:hidden; transform: translateY(12px);
    transition: all .3s ease; z-index: 999; border:none;
  }
  #backToTop.show{ opacity:1; visibility:visible; transform: translateY(0); }
  #backToTop:hover{ background: var(--primary-dark); }

  .brand-logo {
      width: 65px;
      height: 65px;
      object-fit: contain;
      margin-right: 12px;
      flex-shrink: 0;
  }

  .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
  }


/* ================================================== NEWS SECTION ============================== */
.news-section{
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  background:#fff;
}

.news-subtitle{
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

.news-carousel-wrap{
  position:relative;
  padding: 0 3.2rem;
}

/* ----- card ----- */
.news-card{
  display:block;
  text-decoration:none;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid #eef1f6;
  background:#fff;
  height:100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -14px rgba(15,23,42,.18);
}

.news-readmore{
    text-decoration: none;
    color: inherit;
}

.news-card-img{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
  background:#e2e8f0;
}
.news-card-img img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card-img img{ transform: scale(1.06); }

.news-tag{
  position:absolute; top:12px; left:12px;
  font-size:.7rem; font-weight:700; letter-spacing:.02em;
  padding:.35rem .7rem; border-radius:999px; color:#fff;
}
.tag-blue{ background: var(--primary); }
.tag-green{ background: #0ea472; }
.tag-navy{ background: var(--navy); }
.tag-purple{ background: var(--purple); }

.news-card-body{ padding: 1.3rem 1.4rem 1.5rem; }

.news-meta{
  font-size:.78rem; color: var(--muted); font-weight:600;
  display:flex; align-items:center; gap:.4rem; margin-bottom:.55rem;
}

.news-card-body h3{
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.news-readmore{
  font-weight:700; font-size:.86rem; color: var(--primary);
}
.news-readmore i{ transition: transform .25s ease; display:inline-block; }
.news-card:hover .news-readmore i{ transform: translateX(5px); }

/* ----- arrows ----- */
.carousel-control-prev, .carousel-control-next{
  width:auto; opacity:1;
}
.news-nav-btn{
  width:44px; height:44px; border-radius:50%;
  background:#fff; color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -8px rgba(15,23,42,.25);
  border: 1px solid #eef1f6;
  transition: all .2s ease;
}
.news-nav-btn:hover{ background: var(--primary); color:#fff; }
.carousel-control-prev{ left:-3.2rem; }
.carousel-control-next{ right:-3.2rem; }

/* ----- dots ----- */
.news-dots{
  position: static;
  margin-top: 2rem;
}
.news-dots [data-bs-target]{
  width:8px; height:8px; border-radius:50%;
  background: #cbd5e1; opacity:1;
  border:none; margin: 0 4px;
  transition: all .3s ease;
}
.news-dots [data-bs-target].active{
  background: var(--primary); width:22px; border-radius:5px;
}

/* ----- CTA button ----- */
.btn-hero-outline-dark{
  display:inline-block;
  border:2px solid var(--ink); color: var(--ink);
  font-weight:700; padding:.75rem 1.7rem; border-radius:9px;
  text-decoration:none; transition: all .2s ease;
}
.btn-hero-outline-dark:hover{
  background: var(--ink); color:#fff; transform: translateY(-3px);
}

/* ----- responsif ----- */
@media (max-width: 767.98px){
  .news-carousel-wrap{ padding: 0 1rem; }
  .carousel-control-prev{ left:-.5rem; }
  .carousel-control-next{ right:-.5rem; }
  .news-nav-btn{ width:38px; height:38px; }
}

/* ================================================== PARTNER SECTION ============================== */

.partnersSwiper{
    width:100%;
    overflow:hidden;
    padding:15px 0;
}

.partnersSwiper .swiper-wrapper{
    display:flex !important;
    align-items:center;
    transition-timing-function:linear !important;
}

.partnersSwiper .swiper-slide{
    width:auto !important;
    flex-shrink:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.partner-logo{
    width:180px;
    height:100px;
    padding:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;

    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.3s;
}

.partner-logo:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.partner-logo img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* ===== GALERI DOKUMENTASI ===== */
.gallery-section{
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background: #ffffff;
}

.gallery-subtitle{
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

.gallery-item{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #e2e8f0;
}

.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,28,57,0) 40%, rgba(11,28,57,.85) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1rem .8rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-overlay i{
  color: #fff; font-size: 1.4rem; margin-bottom: .5rem;
  transform: translateY(8px);
  transition: transform .3s ease;
}

.gallery-overlay span{
  color: #fff; font-size: .8rem; font-weight: 700; text-align: center;
  line-height: 1.35;
  transform: translateY(8px);
  transition: transform .3s ease .05s;
}

.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item:hover .gallery-overlay{ opacity: 1; }
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span{ transform: translateY(0); }

/* ----- modal preview ----- */
.gallery-modal-content{
  background: transparent;
  border: none;
  position: relative;
}
.gallery-modal-content img{
  border-radius: 14px;
  max-height: 78vh;
  object-fit: contain;
  background: #0b1c39;
}
.gallery-modal-caption{
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: .92rem;
  margin-top: 1rem;
}
.gallery-modal-close{
  position: absolute; top: -14px; right: -14px;
  background: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  opacity: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 2;
}

@media (max-width: 575.98px){
  .gallery-section{ padding-top: 4rem; padding-bottom: 4rem; }
  .gallery-overlay span{ font-size: .72rem; }
}


/* ========= ==== ==== ====  FAQ ==== ==== ==== ==== ==== ==== ===== */
/* ===== FAQ ===== */
.faq-section{
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background: #fff;
}

.faq-subtitle{
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.faq-wrap{
  max-width: 780px;
  margin: 0 auto;
}

.faq-accordion .accordion-item{
  border: 1px solid #eef1f6;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-accordion .accordion-item:last-child{ margin-bottom: 0; }

.faq-accordion .accordion-button{
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: 1.15rem 1.4rem;
  background: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed){
  color: var(--primary);
  background: #f6f9ff;
}
.faq-accordion .accordion-button:focus{
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-button::after{
  width: 22px; height: 22px;
  background-size: 22px;
  flex-shrink: 0;
}

.faq-accordion .accordion-body{
  padding: .2rem 1.4rem 1.4rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}

@media (max-width: 575.98px){
  .faq-section{ padding-top: 4rem; padding-bottom: 4rem; }
  .faq-accordion .accordion-button{ font-size: .92rem; padding: 1rem 1.1rem; }
  .faq-accordion .accordion-body{ padding: .1rem 1.1rem 1.1rem; font-size: .88rem; }
}

/* ========================================= CONTACT ========================================= */
.contact-section{
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background: #fff;
}

.contact-subtitle{
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

/* ----- info kontak ----- */
.contact-info-card{
  background: var(--navy);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-info-item{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon{
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #60a5fa;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4{
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.contact-info-item p{
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

/* ----- channel cards ----- */
.contact-channel{
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-channel:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15,23,42,.15);
}

.channel-icon{
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #fff;
}

.channel-wa .channel-icon{ background: #25d366; }
.channel-ig .channel-icon{
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.channel-mail .channel-icon{ background: var(--primary); }

.channel-body{ flex: 1; min-width: 0; }
.channel-body h4{
  font-size: 1rem; font-weight: 700; color: var(--ink);
  margin-bottom: .2rem;
}
.channel-body p{
  font-size: .86rem; color: var(--muted); margin: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.channel-arrow{
  color: #cbd5e1;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .25s ease, color .25s ease;
}
.contact-channel:hover .channel-arrow{
  transform: translateX(5px);
  color: var(--primary);
}

/* ----- responsif ----- */
@media (max-width: 991.98px){
  .contact-info-card{ margin-bottom: .5rem; }
}

@media (max-width: 575.98px){
  .contact-section{ padding-top: 4rem; padding-bottom: 4rem; }
  .contact-info-card{ padding: 1.8rem 1.5rem; }
  .channel-body p{ white-space: normal; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 14px; /* opsional */
}

