body {
  font-family: 'Lufga', sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background: #fff;
  
}
body.sidebar-open { overflow: hidden; }
html, body {
  overflow-x: hidden;  
}
.container {
  max-width: 1440px !important;
  padding: 0px 64px;
}

/* ==== NAVBAR ==== */
.nav-shell{
  background: transparent;
  padding: 18px 0px;        
}
.nav-shell .container{
  max-width: 1440px !important;
}
.nav-shell .navbar{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  padding-left: 22px;
  padding-right: 22px;
}
.brand-text{
  font-weight: 700;
  letter-spacing: 0.28em;     
  color: #111;
}
.navbar .nav-link{
  color: #8a8f98;            
  font-weight: 500;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.navbar .nav-link:hover{ 
  color:#111; 
  font-weight: 600;}
.navbar .nav-link.active{
  color: #111;             
  font-weight: 600;
}
.navbar .dropdown-toggle::after{ display:none; } 
.navbar .caret{ opacity:.9; }
.navbar .dropdown-menu{
  min-width: 220px;
  font-size: 20px !important;

}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 20px !important;
}
.navbar .dropdown-menu{
  --bs-dropdown-link-active-bg: #f4f4f4;
  --bs-dropdown-link-active-color: #111;
}
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active{
  background: var(--bs-dropdown-link-active-bg);
  color: var(--bs-dropdown-link-active-color);
  font-weight: 600;        
}

.btn-cta{
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 3px 0 rgba(0,0,0,.2);
  font-weight: 400;
  font-size: 20px;
}

.sidebar-nav {
  position: fixed;
  top: 0;
  right: -280px;   
  left: auto;
  width: 270px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,.15); 
  padding: 20px;
  transition: right .3s ease;  
  z-index: 1050;
}
.sidebar-nav.active { right: 0; }

.sidebar-nav .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;    
  border: 0;
  background: transparent;
  font-size: 32px;
}
.sidebar-header {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-logo {
  max-height: 36px;   
  width: auto;
}
.sidebar-menu {
  list-style:none;
  margin:40px 0 0;
  padding:0;
}
.sidebar-menu > li + li {
  border-top: 1px solid #eef0f2;   /* garis pemisah */
}
.sidebar-overlay {
  position: fixed;
  inset: 0; 
  background: rgba(0,0,0,0.5);
  z-index: 1040;       
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu li { margin-bottom:14px; }
.sidebar-menu a {
  display:block;
  color:#707070;
  font-weight:500;
  text-decoration:none;
  margin: 1rem 0px; 
  
}
.sidebar-menu a.active { 
  font-weight: 700px;
  color:#000; } 

.sidebar-menu .has-dropdown > .dropdown-toggle {
  margin: 1rem 0px; 
}
.sidebar-menu .has-dropdown > .dropdown-toggle::after {
  content: "";
  margin-left: auto;               
  width: .55rem;
  height: .55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);     
  transition: transform .2s ease;
  opacity: .7;
}
.sidebar-menu .has-dropdown.open > .dropdown-toggle::after {
  transform: rotate(135deg);    
  opacity: 1;
}
.sidebar-menu .has-dropdown > .dropdown {
  margin-bottom: .6rem;   
  padding-left: 1.25rem;  
  display:none;
}
.sidebar-menu .has-dropdown > .dropdown-toggle i{
 font-size: 12px !important;
}
.sidebar-menu .has-dropdown .dropdown a {
  font-size: 0.95rem;     
}

.sidebar-menu .has-dropdown.open > .dropdown { display:block; }
.sidebar-nav .btn {
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 50px;
}
.sidebar-nav .btn-cta,
.sidebar-nav .btn.btn-dark {
  position: absolute;
  bottom: 30px;           
  left: 20px;
  right: 20px;             
  margin: 0;
  width: auto;        
}
.sidebar-nav .btn.btn-dark.active {
  color: #fff;       
}
@media(min-width: 1000px){
  .sidebar-nav { display:none; }
}


/* ===== Hero Section ===== */
.hero{
    padding-top: 0px;
}
.hero-title {
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 5rem;
    padding-bottom: 10px;
}
.hero-text{
    color: #707070;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 80px;
    max-width: 502px;
    margin: 0px;
}

.hero-img {
  max-width: 100%;  
  height: auto; 
  margin-right: 0 !important;     
  display: block;
  height: auto;
  object-fit: cover;

  --fade-start: 65%;
  -webkit-mask-image: linear-gradient(to bottom,
                       rgba(0,0,0,1) 0%,
                       rgba(0,0,0,1) var(--fade-start),
                       rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom,
                       rgba(0,0,0,1) 0%,
                       rgba(0,0,0,1) var(--fade-start),
                       rgba(0,0,0,0) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  max-width: none;
  justify-content: flex-end; 
  width: 100vw;  
}

.hero-img-wrap::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 10%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 90%);
  pointer-events: none;
}

.hero .col-lg-7{
  position: relative;
  overflow: visible;
  z-index: 1;
}
.card-desain{
  position: absolute;
  top: 100px;       
  right: 12px;        
  width: fit-content;
  background: #fff;
  border-radius: 16px;
  padding: 20px ;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  z-index: 2;         
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
}
.card-desain:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}
.card-desain__title{ 
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 32px;
  vertical-align: middle;
  padding-bottom: 16px;
 }
