/* =============================================================
   Cash Venture Solution — Landing Page Optimization Stylesheet
   Loaded AFTER all base styles. Brand: red #ce1b28 + white.
   Goal: improve CRO, trust signals, mobile UX, visual hierarchy.
   Do NOT touch tracking code or form IDs.
   ============================================================= */

:root{
  --cvs-red:#ce1b28;
  --cvs-red-dark:#a4151f;
  --cvs-red-soft:#fff5f6;
  --cvs-navy:#252a37;
  --cvs-text:#3a3f4b;
  --cvs-muted:#6b7280;
  --cvs-line:#e5e7eb;
  --cvs-green:#25D366;
  --cvs-green-dark:#128C7E;
  --cvs-bg-soft:#fafbfc;
  --cvs-shadow:0 8px 22px rgba(206,27,40,.10);
  --cvs-shadow-lg:0 14px 38px rgba(8,46,78,.10);
  --cvs-radius:12px;
}

/* ---------- Global rhythm: consistent section spacing ----------
   ONLY target sections that already use .section-padding so we
   don't accidentally pad the hero slider section. ---------- */
.fw-page-builder-content section.fw-main-row.section-padding{ padding-top:64px; padding-bottom:64px; }
@media (max-width: 767px){
  .fw-page-builder-content section.fw-main-row.section-padding{ padding-top:42px; padding-bottom:42px; }
}

/* Make sure hero section itself never gains extra padding */
.fw-page-builder-content section.fw-main-row.xs-sc-debc2e82{ padding-top:0 !important; padding-bottom:0 !important; }
.fw-page-builder-content section.fw-main-row.xs-sc-debc2e82 .fw-main-row{ padding:0 !important; }

/* Reduce huge grey gaps in mid-page sections */
.xs-sc-0c6bafd3{ padding:64px 0 48px 0 !important; }
@media (max-width: 767px){ .xs-sc-0c6bafd3{ padding:42px 0 32px 0 !important; } }

/* "Kenapa Pilih Kami?" section — switch grey bg to white (only this section,
   not the Permohonan form section which shares the same xs-sc-0c6bafd3 class) */
.cvs-kenapa-pilih-kami{ background-color:#ffffff !important; }

/* ============================================================
   Tentang Kami — Numbered Card layout (方案 A)
   ============================================================ */
.cvs-tentang{ background:transparent; }
.cvs-tentang__lead{
  font-size:16px;
  line-height:1.7;
  color:var(--cvs-text);
  margin:0 0 28px;
  padding-bottom:24px;
  border-bottom:1px solid var(--cvs-line);
}
.cvs-tentang__lead strong{ color:var(--cvs-navy); }
.cvs-tentang__lead em{ color:var(--cvs-red); font-style:normal; font-weight:600; }

/* Card */
.cvs-tentang__card{
  background:#fff;
  border:1px solid var(--cvs-line);
  border-radius:16px;
  padding:24px 26px 22px;
  margin-bottom:18px;
  position:relative;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  transition:border-color .15s ease, box-shadow .2s ease, transform .15s ease;
}
.cvs-tentang__card:hover{
  border-color:var(--cvs-red);
  box-shadow:0 10px 24px rgba(206,27,40,.10);
  transform:translateY(-2px);
}

/* Big red number badge */
.cvs-tentang__num{
  width:56px; height:56px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--cvs-red) 0%, var(--cvs-red-dark) 100%);
  color:#fff;
  font-size:22px;
  font-weight:800;
  display:grid; place-items:center;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  letter-spacing:.5px;
  box-shadow:0 6px 14px rgba(206,27,40,.28);
  flex-shrink:0;
}

.cvs-tentang__body{ min-width:0; }

/* Card title with inline icon */
.cvs-tentang__title{
  font-size:20px !important;
  font-weight:800 !important;
  color:var(--cvs-navy) !important;
  margin:4px 0 14px !important;
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.25;
}
.cvs-tentang__title svg{
  width:22px; height:22px;
  color:var(--cvs-red);
  flex-shrink:0;
}

