:root{
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --text: #142033;
  --muted: #667085;
  --line: #dbe4ef;

  --primary: #4d9bd8;
  --primary-dark: #2f7fbe;
  --primary-soft: #eaf4fc;

  --accent: #f4c400;
  --accent-dark: #d9ad00;
  --accent-soft: #fff7d6;

  --danger: #ef2b1d;
  --danger-soft: #ffe3e0;

  --success: #22c55e;
  --shadow: 0 12px 32px rgba(20,32,51,.08);
  --shadow-lg: 0 18px 50px rgba(20,32,51,.12);
  --radius: 24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

a{
  color:inherit;
}

.hidden-block{
  display:none !important;
}

.container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.muted{
  color:var(--muted);
}

.section{
  padding:36px 0;
}

.card,
.section-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.section-card{
  padding:24px;
}

.notice{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
}

.notice.success{
  background:#eafaf0;
  border:1px solid #bce8cb;
  color:#166534;
}

.notice.error{
  background:#fff1f1;
  border:1px solid #fecaca;
  color:#991b1b;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:var(--accent-soft);
  color:#8a6800;
  border:1px solid #f4de7b;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:none;
  text-decoration:none;
  cursor:pointer;
  font-weight:700;
  transition:.2s ease;
  white-space:nowrap;
  font-size:14px;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent) 0%, #ffd84d 100%);
  color:#142033;
  box-shadow:0 10px 26px rgba(244,196,0,.22);
}

.btn-secondary{
  background:var(--surface);
  color:var(--text);
  border:1px solid var(--line);
}

.btn-soft{
  opacity:.72;
}

.btn-wa{
  background:linear-gradient(135deg, #22c55e, #16a34a);
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 28px rgba(34,197,94,.35);
  border-radius:16px;
}

.full-width{
  width:100%;
}

/* HEADER */
.premium-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(77,155,216,.14);
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:78px;
}

.brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.brand-logo{
  width:clamp(42px, 5vw, 62px);
  height:auto;
  max-height:56px;
  object-fit:contain;
  flex-shrink:0;
}

.brand{
  font-size:clamp(18px, 2vw, 22px);
  font-weight:800;
  letter-spacing:.04em;
  color:var(--text);
}

.subbrand{
  font-size:13px;
  color:var(--muted);
}

.top-nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.top-nav a{
  text-decoration:none;
  color:#4b5563;
  font-size:14px;
  font-weight:600;
}

.top-nav a:hover{
  color:var(--primary-dark);
}

/* HERO */
.hero{
  position:relative;
  padding:48px 0 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.55) 100%),
    url('/assets/img/og_logo.png') center/cover no-repeat;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
}


.hero-copy,
.preview-card{
  position:relative;
  z-index:2;
}

.hero-copy{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.65);
  border-radius:24px;
  padding:22px;
}

.hero h1{
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.04;
  margin:14px 0 12px;
  color:var(--text);
}

.hero .highlight{
  color:var(--primary-dark);
}

.hero-text{
  max-width:700px;
  font-size:17px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.point-pill{
  padding:10px 14px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  font-size:13px;
  color:#475467;
  box-shadow:var(--shadow);
}

.preview-card{
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-lg);
  background:linear-gradient(145deg, #ffffff 0%, #f7fbff 58%, #eef6fd 100%);
  border:1px solid rgba(77,155,216,.14);
}

.preview-kicker{
  font-size:14px;
  color:var(--muted);
}

.preview-price{
  font-size:clamp(40px, 5vw, 54px);
  font-weight:800;
  color:var(--accent-dark);
  margin-top:14px;
  line-height:1;
}

.preview-meta{
  margin-top:10px;
}

.preview-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.mini-card{
  border-radius:18px;
  background:var(--surface);
  border:1px solid var(--line);
  padding:14px;
}

.mini-label{
  font-size:12px;
  color:var(--muted);
}

.mini-value{
  font-weight:700;
  margin-top:6px;
  color:var(--text);
}

/* SECTION HEAD */
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.section-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.section-kicker{
  color:var(--primary-dark);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}

.section-divider{
  height:1px;
  background:var(--line);
  margin:32px 0;
}

.section-subhead h3,
.section-head h2,
.section-top h2{
  margin:0;
  color:var(--text);
}
/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:14px;
}