.card-desain__desc{ 
font-weight: 400;
font-size: 12px;
line-height: 1rem;
color: #707070;
padding-bottom: 20px;
 }
.card-desain__team img{
  width: 45px; height: 45px; border-radius: 50%;
  border: 2px solid #fff; margin-right: -6px;
}
.card-desain .progress-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #707070;
  margin: 0px !important;
  text-align: right !important;    
}
.card-desain__progress{ height: 10px; background: #eee; border-radius: 8px; overflow: hidden; margin-top: 0px; }
.card-desain__progress .bar{ height: 10px; background: #292929; border-radius: 8px; }

@media (max-width: 700px){
  .card-desain{ display: none;}
}

.btn-dark{
    border-radius: 999px;
    padding: 14px 32px;
    box-shadow: 0 3px 0 rgba(255, 255, 255, 0.705) ;
    font-weight: 400;
    font-size: 20px;
    margin-right: 20px;
}
.btn-light{
    background-color: #F5F5F5;
    border-radius: 999px;
    padding: 14px 32px;
    box-shadow: 0 3px 0 rgba(0,0,0,.2) ;
    font-weight: 400;
    font-size: 20px;
    color: #707070;
}
.text-end{
    padding-top: 120px;
    overflow: visible;
}

/* ==== Stats Bar ==== */
.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}
.stats-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 22px 35px rgba(17,17,17,.08);
  padding:28px 32px;
  display:flex;
  align-items:center;
  gap:20px;                 
}
.stat-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  padding-right:20px;  
}
.stat-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:74px;            
  background:#d9d9d9;
  opacity:.9;
}
.stat-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#292929;              
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 90px;
}
.stat-text .stat-num{
    font-weight: 500;
    font-style: Medium;
    font-size: 42px;
    line-height: 30px;
    letter-spacing: 0%;
    padding-bottom: 10px;
}
.stat-text .stat-label{
    color: #707070;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    margin: 0px;
}

/* ===== Comitment Section ===== */
.commitment{
    padding-top: 100px;
}
.commitment .card {
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.commitment-title{
    font-weight: 500;
    font-style: Medium;
    font-size: 46px;
    padding-bottom: 18px;
}
.commitment-text{
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 30px;
}
.vision-card{
    position: relative;
    border-radius: 18px;
    box-shadow: 0 24px 38px rgba(17,17,17,.08);
    overflow: hidden !important; 
}
.vision-card::before{
    content: "";
    position: absolute;
    left: -6px;          
    top: 70px;               
    width: 20px;
    height: 65%;
    background: #292929;
    border-radius: 12px;
}
#visionCarousel .carousel-inner {
    min-height: auto;
    overflow: hidden !important; 
}
#visionCarousel .carousel-item {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

#visionCarousel .carousel-item-next,
#visionCarousel .carousel-item-prev,
#visionCarousel .carousel-item.active {
    display: block;
}
.vision-text{
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #707070;
}
.vision-controls{
    position: absolute;
    right: 24px;
    bottom: 45px;
    display: flex;
    gap: 12px;
}
.vm-text{
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 30px;
    text-align: left;
    margin: 0px;
    padding-top: 20px;
}
.vision-btn{
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

/* ===== Services Section ===== */
.services{
  padding-top: 100px;
}
.services-title{
  text-align: center;
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
}
.services-subtitle{
  font-weight: 600;
  font-size: 26px;
  color: #111;
  text-align: center;
  margin: 6px 0 0;
}
.service-item{
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  background:#f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%, 0 105px);
          clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%, 0 105px);

}

