/* =============================
   GOOGLE FONT - FIGTREE
============================= */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Figtree', sans-serif;
  padding-top: 90px;
}

/* =============================
   NAVBAR
============================= */
.custom-navbar {
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
  height: 60px;
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-navbar.scrolled .logo {
  height: 42px;
}

.nav-link {
  color: #555 !important;
}

.nav-link.active,
.nav-link:hover {
  color: #ff8c00 !important;
}

/* =============================
   HERO SECTION
============================= */
.hero-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img{
  padding: 0;
}

.hero-section {
  width: 100%;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  width: 100%;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  #heroCarousel,
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 27vh; /* atau 70vh sesuai kebutuhan */
  }
}

#heroCarousel img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* INI KUNCI: TIDAK TERPOTONG */
  object-position: center;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .hero-section,
  .hero-section img {
    height: 100%;
    width: 100%;
  }

  body {
    padding-top: 70px;
  }
}

/* =============================
   FEATURE SECTION
============================= */
.feature-section {
  background: #fff;
  position: relative;
}

/* =============================
   FEATURE CARDS
============================= */
.feature-cards {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  box-shadow: 1px 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #dedede;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}


.feature-text h6 {
  margin: 0;
  font-weight: 700;
  color: #111;
}

.feature-text span {
  font-size: 14px;
  color: #ff8c00;
  font-weight: 600;
}

.feature-card img {
  width: 60px;
  height: auto;
}

/* =========================
   FEATURE CARD – MOBILE FIX
========================= */
@media (max-width: 576px) {

  /* pastikan kolom sejajar */
  .row.g-4 > [class^="col-"] {
    display: flex;
  }

  /* card utama */
  .feature-section {
     padding: 0px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
  }
  .feature-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    padding: 20px 14px;
    border-radius: 16px;

    background: #ffffff;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }

  /* teks */
  .feature-text h6 {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .feature-text span {
    font-size: 12px;
    opacity: 0.8;
  }

  /* image */
  .feature-card img {
    max-width: 40px;
    height: auto;
    flex-shrink: 0;
  }

}


/* =============================
   ORANGE HIGHLIGHT
============================= */
.feature-highlight .container {
  display: flex;
  flex-direction: column;
}
.feature-highlight {
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    #ff9f00 50%,
    #ff8c00 100%
  );
  padding: 100px 0 90px;
  margin-top: -40px;
}


.feature-highlight h2 {
  font-weight: 800;
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
}

.feature-highlight p {
  font-size: 18px;
  color: #111;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* =============================
   STATS BOX
============================= */
.feature-stats {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}


.stat-item h3 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-item span {
  color: #ccc;
  font-size: 15px;
}

/* =============================
   RESPONSIVE
============================= */
/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  .feature-highlight {
    padding: 50px 16px;
  }

  .feature-highlight h2 {
    font-size: 24px;
    line-height: 1.35;
    margin: 14px 0 0 0 !important;
  }

  .feature-highlight p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0px !important;
  }

  /* STAT BOX */
  .feature-stats {
    width: 100% !important;
    gap: 16px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .stat-item {
    width: 45%;
    min-height: 150px;
    padding: 18px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
  }

  .stat-item h3 {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .stat-item span {
    font-size: 14px;
    opacity: 0.85;
  }
}

/* =========================
   EXTRA SMALL DEVICE
   ========================= */
@media (max-width: 480px) {

  .feature-highlight h2 {
    font-size: 21px;
  }

  .feature-highlight p {
    font-size: 14px;
  }

  .stat-item h3 {
    font-size: 24px;
  }

}


/* =============================
   STREAMING SECTION
============================= */
.streaming-section {
  padding: 0 0 0 5%;
  background: #fff;
}

.streaming-section h2 {
  font-size: 46px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.streaming-section p {
  font-size: 17px;
  color: #444;
  max-width: 520px;
  margin-bottom: 30px;
}
.col-lg-6.text-end{
  padding: 0;
}

/* =============================
   BUTTON
============================= */
.btn-detail {
  display: inline-block;
  background: #ff9f00;
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-detail:hover {
  background: #ff8c00;
  transform: translateX(5px);
}

/* =============================
   IMAGE
============================= */
.streaming-image {
  max-width: 100%;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
  .streaming-section {
    padding: 80px 0;
  }

  .streaming-section h2 {
    font-size: 34px;
  }

  .streaming-section p {
    font-size: 16px;
  }

  .streaming-image {
    margin-top: 40px;
  }

  .col-lg-6.text-end {
    text-align: center !important;
    padding: 0;
  }
}

/* ===============================
   HERO GAMER SECTION
================================ */
.hero-gamer {
  background: linear-gradient(90deg, #ffffff 55%, #f5f7fa 100%);
  padding: 0px;
  overflow: hidden;
  border-top: 20px orange solid;
}

.hero-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text Content */
.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #e68900;
  transform: translateY(-2px);
}

/* Image */
.hero-image img {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hero-gamer {
    padding: 60px 16px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero img{
    width: 100%;
    height: auto;
  }
}

/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
  background: linear-gradient(135deg, #ff9800 0%, #ffb347 100%);
  padding: 90px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  color: #000;
}

.testimonial-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-header p {
  font-size: 18px;
  opacity: 0.85;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff9800;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 14px;
  color: #777;
}

.rating {
  color: #ff9800;
  font-size: 14px;
  margin-top: 4px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .testimonial-header h2 {
    font-size: 28px;
  }

  .testimonial-header p {
    font-size: 16px;
  }
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: linear-gradient(135deg, #ff9800, #ffb347);
  color: #000;
  padding-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  padding: 0 20px 60px;
}

/* Contact Card */
.footer-contact {
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 24px;
  max-width: 260px;
}

.call-box {
  background: #ff9800;
  color: #000;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.wa-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.wa-button {
  display: block;
  background: #ff9800;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: #ff9800;
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

/* Links */
.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 18px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-links p {
  font-size: 15px;
  line-height: 1.7;
}

/* Bottom */
.footer-bottom {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

/* ===============================
   FLOATING WHATSAPP
================================ */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: wa-pulse 2s infinite;
  z-index: 999;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-wa span {
    display: none;
  }

  .footer-contact{
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* ===============================
   PRICE SECTION
================================ */
.price-section {
  padding: 100px 20px;
  background: #f9f9f9;
}

.price-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.price-content {
  flex: 1;
}

.badge {
  display: inline-block;
  background: #ff3d00;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-content h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
}

/* PRICE LIST */
.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.price-item {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.price-item strong {
  color: #ff9800;
}

/* NOTES */
.price-note {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
}

/* CTA */
.price-cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.price-cta:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* IMAGE */
.price-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .price-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .price-section{
    padding: 50px 20px;
    background-color: #eaefff;
    margin-top: -16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
  }
  .price-list {
    grid-template-columns: repeat(2, 1fr); /* tetap 2 kolom */
    gap: 12px;
  }

  .price-item {
    font-size: 14px;
    padding: 12px 14px;
  }

  .price-item strong {
    font-size: 14px;
  }
}

/* ===============================
   DEDICATED INTERNET SECTION
================================ */
.dedicated-section {
  padding: 100px 20px;
}

.dedicated-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.dedicated-content {
  flex: 1;
}

.dedicated-badge {
  display: inline-block;
  background: #0d47a1;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.dedicated-content h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #0d47a1;
}

.dedicated-subtitle {
  color: #444;
  margin-bottom: 22px;
  line-height: 1.7;
}

/* Highlight */
.dedicated-highlight {
  background: #e3f2fd;
  border-left: 6px solid #0d47a1;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 16px;
}

.dedicated-highlight span {
  color: #ff9800;
  font-weight: 700;
}

/* List */
.dedicated-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.dedicated-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
}

.dedicated-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff9800;
  font-weight: bold;
}

/* Partner */
.dedicated-partner {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* CTA */
.dedicated-cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.dedicated-cta:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* IMAGE */
.dedicated-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .dedicated-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .dedicated-section{
    padding: 20px;
    border-radius:0px 0px 16px 16px;
  }

  .dedicated-list{
    text-align: left;
  }

  .dedicated-partner{
    border: 1px solid #b6b6b6;
    border-radius: 15px;
  }

  .dedicated-content .harga{
    width: 100% !important;
  }
}

.lowongan-section {
  padding: 60px 20px;
  background: #f5f7fa;
}

.lowongan-section .container {
  max-width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.column {
  flex: 1;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-column h2 {
  color: #ff7a00;
  margin-bottom: 5px;
}

.text-column h3 {
  color: #003366;
  margin-bottom: 15px;
}

.highlight {
  background: #ffeb3b;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}

.bonus {
  background: #f3e5f5;
  padding: 15px;
  border-left: 5px solid #9c27b0;
  margin-bottom: 20px;
}

.text-column ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.text-column ul li {
  margin-bottom: 8px;
}

.contact {
  background: #003366;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}

.booknow-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn-wa i {
  font-size: 20px;
}

/* Primary */
.btn-wa.primary {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* Secondary */
.btn-wa.secondary {
  background: linear-gradient(135deg, #128c7e, #075e54);
}

/* Hover */
.btn-wa:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 576px) {
  .btn-wa {
    width: 100%;
    justify-content: center;
  }

  .lowongan-section .dedicated-image{
    width: 100%;
    height: auto;
  }

  .lowongan-section .container {
    max-width: 100%;
    margin: auto;
    display: grid;
    gap: 0px;
    align-items: center;
    padding: 0;
  }
  .lowongan-section .dedicated-content  {
    margin-top: 30px;
  }
}

.facility-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.facility-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-weight: bold;
}

section.bg-primary {
  background: linear-gradient(135deg, #185dcb, #0a2a66) !important;
}

.badge {
  font-size: 0.75rem;
  padding: 0.45em 0.9em;
  border-radius: 50rem;
}

.paket-seru-section {
  background: #fff6e8;
  
}

.paket-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform .3s ease;
 
}

.paket-card:hover {
  transform: translateY(-6px);
}

.paket-img {
  width: 100%;
  height: auto;
  display: block;
}

.paket-body {
  padding: 20px;
  text-align: center;
}

.paket-title {
  font-weight: 800;
  letter-spacing: 1px;
}

.paket-speed {
  color: #ff9800;
  font-weight: 700;
  margin-bottom: 15px;
}

.paket-price {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}

.paket-price .rp {
  font-size: 14px;
  color: #888;
}

.paket-price .price {
  font-size: 28px;
  font-weight: 800;
  margin: 0 4px;
}

.paket-price .bulan {
  font-size: 14px;
  color: #888;
}

.paket-note {
  font-size: 13px;
  color: #777;
}

.btn-chat {
  background: #ff9800;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
}

.btn-chat:hover {
  background: #f08c00;
  color: #000;
}

.paket-feature {
  text-align: left;
}

.paket-feature h6 {
  color: #ff9800;
  font-weight: 700;
}

.paket-feature ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.paket-feature ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.paket-feature ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff9800;
  font-weight: bold;
}

.paket-feature small {
  color: #777;
  font-size: 12px;
}


/* ================================
   VALUE SECTION
================================ */

.value-section {
  background: #ffffff;
}

.value-wrapper {
  background: linear-gradient(
    135deg,
    #ffb703 0%,
    #ff9500 45%,
    #ff7a00 100%
  );
  border-radius: 40px;
  padding: 50px 30px;
}

.value-item img {
  max-width: 120px;
  margin-bottom: 0px;
}

.value-item h4 {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .value-wrapper {
    padding: 35px 20px;
  }

  .value-item img {
    max-width: 70px;
  }

  .value-item h4 {
    font-size: 18px;
  }
}

.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* tombol selalu di bawah */
.package-card .btn {
  margin-top: auto;
}


.package-img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.package-title {
  font-weight: 800;
  text-align: center;
}

.package-speed {
  text-align: center;
  color: #ff8c00;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.package-price {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}

.package-price .price {
  font-size: 26px;
  font-weight: 800;
}

.package-note {
  font-size: 12px;
  text-align: center;
  color: #777;
}

.btn-orange {
  background: #ff9f00;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
}

.btn-orange:hover {
  background: #ff8c00;
}

.package-feature ul {
  padding-left: 18px;
  margin-top: 10px;
}

.package-feature li {
  margin-bottom: 6px;
}
/* ============================= */
/* PRICING / PAKET INTERNET */
/* ============================= */

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.pricing-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Title */
.pricing-card h5 {
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* Orange accent */
.text-orange {
  color: #ff9800;
}

/* Price box */
.price-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
}

.price-box .price {
  font-size: 30px;
  font-weight: 800;
  color: #111;
}

/* Button */
.btn-orange {
  background: linear-gradient(135deg, #ff9800, #ffb300);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  transform: scale(1.02);
  color: #000;
}

/* Feature list */
.feature-list {
  margin-top: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #333;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9800;
  font-weight: 700;
}

/* Footer note */
.pricing-card small {
  font-size: 12px;
  line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
  .pricing-card img {
    height: 180px;
  }
  .pricing-card{
    width: 100%;
  }
}

@media (max-width: 576px) {
  .pricing-card img {
    height: 160px;
  }

  .price-box .price {
    font-size: 26px;
  }

  .pricing-card h5 {
    font-size: 17px;
  }
}

/* ============================= */
/* HERO CONTACT */
/* ============================= */

.hero-contact {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Orange bottom curve */
.hero-contact::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  background: #ff9f00;
  border-top-left-radius: 120px;
  z-index: 0;
  
}

/* Content */
.hero-contact .container {
  position: relative;
  z-index: 1;
  
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ff9f00;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  max-width: 550px;
  color: #111;
  line-height: 1.7;
}

/* Image */
.hero-image-wrapper {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
}

.hero-imageku {
  width: 100%;
  border-radius: 24px;
  box-shadow: 1px 20px 50px rgba(0,0,0,0.08);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-image-wrapper {
    margin: 0 auto;
  }
  .hero-imageku {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-contact {
    padding: 80px 0 100px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
    margin: 0 auto;
  }

  .hero-contact::after {
    height: 170px;
    border-top-left-radius: 80px;
  }
}

/* ============================= */
/* CONTACT ACTION */
/* ============================= */

.contact-action {
  padding: 100px 0;
  background: #ffffff;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Card */
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Icon */
.contact-icon {
  width: 70px;
  height: 70px;
  background: #ff9f00;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Text */
.contact-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Button */
.btn-orange {
  background: #ff9f00;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 20px;
  border: none;
}

.btn-orange:hover {
  background: #ffb733;
  color: #000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 576px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-card {
    padding: 30px 20px;
    width: 100%;
  }
}