/* Plain list with red dot */
.cvs-tentang__list{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 14px !important;
}
.cvs-tentang__list li{
  position:relative;
  padding:6px 0 6px 22px;
  color:var(--cvs-text);
  font-size:15px;
  line-height:1.55;
  list-style:none;
}
.cvs-tentang__list li::before{
  content:"";
  position:absolute;
  left:0; top:14px;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--cvs-red);
}
.cvs-tentang__list li strong{ color:var(--cvs-navy); }

/* Stats grid (Card 2) */
.cvs-tentang__stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:6px 0 16px;
}
.cvs-tentang__stat{
  background:var(--cvs-red-soft);
  border:1px solid rgba(206,27,40,.18);
  border-radius:12px;
  padding:14px 16px;
  text-align:center;
}
.cvs-tentang__stat-num{
  font-size:32px;
  font-weight:800;
  color:var(--cvs-red);
  line-height:1.1;
  letter-spacing:-.5px;
}
.cvs-tentang__stat-num small{
  font-size:14px;
  font-weight:600;
  margin-left:2px;
}
.cvs-tentang__stat-label{
  font-size:12px;
  color:var(--cvs-navy);
  font-weight:600;
  margin-top:4px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

/* Example rows (Card 3) */
.cvs-tentang__example{
  font-size:14px;
  color:var(--cvs-muted);
  margin:0 0 12px !important;
  line-height:1.55;
}
.cvs-tentang__example strong{ color:var(--cvs-navy); }
.cvs-tentang__rows{
  background:#fafbfc;
  border:1px solid var(--cvs-line);
  border-radius:10px;
  overflow:hidden;
  margin-bottom:14px;
}
.cvs-tentang__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 14px;
  font-size:14px;
  border-bottom:1px solid var(--cvs-line);
  color:var(--cvs-text);
}
.cvs-tentang__row:last-child{ border-bottom:0; }
.cvs-tentang__row strong{
  color:var(--cvs-navy);
  font-weight:700;
}
.cvs-tentang__row--highlight{
  background:var(--cvs-red-soft);
  color:var(--cvs-red);
}
.cvs-tentang__row--highlight strong{
  color:var(--cvs-red);
  font-size:17px;
}

/* Soft KPKT-style note (replaces dark blockquote) */
.cvs-tentang__note{
  background:var(--cvs-red-soft);
  border-left:3px solid var(--cvs-red);
  border-radius:8px;
  padding:10px 14px 10px 14px;
  font-size:13px;
  line-height:1.55;
  color:var(--cvs-text);
  margin-top:4px;
}
.cvs-tentang__note-label{
  display:inline-block;
  background:var(--cvs-red);
  color:#fff;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
  padding:2px 8px;
  border-radius:4px;
  margin-right:8px;
  vertical-align:middle;
}

/* CTA button — keep brand */
.cvs-tentang__cta-wrap{ margin-top:20px; }
.cvs-tentang__cta-btn{
  background:var(--cvs-red) !important;
  border-color:var(--cvs-red) !important;
  color:#fff !important;
  font-weight:700;
  padding:12px 26px !important;
  border-radius:8px !important;
  display:inline-block;
}
.cvs-tentang__cta-btn:hover{
  background:var(--cvs-red-dark) !important;
  border-color:var(--cvs-red-dark) !important;
  color:#fff !important;
  text-decoration:none;
}

/* Hide old <hr> dividers if they survive */
.cvs-tentang hr{ display:none !important; }

/* Hide / restyle any leftover blockquote */
.cvs-tentang blockquote{ display:none !important; }