.service-thumb{
  position: relative;
  height: 100%;
  padding: 18px;           
}
.service-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display:block;
  -webkit-clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%, 0 100px);
          clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%, 0 100px);
}
.service-body{
  padding: 28px 32px;
}
.service-name{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  padding-bottom: 20px;
  color: #292929;
}
.service-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.service-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 3rem;
  color: #707070;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 20px;
}
.service-list .check{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
}
.service-list .check::after{
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: block;
}
.service-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  padding-top: 70px;
  font-weight: 400;
  font-size: 20px;
}
.service-link .arrow{ transition: transform .2s ease; font-size: 20px; }
.service-link:hover .arrow{ transform: translateX(4px); }

/* ===== Process Section ===== */
.process{
  padding-top: 100px;
}
.process-title{
  color: #292929;
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  padding-bottom: 64px;
  margin: 0px;
}
.step-timeline{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 46px;
}
.step{
  position: relative;
  flex: 1;  
  display: flex;
  align-items: start;
}
.step:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  right: -10%;
  border-top: 2px dashed #ccc;
  transform: translateY(-50%);
  z-index: 0;
}
.step-badge{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #292929;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 2;
}
.step-badge-2{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #707070;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 2;
}

.process-head{
  color: #292929;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  padding-bottom: 18px;
  margin: 0px;
}
.process-desc{
  color:#707070;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 46px;
  margin: 0px;
}
.process-thumb{
  background:#fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(17,17,17,.06);
}
.process-thumb img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display:block;
}

/* ===== Testimonials ===== */
.testimonials{
  padding-top: 100px;
}
.testimonials .tst-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  text-align: center;
  color: #292929;
  padding-bottom: 18px;
}
.testimonials .tst-sub{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #707070;
  max-width: 716px;
  margin: 0px auto;
  padding-bottom: 64px;
}

