*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#fff;
  color:#222;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

a{
  text-decoration:none;
}

/* NAVBAR */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  background:#fff;
  z-index:999;
  box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  font-size:1.8rem;
  font-weight:800;
  color:#d70000;
}

.logo span{
  color:#111;
}

.menu{
  display:flex;
  gap:30px;
  align-items:center;
}

.menu a{
  color:#333;
  font-weight:500;
  transition:.3s;
}

.menu a:hover{
  color:#d70000;
}

.btn{
  background:#d70000;
  color:#fff !important;
  padding:12px 24px;
  border-radius:12px;
  font-weight:600;
  transition:.3s;
  display:inline-block;
}

.btn:hover{
  background:#aa0000;
  color:#fff !important;
}

.menu-checkbox {
  display: none;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* HERO */

.hero{
  padding-top:150px;
  padding-bottom:100px;
  background:linear-gradient(135deg,#fff 0%,#fff5f5 100%);
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:#ffdfdf;
  border-radius:50%;
  top:-150px;
  right:-150px;
  z-index:0;
}

.hero-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

.hero-text h1{
  font-size:3.8rem;
  line-height:1.15;
  margin-bottom:20px;
  font-weight:800;
  color:#111;
}

.hero-text h1 span{
  color:#d70000;
}

.hero-text p{
  font-size:1.1rem;
  color:#666;
  margin-bottom:35px;
  max-width:550px;
}

.hero-btns{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn-secondary{
  border:2px solid #d70000;
  color:#d70000;
  padding:12px 24px;
  border-radius:12px;
  font-weight:600;
  transition:.3s;
}

.btn-secondary:hover{
  background:#d70000;
  color:#fff;
}

.hero-image img{
  width:100%;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* STATS */

.stats{
  margin-top:-40px;
  position:relative;
  z-index:10;
}

.stats-wrapper{
  background:#fff;
  border-radius:25px;
  padding:35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stat-box{
  text-align:center;
}

.stat-box h2{
  color:#d70000;
  font-size:2rem;
  margin-bottom:5px;
}

.stat-box p{
  color:#666;
  font-size:.95rem;
}

/* ABOUT */

.about{
  padding:100px 0;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:25px;
}

.section-title{
  margin-bottom:20px;
}

.section-title span{
  color:#d70000;
  font-weight:700;
  text-transform:uppercase;
  font-size:.9rem;
  letter-spacing:1px;
}

.section-title h2{
  font-size:2.7rem;
  margin-top:10px;
  line-height:1.2;
  color:#111;
}

.about-text p{
  color:#666;
  margin-bottom:18px;
  font-size:1rem;
}

/* SERVICES */

.services{
  padding:100px 0;
  background:#fafafa;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:50px;
}

.service-card{
  background:#fff;
  padding:35px 30px;
  border-radius:25px;
  transition:.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border-bottom:4px solid transparent;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#d70000;
}

.service-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 15px auto;

    font-size:36px;
    line-height:1;

    text-align:center;
}

.service-card h3{
  margin-bottom:12px;
  font-size:1.3rem;
}

.service-card p{
  color:#666;
  font-size:.95rem;
}

/* PACKAGE */
.packages{
  padding:100px 0;
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  margin-top:60px;
}

.package-card{
  background:#fff;
  border-radius:25px;
  padding:45px 35px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:.3s;
  position:relative;
}

.best-seller{
    position: absolute;
    top: 12px;
    right: 12px;

    background: #6c757d;
    color: white;

    padding: 4px 10px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    z-index: 10;

    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.package-card:hover{
  transform:translateY(-10px);
}

.featured{
  background:#d70000;
  color:#fff;
}

.featured p,
.featured li{
  color:#fff !important;
}

.tag{
  position:absolute;
  top:-12px;
  right:25px;
  background:#111;
  color:#fff;
  padding:6px 16px;
  border-radius:30px;
  font-size:.8rem;
}

.package-card h3{
  font-size:1.6rem;
  margin-bottom:10px;
}

.speed{
  font-size:3rem;
  font-weight:800;
  margin:15px 0;
  color:#d70000;
}

.featured .speed{
  color:#fff;
}

.package-card ul{
  list-style:none;
  margin:25px 0;
}

.package-card ul li{
  margin:12px 0;
  color:#555;
}

/* CTA */

.cta{
  padding:100px 0;
  background:linear-gradient(135deg,#c40000,#ff2e2e);
  color:#fff;
  text-align:center;
}

.cta h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  color:#f2f2f2;
}

.cta .btn{
  background:#fff;
  color:#d70000;
}

/* REGISTER SECTION */

.register-section{
  padding:100px 0;
  background:#d70000;
}

.register-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.register-left{
  position:relative;
}

.register-left img{
  width:100%;
  border-radius:30px;
  display:block;
}

.bubble{
  position:absolute;
  top:50%;
  right:-20px;
  transform:translateY(-50%);
  background:#fff;
  padding:25px;
  border-radius:20px;
  max-width:300px;
  font-weight:600;
  color:#d70000;
  line-height:1.6;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.register-right{
  background:#fff;
  padding:45px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.register-right h2{
  margin-bottom:30px;
  font-size:2rem;
  color:#111;
}

.register-title{
    text-align:center;
    margin-bottom:50px;
}

.register-title span{
    display:block;
    color:#ffd6d6;
    font-size:22px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.register-title h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:0;
    line-height:1.2;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-weight:600;
  color:#333;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:15px;
  border:1px solid #ddd;
  border-radius:12px;
  outline:none;
  font-size:1rem;
  transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:#d70000;
  box-shadow:0 0 10px rgba(215,0,0,0.15);
}

.form-group textarea{

    width:100%;

    min-height:160px;

    padding:15px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:15px;

    outline:none;

    resize:vertical;

    transition:.3s;

}

.form-group textarea:focus{

    border-color:#d70000;

    box-shadow:0 0 10px rgba(215,0,0,.15);

}

.otp-group{
  display:flex;
  gap:10px;
}

.otp-group input{
  flex:1;
}

.otp-group button{
  background:#d70000;
  color:#fff;
  border:none;
  padding:0 20px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.otp-group button:hover{
  background:#a40000;
}

.submit-btn{
  width:100%;
  background:#d70000;
  color:#fff;
  border:none;
  padding:16px;
  border-radius:14px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.submit-btn:hover{
  background:#a40000;
}

/* COMPLAINT SECTION */

.complaint-section{
  padding:100px 0;
  background:#fafafa;
}

.complaint-wrapper{
  max-width:800px;
  margin:auto;
}

.complaint-form{
  background:#fff;
  padding:45px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.complaint-form .submit-btn{
  width:100%;
}

/* FOOTER */

footer{
  background:#111;
  color:#ccc;
  padding:35px 0;
  text-align:center;
}

footer span{
  color:#ff5c5c;
}

@media(max-width:992px){

  .hero-wrapper,
  .about-wrapper,
  .services-grid,
  .package-grid,
  .stats-wrapper{
    grid-template-columns:1fr;
  }

  .hero-text{
    text-align:center;
  }

  .hero-btns{
    justify-content:center;
  }

  .hero-text h1{
    font-size:2.8rem;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .hero-text p{
    max-width:100%;
    margin:0 auto 35px;
  }

  .hero-image{
    text-align:center;
  }

  .hero-image img{
    max-width:600px;
  }

  .register-wrapper{
    grid-template-columns:1fr;
  }

  .bubble{
    position:relative;
    top:0;
    right:0;
    transform:none;
    margin-top:20px;
    max-width:100%;
  }

}

@media(max-width:768px){

  /* --- NAV RESPONSIVE & HAMBURGER --- */
  .hamburger-btn {
    display: flex;
  }

  .navbar{
    flex-direction:row;
    justify-content: space-between;
    padding: 15px 0;
  }

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.3s ease;
  }

  .menu-checkbox:checked ~ .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-checkbox:checked ~ .hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-checkbox:checked ~ .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  .menu-checkbox:checked ~ .hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .menu .btn {
    width: auto;
    display: inline-block;
    color: #fff !important;
  }

  .menu .btn:hover {
    color: #fff !important;
    background: #aa0000;
  }

  /* --- HERO & GENERAL HP --- */
  .hero{
    padding-top:140px;
    padding-bottom:60px;
  }

  .hero-wrapper{
    gap:30px;
  }

  .hero-text h1{
    font-size:2rem;
  }

  .hero-text p{
    font-size:1rem;
  }

  .hero-btns{
    flex-direction:column;
    align-items:center;
  }

  .hero-btns .btn,
  .hero-btns .btn-secondary{
    width:100%;
    max-width:250px;
    text-align:center;
  }

  .cta h2{
    font-size:2.1rem;
  }

  /* --- REGISTER & COMPLAINT HP --- */
  .register-right{
    padding:30px 20px;
  }

  .otp-group{
    flex-direction:column;
  }

  .otp-group button{
    padding:15px;
  }

  .complaint-form{
    padding:25px;
  }

}
/* DETAIL PAKET */

.paket-detail{

padding:140px 0 100px;

background:#f8f9fc;

}

.detail-header{

text-align:center;

margin-bottom:60px;

}

.detail-header h1{

font-size:3rem;

color:#d70000;

margin-bottom:20px;

}

.detail-header p{

max-width:700px;

margin:auto;

color:#666;

line-height:1.8;

}

.detail-card{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.detail-left h2{

font-size:3rem;

color:#d70000;

margin-bottom:15px;

}

.detail-left h3{

margin-bottom:30px;

font-size:2rem;

}

.detail-left ul{

list-style:none;

margin-bottom:40px;

}

.detail-left li{

margin:15px 0;

font-size:18px;

}

.detail-right img{

width:100%;

border-radius:25px;

}

@media(max-width:992px){

.detail-card{

grid-template-columns:1fr;

}

}

/* ==================================================
   DASHBOARD USER PREMIUM
================================================== */

.dashboard{
  padding:140px 0 80px;
  min-height:100vh;
  background:
  radial-gradient(circle at top right,#ffd9d9 0%,transparent 25%),
  radial-gradient(circle at bottom left,#ffeaea 0%,transparent 25%),
  #f7f8fc;
}

/* HEADER */

.dashboard-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:35px;
}

.dashboard-header h1{
  font-size:2.4rem;
  font-weight:800;
  color:#111;
  margin-bottom:8px;
}

.dashboard-header p{
  color:#666;
  max-width:600px;
}

.logout-btn{
  border:none;
  background:linear-gradient(135deg,#d70000,#ff3838);
  color:#fff;
  padding:14px 28px;
  border-radius:14px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 10px 25px rgba(215,0,0,.25);
}

.logout-btn:hover{
  transform:translateY(-3px);
}

.quick-actions button{
    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}

.active-action{
    background: linear-gradient(
        135deg,
        #d70000,
        #ff3a3a
    ) !important;

    color:#fff !important;

    border:none !important;
}

/* HERO CARD */

.welcome-card{
  background:
  linear-gradient(
  135deg,
  #b80000,
  #ff2f2f
  );

  color:#fff;

  padding:50px;

  border-radius:35px;

  margin-bottom:30px;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 20px 40px rgba(215,0,0,.18);
}

.welcome-card::before{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  top:-180px;
  right:-120px;
}

.welcome-label{
  display:inline-block;
  padding:10px 18px;
  border-radius:30px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  margin-bottom:18px;
}

.welcome-card h2{
  font-size:2.3rem;
  margin-bottom:15px;
  position:relative;
}

.welcome-card p{
  color:#f2f2f2;
  max-width:700px;
  position:relative;
}

/* STATUS */

.status-card{
  background:#fff;
  padding:35px;
  border-radius:28px;
  margin-bottom:30px;
  margin-top:35px;
  border-left:6px solid #d70000;
  box-shadow:
  0 15px 35px rgba(0,0,0,.05);
}

.status-label{
  display:inline-block;
  color:#d70000;
  font-weight:700;
  margin-bottom:10px;
}

.status-card h2{
  font-size:1.8rem;
  margin-bottom:10px;
}

.status-card p{
  color:#666;
}

/* STATS */

.stats-dashboard{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:30px;
}

.stat-card{
  background:#fff;
  padding:28px;
  border-radius:25px;
  text-align:center;
  box-shadow:
  0 15px 30px rgba(0,0,0,.05);

  transition:.3s;

  border-top:4px solid #d70000;
}

.stat-card:hover{
  transform:translateY(-8px);
}

.stat-card h3{
  color:#777;
  font-size:.95rem;
  margin-bottom:12px;
}

.stat-card p{
  font-size:1.5rem;
  font-weight:800;
  color:#d70000;
}

/* GRID */

.dashboard-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:25px;
  margin-bottom:30px;
}

/* CARD */

.card{
  background:#fff;
  border-radius:30px;
  padding:35px;
  box-shadow:
  0 15px 35px rgba(0,0,0,.05);
}

.card h3{
  font-size:1.3rem;
  margin-bottom:25px;
  color:#111;
}

/* DATA */

.info-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid #efefef;
}

.info-item:last-child{
  border-bottom:none;
}

.info-item span{
  color:#777;
}

.info-item strong{
  color:#111;
  max-width:60%;
  text-align:right;
}

/* SERVICE */

.service-card{
    text-align:center;
}

.service-icon{
    width:80px;
    height:80px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 15px;
    font-size:42px;

    text-align:center;
}

.service-card h3{
    text-align:center;
}

.service-card p{
    text-align:center;
}


/* PACKAGE */

.package-box{
  text-align:center;
}

.package-box h2{
  font-size:2.2rem;
  color:#d70000;
  margin-bottom:10px;
}

.package-box span{
  display:inline-block;
  background:#fff0f0;
  color:#d70000;
  padding:8px 18px;
  border-radius:30px;
  font-weight:700;
  margin-bottom:25px;
}

.package-box ul{
  list-style:none;
}

.package-box li{
  padding:14px 0;
  border-bottom:1px solid #eee;
  color:#555;
}

.package-box li:last-child{
  border-bottom:none;
}

/* TIMELINE */

.timeline-card{
  position:relative;
}

.timeline{
  margin-top:25px;
}

.timeline-item{
  display:flex;
  gap:20px;
  position:relative;
  padding-bottom:30px;
}

.timeline-item:not(:last-child)::after{
  content:'';
  position:absolute;
  left:11px;
  top:24px;
  width:2px;
  height:100%;
  background:#e3e3e3;
}

.circle{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#ddd;
  flex-shrink:0;
}

.timeline-item.active .circle{
  background:#d70000;
  box-shadow:0 0 0 6px rgba(215,0,0,.15);
}

.content h4{
  margin-bottom:5px;
}

.content p{
  color:#666;
}

/* INFORMASI */

.admin-note{
  background:
  linear-gradient(
  135deg,
  #fff5f5,
  #fff
  );

  border-left:5px solid #d70000;

  padding:25px;

  border-radius:20px;

  line-height:1.8;

  color:#555;
}

/* ACTION */

/* ACTION */

.quick-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:30px;
}

.action-btn{
  background:#fff;
  color:#d70000;

  padding:14px 24px;

  border-radius:14px;

  font-weight:600;

  border:2px solid #d70000;

  transition:.3s;

  box-shadow:none;

  cursor:pointer;
}

.action-btn:hover{
  transform:translateY(-3px);
  background:#d70000;
  color:#fff;
}

.action-btn.secondary{
  background:#fff;
  color:#d70000;
  border:2px solid #d70000;
  box-shadow:none;
  transition:.3s;
}

.action-btn.secondary:hover{
  background:#d70000;
  color:#fff;
  border:2px solid #d70000;
}

.action-btn.active-action{
  background:#d70000 !important;
  color:#fff !important;
  border:2px solid #d70000 !important;
}

/* tombol yang sedang aktif */
.active-action{
  background:#d70000 !important;
  color:#fff !important;
  border:2px solid #d70000 !important;
}

/* RESPONSIVE */

@media(max-width:992px){

  .stats-dashboard{
    grid-template-columns:repeat(2,1fr);
  }

  .dashboard-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .dashboard{
    padding:120px 0 60px;
  }

  .dashboard-header{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .dashboard-header h1{
    font-size:2rem;
  }

  .welcome-card{
    padding:35px 25px;
  }

  .welcome-card h2{
    font-size:1.8rem;
  }

  .stats-dashboard{
    grid-template-columns:1fr;
  }

  .card{
    padding:25px;
  }

  .info-item{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .info-item strong{
    text-align:left;
    max-width:100%;
  }

  .quick-actions{
    flex-direction:column;
  }

}

.lihat-lainnya{
    text-align:center;
    margin-top:35px;
}

.lihat-lainnya a{
    color:#d70000;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.lihat-lainnya a span{
    margin-left:6px;
    transition:.3s;
}

.lihat-lainnya a:hover{
    color:#b00000;
}

.lihat-lainnya a:hover span{
    margin-left:12px;
}

.lihat-lainnya{
    margin-top:40px;
    text-align:center;
}

.lihat-lainnya a{
    color:#d70000;
    font-weight:700;
    font-size:17px;
    text-decoration:none;
    transition:.3s;
}

.lihat-lainnya a:hover{
    color:#000;
}

.lihat-lainnya i{
    margin-left:8px;
}

.package-page{
    padding:90px 0;
    background:#fafafa;
}

.package-page .package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:50px;
}

.corporate-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.lihat-lainnya{
    margin-top:18px;
    color:#d70000;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.lihat-lainnya:hover{
    color:#a80000;
    transform:translateX(5px);
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.lihat-lainnya{
    margin-top:25px;
    text-align:right;
}

.lihat-lainnya a{
    color:#d70000;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:none; /* Tidak ada animasi */
}

.lihat-lainnya a:hover{
    color:#b60000;
    text-decoration:underline;
    transform:none;
}

.coordinate-box {
    margin-top: 10px;
}

.coordinate-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.coordinate-inputs input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #f8f8f8;
}

.btn-location {
    width: 100%;
    border: none;
    background: #e60000;
    color: white;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.btn-location:hover {
    background: #c90000;
}

.coordinate-note {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 768px) {
    .coordinate-inputs {
        grid-template-columns: 1fr;
    }
}


    .coordinate-box {
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .coordinate-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .coordinate-inputs input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 15px;
        outline: none;
        background: #f8f8f8;
    }

    .btn-location {
        width: 100%;
        border: none;
        background: #e60000;
        color: white;
        padding: 14px 16px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        font-size: 15px;
    }

    .btn-location:hover {
        background: #c90000;
    }

    .coordinate-note {
        display: block;
        margin-top: 8px;
        color: #777;
        font-size: 13px;
        line-height: 1.5;
    }

    .map-preview-wrapper {
        display: none;
        margin-top: 15px;
        border: 1px solid #ddd;
        border-radius: 14px;
        padding: 12px;
        background: #fff;
    }

    .map-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    .map-link {
        color: #d70000;
        text-decoration: underline;
        font-size: 13px;
        font-weight: 600;
    }

    #mapPreview {
        width: 100%;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
    }

    .maps-link{
    display:inline-block;
    margin-top:6px;
    color:#198754;
    font-size:.85rem;
    font-weight:600;
    text-decoration:none;
}

.maps-link:hover{
    text-decoration:underline;
}

.mini-map{
    width:100%;
    height:120px;
    border-radius:10px;
    overflow:hidden;
    margin-top:10px;
    border:1px solid #ddd;
}

    @media (max-width: 768px) {
        .coordinate-inputs {
            grid-template-columns: 1fr;
        }

        #mapPreview {
            height: 240px;
        }
    }

    .coordinate-box {
    margin-top: 10px;
    margin-bottom: 18px;
}

.coordinate-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.coordinate-inputs input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #f8f8f8;
}

.btn-location {
    width: 100%;
    border: none;
    background: #e60000;
    color: white;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.btn-location:hover {
    background: #c90000;
}

.coordinate-note {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.map-preview-wrapper {
    display: none;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.map-link {
    color: #d70000;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 600;
}

#mapPreview {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.btn-save-location {
    width: 100%;
    border: none;
    background: #22c55e;
    color: white;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    margin-top: 12px;
}

.btn-save-location:hover {
    background: #16a34a;
}

.location-status {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.location-status.not-confirmed {
    color: #d70000;
}

.location-status.confirmed {
    color: #16a34a;
}

@media (max-width: 768px) {
    .coordinate-inputs {
        grid-template-columns: 1fr;
    }

    #mapPreview {
        height: 240px;
    }
}

.package-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-daftar {
    background: #d70000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-daftar:hover {
    background: #bd0000;
}

.btn-kembali {
    background: #eeeeee;
    color: #222;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-kembali:hover {
    background: #dddddd;
}
#paket {
    scroll-margin-top: 120px;
}

/* =========================================
   TESTIMONI
========================================= */

.testimoni-section{
    padding:100px 0;
    background:#f8f9fc;
}

.testimoni-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title span{
    display:block;
    color:#e60000;
    font-size:22px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    margin-top:10px;
    font-size:42px;
    font-weight:700;
    color:#222;
}

.testimoni-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.testimoni-card{
    width:340px;
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.testimoni-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    border:2px solid #e60000;

}

.wifi-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#e60000;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.wifi-icon i{
    color:#fff;
    font-size:34px;

}

.testimoni-card:hover .wifi-icon{
    transform:scale(1.15);
}

.testimoni-text{
    margin:28px 0;
    color:#555;
    font-size:16px;
    line-height:1.8;
    min-height:95px;
}

.rating{
    color:#ffc107;
    font-size:26px;
    letter-spacing:4px;
    margin-top:25px;
    margin-bottom:15px;

}

.testimoni-card h4{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-top:15px;

}

.wifi-icon i{
    color:#fff;
    font-size:28px;
}

.title-line{
    width:90px;
    height:5px;
    background:#e60000;
    border-radius:10px;
    margin:18px auto 0;
}

@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}