/* ----- Sidebar (left col) ----- */
.cvs-tentang__sidebar{
  position:sticky;
  top:90px;
}
.cvs-tentang__sidebar-desc{
  color:var(--cvs-muted);
  font-size:14px;
  line-height:1.6;
  margin:8px 0 22px;
}
.cvs-tentang__sidebar-badges{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 22px !important;
}
.cvs-tentang__sidebar-badges li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  font-size:14px;
  font-weight:600;
  color:var(--cvs-navy);
  line-height:1.35;
  list-style:none;
}
.cvs-tentang__sidebar-check{
  width:24px; height:24px;
  border-radius:50%;
  background:var(--cvs-red);
  color:#fff;
  display:grid; place-items:center;
  font-size:13px; font-weight:900;
  flex-shrink:0;
}
.cvs-tentang__sidebar-wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-height:50px;
  background:var(--cvs-green);
  color:#fff !important;
  font-weight:700;
  font-size:16px;
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(37,211,102,.30);
  transition:background .15s ease, transform .12s ease;
}
.cvs-tentang__sidebar-wa:hover{
  background:var(--cvs-green-dark);
  color:#fff !important;
  text-decoration:none;
  transform:translateY(-1px);
}
.cvs-tentang__sidebar-wa svg{ width:20px; height:20px; }
.cvs-tentang__sidebar-phone{
  display:block;
  text-align:center;
  margin-top:8px;
  font-size:12px;
  color:var(--cvs-muted);
  font-weight:500;
}

/* Mobile */
@media (max-width: 767px){
  .cvs-tentang__sidebar{ position:static; margin-bottom:24px; }
  .cvs-tentang__card{
    grid-template-columns:48px 1fr;
    gap:14px;
    padding:18px 18px 16px;
  }
  .cvs-tentang__num{ width:44px; height:44px; font-size:18px; border-radius:10px; }
  .cvs-tentang__title{ font-size:17px !important; margin-bottom:10px !important; }
  .cvs-tentang__title svg{ width:18px; height:18px; }
  .cvs-tentang__stats{ grid-template-columns:1fr 1fr; gap:8px; }
  .cvs-tentang__stat{ padding:12px 10px; }
  .cvs-tentang__stat-num{ font-size:24px; }
  .cvs-tentang__row{ font-size:13px; padding:9px 12px; }
  .cvs-tentang__row--highlight strong{ font-size:15px; }
  .cvs-tentang__lead{ font-size:15px; padding-bottom:18px; margin-bottom:20px; }
}
@media (max-width: 420px){
  .cvs-tentang__card{ grid-template-columns:1fr; }
  .cvs-tentang__num{ width:44px; height:44px; }
}

/* Hero readability on mobile */
@media (max-width: 767px){
  #n2-ss-2 .n2-font-51f781101b1f9b308a4d607ad171a81e-hover,
  #n2-ss-2 .n2-font-a5a8632019c35671184113508c1b17c7-hover{
    font-size:22px !important;
    line-height:1.25 !important;
  }
  #n2-ss-2 p{ font-size:14px !important; line-height:1.45 !important; }
}

/* ============================================================
   CVS CTA bar — sits right below hero slider
   ============================================================ */