.service-item{
  position:relative;
  height:260px;
  border-radius:20px;
  overflow:hidden;
}




 

.service-item:hover{
  transform:translateY(-2px);
  border-color:rgba(77,155,216,.35);
}

.service-item.active{
  border-color:var(--accent);
  box-shadow:0 14px 34px rgba(244,196,0,.18);
}


.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-item:hover .service-image img{
  transform:scale(1.04);
}

.service-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:14px;
  background:linear-gradient(to top, rgba(20,32,51,.82), rgba(20,32,51,.12));
}

.service-title{
  margin-top:0;
  font-size:18px;
  font-weight:800;
  color:#fff;
}

.service-label{
  display:none;
}

.service-item.active .service-title{
  color:#fff;
}

@media(max-width:768px){
  .service-image img{
    height:150px;
  }
}

/* ESTIMATOR LAYOUT */
.estimator-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 420px;
  gap:24px;
  align-items:start;
}

.estimator-main{
  min-width:0;
  overflow:visible;
  box-shadow:0 20px 50px rgba(20,32,51,.08);
}
.estimator-side{
  min-width:0;
  position:relative;
  align-self:start;
  overflow:visible;
}

/* FORM */
label{
  display:block;
}

.form-shell{
  display:grid;
  gap:18px;
}

.form-top{
  align-items:flex-start;
}

.form-intro{
  margin:10px 0 0;
  max-width:680px;
  font-size:15px;
}

.premium-form{
  display:grid;
  gap:0;
}

.field-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.field-card{
  display:block;
  padding:16px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow:0 10px 24px rgba(20,32,51,.04);
  transition:.2s ease;
  overflow:visible;
}

.field-card:hover{
  border-color:rgba(77,155,216,.30);
  box-shadow:0 16px 32px rgba(20,32,51,.06);
}

.field-span-2{
  grid-column:span 2;
}

.label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.label{
  font-size:13px;
  color:#344054;
  margin-bottom:0;
  font-weight:700;
  letter-spacing:.01em;
}

.field-hint{
  font-size:12px;
  color:var(--muted);
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:999px;
  padding:5px 10px;
  line-height:1;
}

input,
select{
  width:100%;
  min-height:50px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--text);
  padding:0 14px;
  outline:none;
  font-size:14px;
}

.field-card input,
.field-card select{
  width:100%;
  min-height:56px;
  border-radius:16px;
  border:1px solid #d7e3ef;
  background:#fff;
  padding:0 16px;
  font-size:15px;
  box-shadow:inset 0 1px 2px rgba(20,32,51,.03);
}

input::placeholder{
  color:#98a2b3;
}

input:focus,
select:focus,
.field-card input:focus,
.field-card select:focus{
  border-color:rgba(77,155,216,.65);
  box-shadow:
    0 0 0 4px rgba(77,155,216,.12),
    inset 0 1px 2px rgba(20,32,51,.03);
}

.form-subhead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.form-subhead h3{
  margin:6px 0 0;
  font-size:24px;
  line-height:1.2;
}