.testimonial-card .carousel-inner,
.testimonial-card .carousel-item,
.testimonial-card .row,
.testimonial-card .col-lg-6,
.tst-image-wrap{
  height: 100%;                 
}
.testimonial-card{
  border-radius: 18px;
  overflow: visible;
  position: relative;
  max-width: 1156px;
  margin: 0px auto;
  height: 480px;
}
.tst-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  height: 100%;
  padding-bottom: 20px;      
  box-sizing: border-box;
  background-color: #f5f5f5;
}
.tst-client {
  margin-top: auto;            
}
.tst-feedback-title{
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  padding-bottom: 16px;
}
.tst-paragraph{
  color:#707070;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.tst-avatar{
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.tst-name{ 
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  color: #292929;
}
.tst-role{ 
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #707070;
}
.tst-image-wrap{
  position: relative;
  height: 100%;
  background:#ddd;
}
.tst-image-wrap img{
  width:100%; height:100%;
  display:block; object-fit:cover;
}
.tst-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  cursor:pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 5;
}
.tst-nav.prev{ left: -70px; background:#ECECEC; color:#555; font-size: 28px; }
.tst-nav.next{ right: -70px; background:#1a1a1a; color:#fff; font-size: 28px; }

.testimonial-card.carousel .carousel-inner{ overflow: hidden; border-radius: 18px; }
.testimonial-card.carousel .carousel-item
{ 
  transition: transform .6s ease; 
}

/* ===== Contact Section ===== */
.contact{
  padding: 100px 64px 0px;
}
.contact-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  color: #292929;
  padding-bottom: 64px;
}
.contact-label{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: #292929;
}
.contact-field{
  background:#f3f3f3;
  color: #707070;
  font-weight: 400;
  font-size: 18px;
}
.contact-field::placeholder{ color:#9a9a9a; }
.contact-field:focus{
  background:#f0f0f0;
  box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.contact-form textarea.contact-field{
  height: auto;          
  resize: none;
}
.position-relative .select-caret{
  position:absolute; 
  right:16px; top:50%;
  transform: translateY(-50%);
  pointer-events:none;
  color:#6b7280;
}
.title-map{
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  color: #292929;
  padding-bottom: 10px;
  margin: 0px;
}
.contact-cta{
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 18px;
}
.contact-card{
  background:#f5f5f5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 22px rgba(17,17,17,.10);
}
.contact-card .text-muted{
  color:#707070 !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.soc-pill{
  width: 50px; height: 50px;
  border-radius: 50%;
  background:#1a1a1a;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  box-shadow: 0 6px 16px rgba(17,17,17,.12);
}
.soc-pill i{
  color: #fff;
  font-size: 20px;
}

/* ===== Footer ===== */
.site-footer{
  background:#292929;
  color:#d9d9d9;
  padding: 36px 0 24px;
  margin-top: 100px !important;
}
.footer-container{ max-width:1440px !important; }
.footer-brand{
  font-weight:700; letter-spacing:.28em; color:#fff;
}
.footer-desc{ 
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  padding-bottom: 32px;
  max-width: 377px;
  margin: 0px;
 }

.footer-head{ 
  color:#fff; 
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  padding-bottom: 32px;
 }
.footer-list{ list-style:none; margin:0; padding:0; }
.footer-list a{
  color:#cfcfcf; 
  text-decoration:none; 
  display:inline-block; 
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 12px;
}
.footer-list a:hover{ color:#fff; }
.soc{
  width:60px; height:60px; border-radius:50%;
  background:#292929; color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
}

.footer-line{
  border:0; border-top:2px solid #707070;
  margin: 46px 0 28px;
}
.footer-bottom{ 
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  color: #fff;
 }

 /* PAGE TENTANG KAMI */
.about-hero{
  padding-top: 90px;
 }
.about-hero .about-section-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 0px;
  padding-bottom: 18px;
}
.about-hero .hero-title 
{
  font-weight: 500;
  font-style: Medium;
  font-size: 64px !important;
  line-height: 5rem;
  color: #292929;  
}
.about-hero .hero-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
}
.about-hero{
  padding-bottom: 100px;
}

.about-visimisi{
  padding: 0px 0px 100px;
}
.about-visimisi .about-section-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  text-align: center;
  margin: 0px;
  padding-bottom: 18px;
}
.about-visimisi .text-muted{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.about-visimisi .vision-card{border-radius:18px; box-shadow:0 22px 35px rgba(17,17,17,.8);background:#fff;padding:0px}
.about-visimisi .vision-card::before{
    content: "";
    position: absolute;
    left: -6px;          
    top: 55px;               
    width: 20px;
    height: 65%;
    background: #292929;
    border-radius: 12px;
}
.about-visimisi .carousel{
  padding: 58px;
}

.about-how .about-section-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  color: #292929;
  margin: 0px;
}
.how-title, .how-text{
  margin: 0px;
  padding: 0px;
  margin: auto 0;
  display: flex;
  align-items: center;  
  justify-content: center;
}
.how-text .text-muted{
  margin: 0px;
}
.how-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  max-width: 563px;
  margin-left: auto;   
}
.how-title{
  max-width: 589px;
}
.reason-card{
  border-radius:16px;
  box-shadow:0 22px 35px rgba(17,17,17,.08);
  background:#fff;
  padding:22px
}
.reason-number{
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#292929;
  color:#fff;
  font-weight:600;
  margin-bottom:20px;
  font-size: 20px;
}
.reason-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 30px;
  color: #292929;
  padding-bottom: 20px;
  margin: 0px;
}
.reason-text{
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #707070;
  margin: 0px;
}
.cta-card{
  background: #F5F5F5;
  border-radius: 22px;
  overflow: hidden;              
  box-shadow:0 22px 35px rgba(17,17,17,.08);
}

.about-last{
  padding: 100px 0px;
}
.last-text{
  padding: 30px 60px;
}
.cta-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  color: #292929;
  padding-bottom: 24px;
  margin: 0px;
}
.cta-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  padding-bottom: 60px;
  margin: 0px;

}
.cta-image{
  display: block;
  width: 100%;
  height: 100%;
  height: auto;
}
.cta-card{
  box-shadow: 0 24px 36px rgba(17,17,17,.13);
}
.about-img{
  max-height: 450px;
}
.last-img{
  padding-top: 40px;
}

/* PAGE RENOVASI */
.renovasi-hero{
  max-width: 1312px !important;
  margin: 90px auto 100px ;
  padding: 64px 0px 64px ;
  background-color: #f5f5f5;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(17,17,17,.10);
}
.renovasi-hero .hero-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  text-align: center;
}
.renovasi-hero .hero-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  max-width: 865px;
  padding-bottom: 64px;
}

/* === MARQUEE THUMBS (no JS) === */
.thumb-marquee{
  position:relative;
  overflow:hidden;
  padding: 0 16px;            
  mask-image: linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
}

.thumb-track{
  display:flex;
  gap:24px;
  width: max-content;            
  animation: thumbs-scroll 22s linear infinite; 
}