.cvs-cta-bar{
  background:linear-gradient(135deg, var(--cvs-red) 0%, var(--cvs-red-dark) 100%);
  color:#fff;
  padding:22px 16px;
  text-align:center;
}
.cvs-cta-bar__inner{
  max-width:1140px; margin:0 auto;
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:center;
}
/* IMPORTANT: override the global h1{color:#252a37} */
.cvs-cta-bar h1.cvs-cta-bar__lead,
.cvs-cta-bar .cvs-cta-bar__lead{
  color:#ffffff !important;
  font-size:26px;
  font-weight:800;
  margin:0 18px 0 0;
  letter-spacing:.3px;
  line-height:1.2;
  text-shadow:0 1px 2px rgba(0,0,0,.15);
}
.cvs-cta-bar h1.cvs-cta-bar__lead small,
.cvs-cta-bar .cvs-cta-bar__lead small{
  display:block;
  font-size:14px;
  font-weight:500;
  color:#ffffff;
  opacity:.95;
  margin-top:4px;
  letter-spacing:.2px;
}
.cvs-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:48px; padding:0 26px;
  font-size:16px; font-weight:700; line-height:1;
  border-radius:8px; text-decoration:none;
  transition:transform .12s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer; border:0;
}
.cvs-btn:hover{ transform:translateY(-1px); text-decoration:none; }
.cvs-btn--apply{
  background:#fff; color:var(--cvs-red);
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}
.cvs-btn--apply:hover{ background:#fff5f6; color:var(--cvs-red-dark); }
.cvs-btn--wa{
  background:var(--cvs-green); color:#fff;
  box-shadow:0 6px 14px rgba(37,211,102,.32);
}
.cvs-btn--wa:hover{ background:var(--cvs-green-dark); color:#fff; }
.cvs-btn--wa svg{ width:20px; height:20px; }
@media (max-width: 580px){
  .cvs-cta-bar{ padding:18px 14px; }
  .cvs-cta-bar h1.cvs-cta-bar__lead,
  .cvs-cta-bar .cvs-cta-bar__lead{
    width:100%; margin:0 0 8px 0;
    font-size:20px; text-align:center;
  }
  .cvs-cta-bar h1.cvs-cta-bar__lead small{ font-size:13px; }
  .cvs-btn{ flex:1 1 45%; padding:0 12px; font-size:15px; }
}

/* ============================================================
   Trust strip — 4 badges right under hero
   ============================================================ */
.cvs-trust-strip{
  background:#fff;
  border-bottom:1px solid var(--cvs-line);
  padding:18px 16px;
}
.cvs-trust-strip__inner{
  max-width:1140px; margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.cvs-trust-strip__item{
  display:flex; align-items:center; gap:10px;
  font-size:14px; font-weight:600; color:var(--cvs-navy);
  line-height:1.3;
}
.cvs-trust-strip__check{
  flex:0 0 24px; width:24px; height:24px;
  border-radius:50%;
  background:var(--cvs-red); color:#fff;
  display:grid; place-items:center;
  font-size:13px; font-weight:900;
}
@media (max-width: 767px){
  .cvs-trust-strip__inner{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .cvs-trust-strip__item{ font-size:13px; }
}
@media (max-width: 380px){
  .cvs-trust-strip__inner{ grid-template-columns:1fr; }
}

/* ============================================================
   Trust signals section (longer trust block, mid page)
   ============================================================ */
.cvs-trust-section{
  background:var(--cvs-bg-soft);
  padding:56px 16px;
}
.cvs-trust-section__head{
  text-align:center; max-width:780px; margin:0 auto 36px;
}
.cvs-trust-section__head h2{
  font-size:40px; font-weight:800; color:var(--cvs-navy);
  margin:0 0 14px; letter-spacing:-.2px; line-height:1.15;
}
.cvs-trust-section__head h2 span{ color:var(--cvs-red); }
.cvs-trust-section__head p{
  color:var(--cvs-text); margin:0 auto; font-size:17px; line-height:1.55;
  max-width:620px;
}
.cvs-trust-grid{
  max-width:1140px; margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.cvs-trust-card{
  background:#fff;
  border:1px solid var(--cvs-line);
  border-radius:var(--cvs-radius);
  padding:22px 18px;
  text-align:center;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cvs-trust-card:hover{
  transform:translateY(-3px);
  border-color:var(--cvs-red);
  box-shadow:var(--cvs-shadow);
}
.cvs-trust-card__icon{
  width:54px; height:54px; border-radius:50%;
  background:var(--cvs-red-soft); color:var(--cvs-red);
  display:grid; place-items:center; margin:0 auto 12px;
  font-size:24px;
}
.cvs-trust-card__title{
  font-size:15px; font-weight:700; color:var(--cvs-navy);
  margin:0; line-height:1.35;
}
@media (max-width: 991px){
  .cvs-trust-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 767px){
  .cvs-trust-section__head h2,
  .cvs-faq-section__head h2{ font-size:28px; }
  .cvs-trust-section__head p,
  .cvs-faq-section__head p{ font-size:15px; }
}
@media (max-width: 480px){
  .cvs-trust-grid{ grid-template-columns:1fr; gap:12px; }
  .cvs-trust-section{ padding:42px 14px; }
}

/* ============================================================
   FAQ section
   ============================================================ */
.cvs-faq-section{
  background:#fff;
  padding:64px 16px;
}
.cvs-faq-section__head{
  text-align:center; max-width:780px; margin:0 auto 28px;
}
.cvs-faq-section__head h2{
  font-size:40px; font-weight:800; color:var(--cvs-navy);
  margin:0 0 14px; letter-spacing:-.2px; line-height:1.15;
}
.cvs-faq-section__head h2 span{ color:var(--cvs-red); }
.cvs-faq-section__head p{
  color:var(--cvs-text); margin:0 auto; font-size:17px; line-height:1.55;
  max-width:620px;
}
.cvs-faq-list{ max-width:820px; margin:0 auto; }
.cvs-faq-item{
  border:1px solid var(--cvs-line);
  border-radius:var(--cvs-radius);
  margin-bottom:12px;
  background:#fff;
  overflow:hidden;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.cvs-faq-item[open]{
  border-color:var(--cvs-red);
  box-shadow:0 6px 16px rgba(206,27,40,.08);
}
.cvs-faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 52px 18px 22px;
  font-size:16px; font-weight:700; color:var(--cvs-navy);
  position:relative;
  line-height:1.4;
}
.cvs-faq-item summary::-webkit-details-marker{ display:none; }
.cvs-faq-item summary::after{
  content:"+";
  position:absolute; right:22px; top:50%; transform:translateY(-50%);
  font-size:22px; font-weight:700; color:var(--cvs-red);
  transition:transform .2s ease;
}
.cvs-faq-item[open] summary::after{ content:"−"; }
.cvs-faq-item__body{
  padding:0 22px 18px;
  color:var(--cvs-text); font-size:15px; line-height:1.6;
}
@media (max-width: 767px){
  .cvs-faq-section{ padding:42px 14px; }
  .cvs-faq-section__head h2{ font-size:24px; }
  .cvs-faq-item summary{ font-size:15px; padding:16px 46px 16px 18px; }
  .cvs-faq-item summary::after{ right:18px; }
  .cvs-faq-item__body{ padding:0 18px 16px; font-size:14px; }
}

/* ============================================================
   Form intro band (above #permohonanForm)
   ============================================================ */
.cvs-form-intro{
  max-width:760px; margin:0 auto 8px;
  background:linear-gradient(135deg,var(--cvs-red) 0%, var(--cvs-red-dark) 100%);
  color:#fff;
  border-radius:14px 14px 0 0;
  padding:18px 22px;
  text-align:center;
  font-size:15px; font-weight:600; line-height:1.45;
  box-shadow:0 6px 14px rgba(206,27,40,.18);
}
.cvs-form-intro strong{ display:block; font-size:17px; margin-bottom:2px; }

/* Smooth the existing card so intro band attaches nicely */
.cvs-form-intro + .card{
  border-top-left-radius:0 !important;
  border-top-right-radius:0 !important;
  margin-top:0 !important;
}

/* Stronger submit button */
#permohonanForm button[type=submit]{
  background:var(--cvs-red) !important;
  border:2px solid var(--cvs-red) !important;
  color:#fff !important;
  font-size:17px !important;
  letter-spacing:.3px;
  width:320px !important; max-width:100% !important;
  padding:16px 28px !important;
  box-shadow:0 10px 22px rgba(206,27,40,.28) !important;
  transition:transform .12s ease, box-shadow .15s ease, background .15s ease;
}
#permohonanForm button[type=submit]:hover{
  background:var(--cvs-red-dark) !important;
  border-color:var(--cvs-red-dark) !important;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(206,27,40,.34) !important;
}
@media (max-width: 580px){
  #permohonanForm button[type=submit]{ width:100% !important; }
}

/* Form helper hint under submit */
.cvs-form-hint{
  text-align:center; color:var(--cvs-muted);
  font-size:13px; margin-top:14px;
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}
.cvs-form-hint span{ display:inline-flex; align-items:center; gap:6px; }
.cvs-form-hint svg{ width:14px; height:14px; color:var(--cvs-red); }

/* ============================================================
   Mobile UX polish
   ============================================================ */
@media (max-width: 767px){
  /* Ensure all buttons are tap-friendly */
  .btn, .btn-primary, .btn-dark, .btn-white, .btn-border{
    min-height:48px; line-height:1.2; padding:13px 22px;
    display:inline-flex; align-items:center; justify-content:center;
  }
  /* Banner titles smaller on phone */
  .banner-title, h1.banner-title{ font-size:32px !important; line-height:1.2 !important; }
  .slide-title{ font-size:20px !important; }
  .slide-sub-title{ font-size:28px !important; line-height:1.2 !important; }
  /* Section title size */
  .xs-title{ font-size:26px !important; line-height:1.2 !important; }
  /* Tighter info section padding */
  .top-info-content{ padding:8px 0; }
}

/* ============================================================
   Visual hierarchy nudges (apply across pages)
   ============================================================ */
h2.xs-title{ letter-spacing:.2px; }
.section-title-dash{ margin-bottom:8px; }
.feature-content h3{ color:var(--cvs-red); font-weight:700; }
.section-padding p{ color:var(--cvs-text); }

/* (removed background rule for lazy images — logos are transparent PNG;
   any background color would render as an opaque box) */
.footer-logo img,
.logo img{ background:transparent !important; }

/* Skip-link for keyboard / a11y (helps quality signals) */
.cvs-skip{
  position:absolute; left:-9999px; top:0;
  background:var(--cvs-red); color:#fff; padding:10px 16px;
  z-index:100000;
}
.cvs-skip:focus{ left:8px; top:8px; }

/* WhatsApp widget vertical offset so it doesn't cover form on mobile */
@media (max-width: 580px){
  .cv-wa{ bottom:calc(14px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   Red sidebar callout fix
   The .ts-feature-classic.box-primary block has a red bg but its
   h3/p inherit the global dark colors. Force white for legibility.
   ============================================================ */
.ts-feature-classic.box-primary,
.ts-feature-classic.box-primary *:not(.btn):not(a.btn-white){
  color:#ffffff !important;
}
.ts-feature-classic.box-primary h1,
.ts-feature-classic.box-primary h2,
.ts-feature-classic.box-primary h3,
.ts-feature-classic.box-primary h4,
.ts-feature-classic.box-primary .ts-feature-title{
  color:#ffffff !important;
  font-weight:800;
  margin-bottom:10px;
}
.ts-feature-classic.box-primary p{
  color:#ffffff !important;
  opacity:.95;
}
.ts-feature-classic.box-primary a.btn-white{
  background:#ffffff !important;
  color:var(--cvs-red) !important;
  font-weight:700;
}
.ts-feature-classic.box-primary a.btn-white:hover{
  background:#fff5f6 !important; color:var(--cvs-red-dark) !important;
}

/* Same for any explicit parallax-section red callout headings */
.parallax-section .feature-content h3,
.parallax-section .feature-content p,
.parallax-section .feature-content{
  color:#ffffff;
}

/* ============================================================
   Footer copyright readability — keep brand grey but raise contrast
   ============================================================ */
.copyright,
.copyright p,
.copyright span,
.copyright a,
.copyright-info,
.copyright-info span{ color:#ffffff !important; }
.copyright{ background:#252a37 !important; }
.copyright a:hover{ color:var(--cvs-red) !important; }

/* ============================================================
   Cleaner form hint (no icons, simple text)
   ============================================================ */
.cvs-form-hint{
  text-align:center;
  color:#6b7280;
  font-size:13px;
  margin-top:14px;
  line-height:1.5;
  display:block;
}
.cvs-form-hint svg{ display:none; }

/* ============================================================
   Form compaction & SHORT FORM (4-field high-conversion variant)
   ============================================================ */
#permohonanForm label.cf7-label{
  margin:14px 0 8px !important;
  font-size:14px;
  font-weight:700;
}
#permohonanForm input[type=text],
#permohonanForm input[type=tel],
#permohonanForm input[type=email],
#permohonanForm input[type=number],
#permohonanForm textarea,
#permohonanForm select{
  min-height:52px !important;
  padding:14px 16px !important;
  font-size:16px !important;
  /* 与 radio button 一致的 2px 边框 */
  border:2px solid #d9e1ea !important;
  border-radius:12px !important;
  background:#fff !important;
  transition:border-color .15s ease, box-shadow .15s ease !important;
}
#permohonanForm input[type=text]:focus,
#permohonanForm input[type=tel]:focus,
#permohonanForm input[type=email]:focus,
#permohonanForm input[type=number]:focus,
#permohonanForm textarea:focus,
#permohonanForm select:focus{
  border-color:var(--cvs-red) !important;
  box-shadow:0 0 0 4px rgba(206,27,40,.12) !important;
}

/* Hide native number spinner (up/down arrows) — cleaner look */
#permohonanForm input[type=number]::-webkit-outer-spin-button,
#permohonanForm input[type=number]::-webkit-inner-spin-button{
  -webkit-appearance:none;
  appearance:none;
  margin:0;
}
#permohonanForm input[type=number]{
  -moz-appearance:textfield;
  appearance:textfield;
}
#permohonanForm .rowform{ margin-bottom:0 !important; gap:14px !important; }
#permohonanForm textarea{ min-height:84px !important; }

/* ----- Radio buttons: bigger, clearer, selected = red filled ----- */
#permohonanForm .choices{
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}
#permohonanForm .choices label{
  min-height:54px !important;
  padding:0 18px !important;
  border:2px solid #d9e1ea !important;
  border-radius:12px !important;
  background:#fff !important;
  font-weight:600 !important;
  font-size:15px !important;
  position:relative;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
#permohonanForm .choices input[type=radio]{
  /* Hide native radio, replace with custom indicator on the label */
  appearance:none;
  -webkit-appearance:none;
  width:22px; height:22px;
  border:2px solid #c8d0db;
  border-radius:50%;
  margin:0 12px 0 0 !important;
  background:#fff;
  flex:0 0 22px;
  cursor:pointer;
  position:relative;
  transition:border-color .15s ease, background .15s ease;
}
#permohonanForm .choices input[type=radio]:checked{
  border-color:var(--cvs-red);
  background:var(--cvs-red);
  box-shadow:inset 0 0 0 4px #fff;
}
#permohonanForm .choices label:hover{
  border-color:var(--cvs-red) !important;
  background:var(--cvs-red-soft) !important;
}
/* Label gains red border + soft pink bg when its radio is checked */
#permohonanForm .choices label:has(input[type=radio]:checked){
  border-color:var(--cvs-red) !important;
  background:var(--cvs-red-soft) !important;
  color:var(--cvs-red) !important;
  box-shadow:0 4px 12px rgba(206,27,40,.12) !important;
}