.form-subhead-badge{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(77,155,216,.2);
  background:linear-gradient(180deg, #f3f9fe 0%, #eef6fd 100%);
  color:var(--primary-dark);
  font-size:12px;
  font-weight:700;
}

.coming-soon-box{
  padding:18px;
  border-radius:18px;
  background:var(--surface-2);
  border:1px solid var(--line);
  margin-top:18px;
}

.coming-soon-title{
  font-weight:800;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.form-actions-premium{
  margin-top:28px;
  align-items:center;
}

.btn-submit-glow{
  min-width:220px;
  box-shadow:0 14px 34px rgba(244,196,0,.28);
}

.notice-elegant{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  border-radius:20px;
  box-shadow:0 10px 24px rgba(20,32,51,.05);
}

.notice-elegant .notice-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  flex-shrink:0;
  background:rgba(255,255,255,.7);
}

.notice-elegant .notice-heading{
  font-size:14px;
  font-weight:800;
  margin-bottom:4px;
}

.notice-elegant .notice-text{
  font-size:14px;
  line-height:1.55;
}

/* RESULT */
.result-card{
  position:sticky;
  top:96px;
  overflow:hidden;
}

.result-card-premium{
    position:-webkit-sticky;
  position:sticky;
  top:100px;
  padding: 20px;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow:0 25px 60px rgba(20,32,51,.15);
  border:1px solid rgba(77,155,216,.25);
}



.result-top{
  display:grid;
  gap:10px;
  margin-bottom:8px;
}

.result-badge{
  width:max-content;
  background:var(--accent-soft);
  color:#8a6800;
  border-color:#f4de7b;
}

.result-top-note{
  font-size:13px;
  color:var(--muted);
}

.result-title{
  margin:18px 0 10px;
  color:var(--text);
  font-size:clamp(28px, 4vw, 38px);
  line-height:1.1;
}

.result-label{
  font-size:14px;
  color:var(--muted);
  margin-top:10px;
}

.

.result-price{
  animation:popPrice .4s ease;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  white-space:normal;
  font-weight:800;
  color:var(--accent-dark);
  line-height:1.2;
  margin-top:8px;
  margin-bottom:12px;
  letter-spacing:.5px;
  text-shadow:0 6px 18px rgba(244,196,0,.18);
}

.price-anchor{
  font-size:13px;
  color:#6b7280;
}

/* 🔥 hanya angka yang dicoret */
.price-old{
  text-decoration-line:line-through;
  text-decoration-thickness:2px;
  text-decoration-color:#dc2626;
}

.price-main{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-top:4px;
}

.price-main .currency{
  font-size:16px;
  color:#666;
}

.price-main .amount{
  font-size:clamp(34px, 5vw, 52px);
  font-weight:800;
  color:var(--accent-dark);
}
@keyframes popPrice{
  from{
    transform:scale(.95);
    opacity:.6;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}

.price-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:4px;
  padding:6px 12px;
  font-size:13px;
  font-weight:700;
  color:#166534;
  background:#eafaf0;
  border:1px solid #bce8cb;
  border-radius:999px;
}

.badge-highlight{
  color:#dc2626 !important;
  font-weight:900;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(6px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.currency{
  font-size:20px;
  font-weight:700;
  color:var(--accent-dark);
}

.amount{
  font-size:clamp(32px, 4vw, 52px);
  font-weight:800;
  color:var(--accent-dark);
}

.result-subcopy{
  margin-top:12px;
  font-size:14px;
  color:#475467;
  line-height:1.6;
}

.result-list{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.result-row{
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background:var(--surface);
  border:1px solid var(--line);
  transition:.2s ease;
}

.result-row:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(20,32,51,.06);
}

.result-row span{
  color:var(--muted);
  font-size:14px;
  max-width:45%;
}

.result-row strong{
  text-align:right;
  color:var(--text);
  font-size:15px;
  line-height:1.5;
}

.cta-helper-box{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  background:linear-gradient(135deg, #eef7ff 0%, #ffffff 100%);
  border:1px solid rgba(77,155,216,.18);
}

.cta-helper-title{
  font-size:16px;
  font-weight:800;
  color:var(--primary-dark);
  margin-bottom:6px;
}

.result-wa-btn{
  margin-top:16px;
  min-height:56px;
  font-size:16px;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  color:#fff;
  font-weight:800;
  border-radius:18px;
  box-shadow:0 14px 32px rgba(34,197,94,.28);
}

.trust-points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.trust-pill{
  padding:10px 14px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid var(--line);
  color:#475467;
  font-size:13px;
  font-weight:600;
}

.disclaimer-box{
  padding:14px;
  margin-top:14px;
  border-radius:18px;
  background:var(--accent-soft);
  border:1px solid #f3dfa0;
}

.disclaimer-title{
  font-size:14px;
  font-weight:800;
  color:#8a6800;
  margin-bottom:8px;
}

/* TOOLTIP */
.info-tip{
  width:24px;
  height:24px;
  border:none;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  position:relative;
  flex-shrink:0;
}

.info-tip::after{
  content:attr(data-tip);
  position:absolute;
  left:50%;
  bottom:calc(100% + 10px);
  transform:translateX(-50%) translateY(4px);
  width:200px;
  padding:10px 12px;
  border-radius:12px;
  background:#142033;
  color:#fff;
  font-size:12px;
  line-height:1.5;
  text-align:left;
  opacity:0;
  pointer-events:none;
  transition:.18s ease;
  box-shadow:0 18px 30px rgba(20,32,51,.24);
  z-index:999;
}

.info-tip::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:calc(100% + 4px);
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:#142033;
  opacity:0;
  transition:.18s ease;
  z-index:50;
}

.info-tip:hover::after,
.info-tip:hover::before,
.info-tip.is-open::after,
.info-tip.is-open::before{
  opacity:1;
}

.info-tip:hover::after,
.info-tip.is-open::after{
  transform:translateX(-50%) translateY(0);
}

/* PORTFOLIO */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.portfolio-card{
  overflow:hidden;
  border-radius:22px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.portfolio-img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.portfolio-body{
  padding:16px;
}

.portfolio-body h3{
  margin:0 0 8px;
  color:var(--text);
}

/* TESTIMONI */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.testi-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow);
}

.testi-card p{
  margin-top:0;
  color:#344054;
}

/* INFO */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* FOOTER */
.footer{
  padding:28px 0 100px;
  border-top:1px solid var(--line);
  background:#ffffff;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-brand{
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text);
}

.footer-text{
  margin-top:8px;
}

/* MOBILE NAV */
.mobile-bottom-nav{
  position:fixed;
  left:16px;
  right:16px;
  bottom:10px;
  z-index:60;
  display:none;
  grid-template-columns:repeat(5,1fr);
  gap:8px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(77,155,216,.16);
  backdrop-filter:blur(12px);
  border-radius:20px;
  padding:6px;
  box-shadow:0 18px 40px rgba(20,32,51,.14);
}

.mobile-nav-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border-radius:14px;
  text-decoration:none;
  color:#344054;
  font-size:11px;
  text-align:center;
  font-weight:600;
}

