*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f6f6f6;
  color:#222;
}

.mobile-wrapper{
  max-width:420px;
  margin:auto;
  background:#fff;
  padding:20px;
}

/* LOGO */
.logo img{
  width:140px;
  display:block;
  margin:0 auto 20px;
}

/* HERO */
h1{
  font-size:22px;
  text-align:center;
  margin-bottom:10px;
}

.subtitle{
  text-align:center;
  font-size:14px;
  color:#666;
}

/* CTA */
.cta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:#25D366;
  color:#fff;
  padding:14px;
  border-radius:8px;
  margin:20px 0;
  text-decoration:none;
  font-weight:600;
}

.hero-img{
  width:100%;
  border-radius:12px;
  margin:20px 0;
}

.project-guarantee {
  display: flex;
  gap: 18px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #0b4fd6;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
.project-guarantee::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%   { left: -120%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

/* ICON STYLE */
.project-guarantee i {
  margin-right: 6px;
  color: #ffb703;
}


/* PORTFOLIO */
#portfolio h2{
  margin-bottom:12px;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.portfolio-grid img{
  width:100%;
  border-radius:6px;
}

/* EVENT */
.event{
  margin:30px 0;
}

.event-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  background:#fafafa;
  padding:16px;
  border-radius:12px;
}

.event-card img{
  width:100%;
  border-radius:10px;
}

.event-content h2{
  font-size:16px;
}

.event-content p{
  font-size:13px;
  margin:8px 0;
}

.countdown{
  display:flex;
  gap:8px;
  margin:10px 0;
}

.countdown div{
  background:#111;
  color:#fff;
  padding:8px;
  border-radius:6px;
  font-size:11px;
  text-align:center;
}

.countdown span{
  display:block;
  font-size:16px;
  font-weight:700;
}

.btn{
  display:block;
  text-align:center;
  background:#000;
  color:#fff;
  padding:10px;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
}

/* TESTI */
.testi{
  background:#f1f1f1;
  padding:16px;
  border-radius:10px;
  font-size:13px;
}

.testi span{
  display:block;
  margin-top:8px;
  font-weight:600;
}

/* MOBILE */
@media(max-width:600px){
  .event-card{
    grid-template-columns:1fr;
  }

  .countdown{
    display:grid;
    grid-template-columns:repeat(2,1fr);
  }
}
/* PORTFOLIO */
#portfolio{
  margin:30px 0;
}

#portfolio h2{
  margin-bottom:12px;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.project{
  position:relative;
  border-radius:8px;
  overflow:hidden;
}

.project img{
  width:100%;
  display:block;
  border-radius:8px;
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  opacity:0;
  transition:.3s;
  text-decoration:none;
}

/* DESKTOP HOVER */
.project:hover .overlay{
  opacity:1;
}

/* MOBILE TAP FRIENDLY */
@media(max-width:600px){
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .overlay{
    opacity:1;
    background:rgba(0,0,0,.35);
  }
}
/* ================= FAQ ================= */
/* ================= FAQ PRO ================= */
.faq{
  margin:40px 0;
}

.faq h2{
  font-size:18px;
  margin-bottom:16px;
}

.faq-item{
  background:#fff;
  border-radius:16px;
  margin-bottom:12px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  transition:.35s;
}

.faq-item:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

.faq-question i{
  transition:.35s;
  font-size:16px;
  color:#0b4fd6;
}

.faq-answer{
  padding:0 18px;
  font-size:13px;
  line-height:1.6;
  color:#555;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .35s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:300px;
  opacity:1;
  padding:0 18px 18px;
}

.faq-item.active .faq-question i{
  transform:rotate(135deg);
}
/* =========================
   HOW TO ORDER
========================= */
/* =========================
   HOW TO ORDER (FINAL FIX)
========================= */
.howto{
  padding: 80px 16px;
  text-align: center;
}

.howto h2{
  margin-bottom: 40px;
}

.howto-list{
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howto-item{
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  align-items: flex-start;

  /* FIX UTAMA */
  opacity: 1;
  transform: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step{
  width: 42px;
  height: 42px;
  background: #0b4fd6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.howto-item h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.howto-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media(min-width:768px){
  .howto-item{
    padding: 24px;
  }
}


/* Desktop sedikit lebih lega */
@media(min-width:768px){
  .howto-item{
    padding: 24px;
  }
}
/* =====================
   GLOBAL ANIMATION
   ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

/* delay optional */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }

/* FAQ animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* HOW TO ORDER hover */
.howto-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* EVENT CARD hover */
.event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
/* =========================
   ACTION MENU (DEXORA)
========================= */
.action-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px 0;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: all .3s ease;
  transform: translateY(0);
}

.menu-btn i {
  font-size: 20px;
  color: #1e40af; /* Biru Dexora */
  min-width: 24px;
}

/* Hover & Click Effect */
.menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30,64,175,.25);
}

.menu-btn:active {
  transform: scale(.97);
}

/* PRIMARY (WhatsApp Konsultasi) */
.menu-btn.primary {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
}

.menu-btn.primary i {
  color: #fff;
}

.menu-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.menu-btn small {
  font-size: 12px;
  opacity: .85;
}
.testimonial {
  text-align: center;
  padding: 80px 20px;
  font-family: Poppins, sans-serif;
}

.testimonial-card {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

.avatars {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.avatars img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  opacity: .4;
  cursor: pointer;
}

.avatars img.active {
  width: 70px;
  height: 70px;
  opacity: 1;
  border: 3px solid #cfa86e;
}

.slider {
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  padding: 10px 20px;
}

.slide p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.slide strong {
  display: block;
  color: #222;
}

.slide span {
  font-size: 14px;
  color: #888;
}
.survey-box {
  background: linear-gradient(135deg, #0a2cff, #1e90ff);
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.survey-box h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.survey-box p {
  font-size: 14px;
  opacity: .9;
}

.btn-primary {
  margin-top: 15px;
  background: #fff;
  color: #0a2cff;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

#surveyResult {
  margin-top: 15px;
  background: rgba(255,255,255,.15);
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
}

.wa-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.survey-box {
  margin-top: 30px;
  padding: 16px;
  border-radius: 14px;
  background: #f5f9ff;
}

.result-box {
  margin-top: 15px;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
}

.map-wrapper iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
  margin-top: 10px;
}

.approval-box {
  margin-top: 15px;
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
}

.approval-box input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.btn-primary,
.btn-wa {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
}

.btn-primary {
  background: #0a4cff;
  color: white;
}

.btn-wa {
  background: #25D366;
  color: white;
}

.btn-wa:disabled {
  background: #aaa;
}

.hidden {
  display: none;
}
#map-wrapper iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
  margin-top: 12px;
}

.negotiation-box {
  margin-top: 15px;
  padding: 14px;
  border-radius: 14px;
  background: #f5f9ff;
}

.negotiation-box h4 {
  margin: 0 0 8px;
  color: #0a4cff;
}

.negotiation-box input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.checkbox {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.wa-btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  background: #25D366;
  color: white;
}

.wa-btn:disabled {
  background: #aaa;
}

.hidden {
  display: none;
}