/* Trust ticks below submit */
.cvs-form-hint.cvs-form-hint--ticks{
  display:flex !important;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 18px;
  color:#374151;
  font-size:13px;
  font-weight:600;
  margin-top:16px !important;
  line-height:1.4;
}
.cvs-form-hint.cvs-form-hint--ticks span{
  display:inline-flex; align-items:center;
  white-space:nowrap;
  color:var(--cvs-red);
}
.cvs-form-hint.cvs-form-hint--ticks span:first-letter{ margin-right:4px; }

/* Submit button — keep red brand, full-width on mobile */
#permohonanForm .actions{ margin-top:24px !important; text-align:center; }
#permohonanForm button[type=submit]{
  width:380px !important;
  max-width:100% !important;
  font-size:18px !important;
}

@media (max-width: 580px){
  #permohonanForm label.cf7-label{ margin:12px 0 6px !important; font-size:14px; }
  #permohonanForm input,
  #permohonanForm select{ min-height:50px !important; }
  #permohonanForm .choices{ gap:10px !important; }
  #permohonanForm .choices label{ min-height:54px !important; font-size:15px !important; padding:0 14px !important; }
  #permohonanForm button[type=submit]{
    width:100% !important;
    padding:16px 20px !important;
    font-size:17px !important;
  }
  .cvs-form-hint.cvs-form-hint--ticks{ font-size:12px; gap:6px 12px; }
}

/* Tighter overall form card on mobile */
@media (max-width: 580px){
  .wrap .card .inner{ padding:22px 18px 28px !important; }
  h2.h1form{ font-size:22px !important; }
  p.desc{ font-size:14px !important; margin-bottom:16px !important; }
}