.mobile-nav-item-primary{
  background:var(--primary);
  color:#fff;
  min-height:52px;
  border-radius:16px;
  font-weight:800;
}

/* RESPONSIVE */
.desktop-only{
  display:flex;
}

@media (max-width: 1024px){
  .hero-grid,
  .portfolio-grid,
  .testi-grid,
  .info-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .estimator-layout{
    grid-template-columns:1fr;
  }

  .result-card,
  .result-card-premium{
    position:static;
  }
}

@media (max-width: 900px){
  .result-title{
    font-size:32px;
    line-height:1.1;
  }
}

@media (max-width: 900px){
  body{
    padding-bottom:140px;
  }

  .desktop-only{
    display:none;
  }

  .field-grid{
    grid-template-columns:1fr;
  }

  .field-span-2{
    grid-column:span 1;
  }

  .mobile-bottom-nav{
    display:grid;
  }

  .hero{
    padding-top:24px;
  }

  .header-wrap{
    min-height:72px;
  }

  .brand-wrap{
    gap:10px;
  }

  .brand-logo{
    width:clamp(38px, 10vw, 50px);
    max-height:48px;
  }

  .brand{
    font-size:16px;
  }

  .subbrand{
    font-size:12px;
  }

  .container{
    width:min(1200px, calc(100% - 24px));
  }

  .section-card{
    padding:18px;
  }

  .preview-card{
    padding:20px;
  }

  .portfolio-img{
    height:200px;
  }

  .field-card{
    padding:12px;
    border-radius:18px;
    overflow:visible;
  }

  .field-card input,
  .field-card select{
    min-height:50px;
    font-size:15px;
  }

  .label-row{
    align-items:flex-start;
    gap:8px;
  }

  .form-intro{
    font-size:14px;
  }

  .form-subhead h3{
    font-size:21px;
  }

  .notice-elegant{
    padding:14px 15px;
    border-radius:18px;
  }

  .form-actions-premium{
    display:grid;
    grid-template-columns:1fr;
  }

  .form-actions-premium .btn{
    width:100%;
  }

  .result-title{
    font-size:clamp(24px, 3.5vw, 34px);
  }

  .result-price{
    font-size:clamp(40px, 10vw, 54px);
    
  }

  .result-row{
    padding:16px;
  }

  .result-row span{
    max-width:50%;
    font-size:13px;
  }

  .result-row strong{
    font-size:14px;
  }

  .result-wa-btn{
    min-height:54px;
    font-size:15px;
  }

  .info-tip::after{
    width:180px;
    left:auto;
    right:0;
    transform:translateY(4px);
  }

  .info-tip::before{
    left:auto;
    right:8px;
    transform:none;
  }

  .info-tip:hover::after,
  .info-tip.is-open::after{
    transform:translateY(0);
  }
  
  @media(max-width:768px){
  .services-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .service-item{
    height:260px;
    border-radius:20px;
  }

  .service-image,
  .service-image img{
    width:100%;
    height:100%;
  }

  .service-image img{
    object-fit:cover;
    object-position:center;
  }

  .service-overlay{
    padding:16px;
  }

  .service-title{
    font-size:20px;
  }
  
    .services-slider{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .services-grid{
    display:flex;
    gap:12px;
  }

  .service-item{
    min-width:85%;
    height:360px;
    flex-shrink:0;
  }

  .service-image img{
    object-fit:cover;
  }
  
  .services-slider::-webkit-scrollbar{
  display:none;
   padding-bottom:10px;
}


@media(max-width:768px){
  .services-slider{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:12px;
  }

  .services-slider::-webkit-scrollbar{
    display:none;
  }

  .services-grid{
    display:flex !important;
    grid-template-columns:none !important;
    gap:12px;
  }

  .service-item{
    min-width:85%;
    width:85%;
    flex:0 0 85%;
    height:360px;
  }

  .service-image,
  .service-image img{
    width:100%;
    height:100%;
  }

  .service-image img{
    object-fit:cover;
    object-position:center;
  }
  
  
  @media(max-width:768px){
  .services-slider{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    scroll-padding-left:12px;
    padding:0 12px 12px;
  }

  .services-grid{
    display:flex !important;
    gap:12px;
  }

  .service-item{
    flex:0 0 86%;
    min-width:86%;
    scroll-snap-align:start;
  }
  
  /* ================= MOBILE SLIDER FIX ================= */
@media(max-width:768px){

  .section{
    overflow-x:hidden; /* 🔥 biar form ga ikut geser */
  }

  .section-card{
    overflow:hidden; /* 🔥 kunci area */
  }

  .services-slider{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    padding:0 12px 12px;
  }

  .services-slider::-webkit-scrollbar{
    display:none;
  }

  .services-grid{
    display:flex !important;
    gap:12px;
   
  }

  .service-item{
     flex:0 0 70vw !important;
  width:70vw !important;
  max-width:260px;
  height:300px;
    scroll-snap-align:start;
  }

  .service-image,
  .service-image img{
    width:100%;
    height:100%;
  }

  .service-image img{
    object-fit:cover;
    object-position:center;
  }
.service-item.active{
  transform:scale(0.96);
}
}
}