.thumb{
  width: clamp(220px, 22vw, 320px);
  height: 380px;
  object-fit: cover;
  border-radius:16px;
  box-shadow:0 10px 22px rgba(17,17,17,.08);
  flex: 0 0 auto;                 
  pointer-events: none;           
  user-select: none;
}

@keyframes thumbs-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } 
}

@media (prefers-reduced-motion: reduce){
  .thumb-track{ animation-duration: 60s; }
}

/* ===== FAQ (Renovasi) ===== */
.faq{ padding: 100px 64px 0px; }
.faq-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  margin: 0px;
  padding-bottom: 64px;
}
.faq-list{ display: flex; flex-direction: column; gap: 32px; }

.faq-item{
  background:#f5f5f5; border-radius:16px;
  box-shadow: 0 10px 22px rgba(17,17,17,.10);
  overflow: hidden;
}
.faq-q{
  width:100%; background:transparent; border:0; outline:0;
  display:flex; align-items:center; justify-content:space-between;
  text-align:left; padding:18px 20px 18px 22px; gap:14px;
   color:#707070; font-weight: 400; font-size: 24px;

}
.faq-q .icon{
  width:36px; height:36px; border-radius:50%; font-size: 32px;
  background:transparent; color:#292929; display:flex; align-items:center; justify-content:center;
  font-weight:400; line-height:1;
}
.faq-a{
  color:#cfcfcf; background:#1a1a1a;  
  padding:0 22px; 
  max-height:0; overflow:hidden;
  transition:max-height .35s ease;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
.faq-item.is-open .faq-q{ background:#1a1a1a; color:#fff; }
.faq-item.is-open .faq-q .icon{ background:transparent; color:#fff; font-size: 32px; }
.faq-item.is-open .faq-a{ padding:14px 22px 22px; max-height:400px;
font-weight: 400;
font-size: 20px;
line-height: 32px;
 }

/* Sidebar FAQ */
.faq-side{ display:flex; flex-direction:column; gap:32px; }
.ask-card{
  background:#f5f5f5; border-radius:16px; padding:24px;
  box-shadow: 0 10px 22px rgba(17,17,17,.10);
  display: flex;
  flex-direction: column;  
  justify-content: center;    
  align-items: center;        
  text-align: center;   
}
.ask-icon{
  width:120px; height:120px; border-radius:12px; color:#fff;
  display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.ask-title{ 
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  text-align: center;
  color: #292929;
  padding-bottom: 14px;
}
.ask-text{ 
  color:#707070; 
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding-bottom: 32px;
 }

.help-card{
  background:#f5f5f5; border-radius:16px; padding:16px 18px;
  box-shadow: 0 10px 22px rgba(17,17,17,.10);
  display:flex; align-items:center; gap:12px;
}
.help-icon{
  width:64px; height:64px; border-radius:50%;
  background:#292929; color:#fff; display:flex; align-items:center; justify-content:center;
}
.help-icon i{font-size: 24px;}
.help-texts{ line-height:1.1; }
.help-head{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  padding-bottom: 6px;
}
.help-sub{ 
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  color: #292929;
  padding-bottom: 6px;
 }
.help-phone{ 
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  text-decoration: none;
 }

 /* Blog Page */
 .blog{
  padding: 100px 64px;
 }
 .blog-bawah{
  padding: 100px 64px;
 }
 .blog-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 100%;
  color: #292929;
  padding-bottom: 20px;
  max-width: 696px;
 }
 .blog-title-2{
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  line-height: 100%;
 }
 .blog-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  padding-bottom: 60px;
  max-width: 798px;
 }
 .blog-text-2{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
 }
  .blog img, .blog-bawah img{
    border-radius: 18px;
    width: 100%;
  }

 .blog-head{
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 46px;
  color: #292929;
  padding: 24px 0px 32px;
  margin: 0px;
 }

 .blog-head-2{
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  padding: 32px 0px 24px;

 }
 .blog-desc{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  padding-bottom: 32px;
  margin: 0px;
 }

 .blog-link{
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #292929;
 }

 .blog-kanan{
  padding: 20px;
  border-radius: 18px;
 }
  .blog-kiri{
  padding: 20px;
  border-radius: 18px;
 }
  .article{
    padding: 40px 64px;
  }
  .article a{
    text-decoration: none;
    color: #292929;
  }
 .hero-text a{
    font-weight: 700;
    color: #292929;
  }
  .profile-blog img{
    width: 100%;
  }
  .strong-text{
    color: #292929;
    font-weight: 600;
  }
  .desc-title{
    font-size: 32px;
    padding-top: 20px;
  }
  /* .hero-desc-title{
    font-size: 46px;
    padding-bottom: 20px;
  } */
  .blog-kiri ul, .blog-kiri ol{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  color: #707070;
  padding-bottom: 10px;
  margin: 0px;
 }
  /* Scroll to Top Button */
  .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .scroll-top.show {
    opacity: 1;
    visibility: visible;
  }

  .grecaptcha-badge {
    visibility: hidden;
  }

  .recaptcha-attribution {
    font-size: 12px;
    color: #666;
    text-align: left;
    margin-top: 20px;
  }

  .recaptcha-attribution a {
    color: inherit;
    text-decoration: underline;
  }


/* =========================================
   MOBILE < 900px
   ========================================= */
  @media (max-width: 900px){

    .container{ padding: 0 10px; }

    /* NAVBAR */
    .nav-shell{ padding: 10px 0px 0px; }
    .nav-shell .navbar{ padding-left: 14px; padding-right: 14px; }
    .navbar-brand img{max-width: 150px; }
    .btn-cta{ padding: 10px 16px; font-size: 16px; }

    /* HERO */
    .hero{ padding-top: 40px !important; }
    .hero-title{ font-size: 32px; line-height: 44px; padding-bottom: 8px; }
    .hero-text{ font-size: 16px; line-height: 26px; padding-bottom: 24px; max-width: 100%; }
    .hero-btns{
        display: flex;
        justify-content: space-between; 
        gap: 10px;      
      }
      .hero-btns .btn{
        flex: 1;                      
        border-radius: 999px;
        padding: 12px 0;
        text-align: center;
        font-size: 16px;                

      }
    .hero .text-end{ padding-top: 40px !important; }
    .hero-img-wrap{ display:block; }
    .hero .img-fluid{ width:100%; height:auto; }

    .card-desain{ top: 50px; right: 12px; width: fit-content; }
    .card-desain__title{ 
      font-size: 14px;
    }

    .stats-wrap{ margin-top: 12px; }
    .stats-card{
      padding:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 16px;
    }
    .stat-item{ gap:12px; padding-right:0; }
    .stat-item:not(:last-child)::after{ display:none; }
    .stat-icon{ width:56px; height:56px; flex:0 0 56px; }
    .stat-text .stat-num{ font-size:20px; line-height:1; padding-bottom:6px; }
    .stat-text .stat-label{ font-size:14px; line-height:20px; }

    /* COMMITMENT */
    .commitment{ padding-top: 50px !important; }
    .commitment-title{ font-size:28px; padding-bottom:10px; }
    .commitment-text{ font-size:16px; line-height:26px; padding-bottom: 20px;}
    .commitment .btn{ width:100%; font-size: 16px;}
    .commitment img{ width: 100%;}

    /* VISI / MISI (card carousel) */
    .vision-card{ border-radius:16px; }
    .vision-card::before{ display:none; } 
    .vision-text{ font-size:16px; line-height:26px; justify-content: justify; }
    .vm-text{ font-size:22px; line-height:26px; padding-top:12px; }
    .vision-controls{ width: 100px; bottom: 20px;}
    .vision-controls button {
      width: 40px;               
      height: 40px;            
      border-radius: 50%;        
      box-shadow: none;         
      font-size: 18px;            
      padding: 0;              
    }

    /* SERVICES */
    .services{ padding-top:50px !important; }
    .services-title{ font-size:28px; line-height:36px; }
    .service-item{ -webkit-clip-path: none; clip-path:none; border-radius:16px; }
    .service-thumb{ padding:12px; }
    .service-thumb img{ -webkit-clip-path:none; clip-path:none; border-radius:12px; }
    .service-body{ padding:16px; }
    .service-name{ font-size:26px; padding-bottom:10px; }
    .service-list li{ font-size:16px; line-height:28px; gap:8px; }
    .service-list .check{ width:22px; height:22px; }
    .service-link{ padding-top:10px; font-size:16px; }

    /* PROCESS */
    .process{ padding-top:50px !important; }
    .process-title{ font-size:28px; padding-bottom: 40px; }
    .step-timeline{ padding-bottom:24px; gap:15px; max-width: fit-content;}
    .step{ justify-content:left; }
    .step:not(:last-child)::after{ display:none; }        /* garis putus-putus disembunyikan */
    .step-badge, .step-badge-2{ width:40px; height:40px; font-size:16px; }
    .process-head{ font-size:22px; padding-bottom:5px; }
    .process-desc{ font-size:16px; line-height:20px; padding-bottom:14px; }
    .process-thumb{ border-radius:12px; box-shadow:0 10px 24px rgba(17,17,17,.06); max-height: 250px;}

    /* TESTIMONIALS */
    .testimonials{ padding-top:50px !important; padding-bottom: 40px; }
    .tst-title{ font-size:28px !important; padding-bottom:10px; }
    .tst-sub{ font-size:16px !important; line-height:1.5rem !important; padding-bottom:50px !important; }
    .testimonial-card{ height:450px; max-width:100%; }
    .testimonial-card .carousel-inner{ border-radius:14px; }
    .tst-text{ padding:18px !important; }
    .tst-feedback-title{ font-size:22px; padding-bottom:10px; }
    .tst-paragraph{ font-size:16px; line-height:26px; }
    .tst-name{ font-size:18px; }
    .tst-role{ font-size:14px; }
    .tst-image-wrap{ display: none; }
    .tst-image-wrap img{ height:100%; }
    .tst-nav{ width:40px; height:40px; font-size:22px; }
    .tst-nav.prev{ left: 35%; top: -35px;}
    .tst-nav.next{ right: 35%; top: -35px; }

    .tst-text{ padding-bottom:20px !important; }
    .tst-client{ margin-top:auto; }

    /* CONTACT */
    .contact{ padding:50px 20px 0px !important; }
    .contact-title{ font-size:28px; padding-bottom:18px; }
    .contact-label{ font-size:16px; }
    .contact-field{ font-size:16px; border-radius:12px; padding:12px 14px; }
    .contact-cta{ width:100%; font-size: 16px; }
    .contact-card{ margin-top:8px; border-radius:14px; }
    .title-map{ font-size:18px; padding-bottom:8px; }
    .contact-card .text-muted{ font-size:16px; line-height:26px; }
    .soc-pill{ width:44px; height:44px; }

    /* FOOTER */
    .site-footer{ padding:28px 0 18px; margin-top: 40px !important; }
    .footer-container{ padding:0 20px !important; }
    .footer-head{ font-size:18px; padding-bottom:12px; }
    .footer-desc{ font-size:16px; line-height:26px; padding-bottom:18px; }
    .footer-list a{ font-size:16px; padding-bottom:8px; }
    .soc{ width:44px; height:44px; font-size:18px; }
    .footer-line{ margin:18px 0 12px; }
    .footer-bottom{ font-size:14px; text-align: center;}
    .footer-container .col-lg-3,.col-lg-2 {width: 100%;}

    /* TENTANG KAMI */
    .about-hero{padding-bottom: 50px; padding-top: 0px !important;}
    .about-hero .container{padding-top: 60px !important;}
    .about-hero .col-lg-5{margin-top: 0px; padding-top: 0px !important;}
    .about-hero .text-end {padding-top: 40px !important; margin: 0px;}
    .about-hero .text-end img{width: 100%; padding: 0px 10px;}
    .about-hero .hero-title {font-size: 32px !important; line-height: 2.5rem;}
    .about-hero .hero-text {font-size: 16px; line-height: 1.7rem; padding-bottom: 0px;}
    .about-section-title{font-size: 28px !important;}
    .container{padding: 0px 20px;}
    .about-visimisi{padding-bottom: 60px;}
    .about-visimisi .text-muted{font-size: 16px; line-height: 1.5rem; padding-bottom: 40px;}
    .about-visimisi .carousel{ padding: 40px;}
    .about-visimisi .container{ padding: 0px 20px;}
    .about-how .how-title, .how-text{justify-content: start; margin-left: 0px;}
    .about-how .img-fluid{width: 100%;}
    .about-how .about-section-title{padding-bottom: 20px;}
    .about-how .text-muted{font-size: 16px; line-height: 1.5rem;}
    .how{padding-bottom: 20px !important;}

    .reason-number{width: 40px; height: 40px; font-size: 18px;}
    .reason-title{font-size: 18px; padding-bottom: 10px;}
    .reason-text{font-size: 16px; line-height: 1.5rem;}
    .about-how .row-how, .about-how .col-lg-6{padding: 0px;}
    .about-last{padding: 40px 0px;}
    .cta-title{font-size: 28px;}
    .cta-text{font-size: 16px; padding-bottom: 30px; line-height: 1.5rem;}
    .about-last .about-img{max-width: 100%;}
    .about-last .row{flex-direction: column-reverse}
    .last-text{margin: 0px; padding: 30px ;}

    .renovasi-hero{
      max-width: 100%;
      margin: 40px 0px ;
      padding: 40px 20px !important;
      margin: 40px 20px 0 !important;
    }
     .renovasi-hero .hero-title{
      font-size: 32px;
      line-height: 2.2rem;
      padding-bottom: 20px !important;
    }
    .renovasi-hero .hero-text{
      font-size: 16px;
      line-height: 1.5rem;
      padding-bottom: 40px;
    }
    .renovasi-hero .hero-title{
      font-size: 32px;
    }
    .thumb{ height: 300px; }

    .faq {padding: 50px 24px 40px;}
    .faq-title{ font-size:28px; padding-bottom: 20px; }
    .faq-q{ font-size:16px; padding:16px; }
    .faq-item.is-open .faq-a{ padding:12px 16px 16px; font-size: 16px !important; line-height: 1.5rem; }
    .help-sub{font-size: 20px;}

    .thumb{ height:180px; width: clamp(160px, 42vw, 180px); }
    .thumb-track{ gap:16px; animation-duration: 18s; }

    .blog{padding-top: 50px;}
    .blog-hero{padding-top: 0px !important;}
    .blog-title{font-size: 32px; line-height: 2.5rem;}
    .blog-text{padding-bottom: 0px; font-size: 16px; line-height: 1.5rem;}
    .blog-head{font-size: 28px; line-height: 2rem; padding-bottom: 20px;}
    .blog-desc{font-size: 16px; line-height: 1.5rem;}
    .blog-link{font-size: 16px;}
    .blog-text-2{font-size: 16px; line-height: 1.5rem;}
    .blog-kiri{padding-top: 0px;}
    .blog-kiri ul, .blog-kiri ol{font-size: 16px;}
  }

  @media (min-width: 750px) and (max-width: 900px){
    .testimonial-card{ height:320px; max-width:100%; }
  }

  /* =========================================
   TABLET >900px - <1200px
   ========================================= */
  @media (min-width: 901px) and (max-width: 1200px){
    .text-start{
      width: 60%;
    }
    .text-end{
      width: 40%;
      padding-top: 0px;
    }
    .stats-card{
      margin-top: 80px;
      padding:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 16px;
    }
    .service-item{ -webkit-clip-path: none; clip-path:none; border-radius:16px; }
    .service-thumb img{ -webkit-clip-path:none; clip-path:none; border-radius:12px; }
    .service-link{ padding-top: 20px;}
    .tab1{width: 60%;}
    .tab2{width: 40%;}
    
    .renovasi-hero{
      max-width: 100%;
      margin: 40px 64px !important;
      padding: 0px 20px 40px;
    }
    
  .hero .col-lg-7 { padding-right: 0; } 
  .hero-img-wrap{
    width: calc(100% + (50vw - 50%));
  }
  .process .process-head{font-size: 28px !important;}
  .process .process-desc{font-size: 18px !important;}
  .hero .btn-dark{font-size: 16px;}
  .hero .hero-title{font-size: 46px; line-height: 3rem; }
  .process .process-head{font-size: 24px !important;}
  .nav-shell .container{padding: 0px 20px !important;}
  .nav-shell .btn-dark{margin: 0px;}
  .renovasi-hero .hero-title{padding: 40px 20px !important; font-size: 46px !important; line-height: 3rem;}
  .about-hero .hero-title{line-height: 3rem; font-size: 46px !important;}
  .about-hero img{width: 100%;}
  .container{padding: 0px 64px !important;}
  .commitment, .services, .process, .faq,.contact{padding-top: 50px !important;}
  .testimonials{padding: 50px 100px 0px !important;}
  .faq{padding-bottom: 50px !important;}
  .tab1{width: 70% !important;}
  .tab2{width: 30% !important;}
  .commitment img{width: 100%;}
  .site-footer{margin-top: 50px;}
  .about-hero .col-lg-5{width: 60% !important;}
  .about-hero .col-lg-7{width: 40% !important;}

  .blog{padding-top: 50px !important;}
  .blog-title{font-size: 46px;}
  .blog-head{font-size: 28px; line-height: 2rem;}
  .blog-hero{padding-top: 0px !important;}
  }
