/* Floating WhatsApp kanan bawah */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ⬅ pindah ke kanan */
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.wa-float:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
}


/* FORCE MODERN BUTTON */
.btn-wa-modern,
.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px !important; /* ⬅ PAKSA BULAT */
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* WhatsApp */
.btn-wa-modern {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.btn-wa-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(37,211,102,0.55);
}

/* Outline */
.btn-outline-modern {
    border: 2px solid #fff;
    color: #fff !important;
    background: transparent;
}

.btn-outline-modern:hover {
    background: #fff;
    color: #333 !important;
    transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
    .btn-wa-modern,
    .btn-outline-modern {
        width: auto;              /* ⬅ tidak full */
        padding: 14px 26px;       /* ⬅ lebih kecil */
        font-size: 15px;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;      /* ⬅ tetap rapi di tengah */
        gap: 14px;
    }
}

/* JARAK BANNER TEXT KE TOMBOL */
.banner-caption h3 {
    margin-bottom: 50px; /* ⬅ atur jarak ke tombol */
}

/* Area tombol */
.banner-buttons {
    margin-top: 20px;
}
.banner {
    min-height: 100vh;
    position: relative;
}

.banner-image {
    background: url('../images/banner.jpg') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brand-flex a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-flex img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* LOGO DESKTOP */
.brand-flex img {
    height: 40px;   /* desktop */
    width: auto;
}

/* LOGO MOBILE */
@media (max-width: 768px) {
    .brand-flex img {
        height: 30px;   /* ⬅ lebih kecil di mobile */
    }


}

/* ===============================
   FIX BANNER TYPOGRAPHY
================================ */

/* DESKTOP */
.banner-caption h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.banner-caption h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 50px;
}

/* MOBILE */
@media (max-width: 768px) {
    .banner-caption h1 {
        font-size: 30px;   /* ⬅ besar & tegas */
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .banner-caption h3 {
        font-size: 15px;   /* ⬅ lebih kecil */
        line-height: 1.5;
        margin-bottom: 36px;
    }
}
/* ===============================
   BANNER DESCRIPTION (SINGLE TEXT)
================================ */

/* DESKTOP */
.banner-desc {
    font-size: 16px;          /* ⬅ lebih kecil di desktop */
    font-weight: 400;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 45px;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .banner-desc {
        font-size: 15px;      /* ⬅ sedikit lebih kecil di mobile */
        line-height: 1.5;
        margin-bottom: 32px;
    }
}


/* SECTION */
.modern-services {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

.modern-services .title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modern-services .subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 60px;
}

.modern-services .row {
  margin-bottom: 40px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 45px 28px;          /* ⬅ lebih kecil */
  text-align: center;
  border-radius: 40px 40px 60px 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  height: auto;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.2);
}

/* ICON */
.service-card .icon {
   width: 68px;      
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #e85d04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 20px 40px rgba(232,93,4,0.45);
}

/* TEXT */
.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .modern-services {
    padding: 70px 0;
  }

  .service-card {
    margin-bottom: 30px;
  }
}

/* PRICE CARD */
.price-card {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  margin-bottom: 40px;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* IMAGE */
.price-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.price-content {
  padding: 28px 24px 32px;
}

.price-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* PRICE */
.price-value {
  margin-bottom: 20px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #e85d04;
}

.duration {
  font-size: 14px;
  color: #777;
  margin-left: 6px;
}

/* BUTTON WA */
.btn-wa {
  display: inline-block;
  padding: 14px 26px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .price-image img {
    height: 160px;
  }

  .price {
    font-size: 20px;
  }
}

/* BADGE */
.badge-paket {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

/* CARD PAKET */
.price-card-paket {
  border: 2px solid #ff7a18;
}

.price-card-paket {
  background: linear-gradient(180deg, #fff8f2, #ffffff);
}

.best-value {
  font-size: 12px;
  font-weight: 600;
  color: #ff7a18;
  margin-top: 4px;
}

/* Samakan tinggi card */
.price-table .row {
  display: flex;
  flex-wrap: wrap;
}

.price-table .col-sm-3 {
  display: flex;
}

.price-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.price-value {
  margin-top: auto;
}

/* BADGE */
.badge-best {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e63946;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

.badge-paket {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #b18b4e;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

.best-value {
  margin-top: 5px;
  font-size: 13px;
  color: #e63946;
  font-weight: bold;
}

.price-card {
  position: relative;
}

.testimonial-row {
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  text-align: center;
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-content h4 {
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
}

.testimonial-rating {
  color: #f5b301;
  margin: 8px 0;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
}

/* Best Review */
.best-seller {
  border: 2px solid #f5b301;
}

.badge-best {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f5b301;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* WhatsApp Testimoni */
.wa-card {
  border: 2px dashed #25D366;
}

.wa-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

.wa-image {
  width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}

.wa-note {
  font-size: 11px;
  color: #777;
}

/* Jarak antar card */
.testimonial-row > div {
  margin-bottom: 30px;
}

/* Samakan perilaku tinggi card */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-row > div {
  display: flex;
}

.testimonial-card {
  width: 100%;
}

/* Section background */
.testimonial-modern {
  background: linear-gradient(135deg, #f8f9fb, #ffffff);
  padding: 80px 0;
}

/* Heading */
.section-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 50px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

/* Quote icon */
.quote-icon {
  font-size: 40px;
  color: #f0c040;
  margin-bottom: 20px;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  display: block;
  font-size: 15px;
}

.testimonial-user span {
  font-size: 13px;
  color: #888;
}

/* Carousel dots */
.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators li {
  background-color: #ccc;
}

.carousel-indicators .active {
  background-color: #f0c040;
}

.footer-modern {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 30px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-subtitle {
  color: #94a3b8;
  margin-bottom: 50px;
}

/* Card */
.footer-card {
  background: #111827;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
}

/* Form */
.footer-card h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-card .form-group {
  position: relative;
}

.footer-card .form-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #94a3b8;
}

.footer-card .form-control {
  padding-left: 38px;
  background: #020617;
  border: 1px solid #1e293b;
  color: #fff;
}

.footer-card .form-control::placeholder {
  color: #64748b;
}

/* Buttons */
.btn-outline {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  background: transparent;
}

.btn-outline:hover {
  background: #38bdf8;
  color: #020617;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

/* Info */
.footer-info .desc {
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: #38bdf8;
}

/* Social */
.footer-social a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  background: #020617;
  color: #fff;
}

.footer-social a.wa { background: #25D366; }
.footer-social a.ig { background: #E1306C; }
.footer-social a.fb { background: #1877F2; }

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  color: #64748b;
  font-size: 13px;
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.section,
.secPadding,
.hero-caption {
  background: transparent;
}

.modern-services {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
  padding: 80px 0;
}

.price-table {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.price-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-modern,
.bg-light {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ABOUT MODERN */
.about-modern {
  padding: 80px 0;
  background: #fff;
}

.about-modern .title {
  font-weight: 700;
  letter-spacing: 1px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #c9a24d;
  margin: 15px auto 25px;
  border-radius: 5px;
}

/* STORY */
.story-row {
  position: relative;
}

.story-row::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e5e5e5;
}

.img-story {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.story-text h3 {
  font-weight: 600;
}

.story-line {
  width: 40px;
  height: 2px;
  background: #c9a24d;
  margin: 10px 0 20px;
}

/* VISI MISI BOX */
.vm-box .box {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
}

.vm-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.vm-box ul {
  padding-left: 18px;
}

/* KOMITMEN */
.commitment-list {
  list-style: none;
  padding: 0;
}

.commitment-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.commitment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a24d;
  font-weight: bold;
}



body::before {
  content: "";
  position: fixed;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
  z-index: -1;
}


/* ===== LOGO ===== */
.brand-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

/* ===== NAV ===== */
.main-nav {
  background: transparent;
  border: none;
  margin: 0;
}


/* ===== BUTTON HUBUNGI ===== */
.btn-contact {
  background: #c59d5f;
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 18px !important;
  margin-left: 10px;
}

.btn-contact:hover {
  background: #b18a4f;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .brand-text {
    font-size: 16px;
  }


  .btn-contact {
    margin: 10px;
    text-align: center;
  }
}

body {
  font-family: 'Poppins', sans-serif;
}

/* HEADER DEFAULT (HOME / TOP) */



/* HILANGKAN BACKGROUND NAVBAR */
.modern-header .navbar {
  background: transparent;
  border: none;
}

/* ================= HEADER MODERN FIX ================= */

.modern-header {
  background: transparent;
  box-shadow: none;
  padding: 12px 0;
  transition: all 0.35s ease;
}

.modern-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

/* Matikan default bootstrap */
.modern-header .navbar,
.modern-header .navbar-default {
  background: transparent !important;
  border: none !important;
}

/* BUTTON HUBUNGI PREMIUM */
.btn-contact {
  background: linear-gradient(135deg, #c59d5f, #b18a4f);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(193,157,95,0.45);
  transition: all 0.35s ease;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(193,157,95,0.65);
  background: linear-gradient(135deg, #d4af72, #b18a4f);
}

.nav-modern > li > a {
  font-weight: 500;
  color: #444;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.modern-header.scrolled .nav-modern > li > a {
  color: #333;
}

.nav-modern > li > a:hover {
  color: #c59d5f;
}

@media (max-width: 768px) {
  .nav-modern {
    background: #fff;
    border-radius: 16px;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .btn-contact {
    margin: 10px;
    display: block;
    text-align: center;
  }
}

/* FIX WARNA HEADER HOME */
.modern-header {
  background: transparent !important;
}

/* NAV & TEXT DI HOME */
.modern-header .nav-modern > li > a,
.modern-header .brand-text {
  color: #fff !important;
}

/* HEADER SAAT SCROLL */
.modern-header.scrolled {
  background: #ffffff !important;
}

/* NAV & TEXT SAAT SCROLL */
.modern-header.scrolled .nav-modern > li > a,
.modern-header.scrolled .brand-text {
  color: #333 !important;
}

/* HILANGKAN KOTAK ABU-ABU SAAT KLIK MENU */
.nav-modern > li > a,
.nav-modern > li > a:hover,
.nav-modern > li > a:focus,
.nav-modern > li.active > a,
.nav-modern > li.active > a:hover,
.nav-modern > li.active > a:focus {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* HILANGKAN TAP HIGHLIGHT MOBILE */
.nav-modern > li > a {
  -webkit-tap-highlight-color: transparent;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: #ffc0cb; /* soft pink */
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card i {
  font-size: 18px;
}

.contact-card span {
  font-size: 16px;
}

.contact-card:hover {
  background-color: #ff99aa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-card {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
  }

  .contact-card i {
    font-size: 16px;
  }

  .contact-card span {
    font-size: 14px;
  }
}

.nav-modern .contact-card {
  display: inline-flex !important;
  color: #fff !important;
}

.testimonial-avatar {
    display: flex;
    justify-content: center; /* center horizontal */
    align-items: center;     /* center vertical jika diperlukan */
    margin-bottom: 15px;     /* jarak ke bawah */
}

.testimonial-avatar img {
    border-radius: 50%; /* jika ingin avatar bulat */
    max-width: 80px;    /* ukuran avatar */
    height: auto;
}



/* ================= HEADER ================= */

/* Default: teks putih */
.modern-header {
    background: transparent !important;
    transition: all 0.35s ease;
}
.modern-header .brand-text,
.modern-header .nav-modern > li > a {
    color: #fff !important; /* teks putih awal */
}

/* Saat scroll: background putih, teks hitam */
.modern-header.scrolled {
    background: #ffffff !important;
}
.modern-header.scrolled .brand-text,
.modern-header.scrolled .nav-modern > li > a {
    color: #333 !important; /* teks hitam saat scroll */
}




/* ===== FIX HEADER MOBILE ===== */
@media (max-width: 768px) {
    /* Navbar background */

    .modern-header {
        background:#ffffff !important;
        padding: 10px 0;
    }

    /* Logo dan brand text */
    .brand-logo {
        height: 30px;
    }

    .brand-text {
        font-size: 15px;
        

    }

    /* Navbar toggle */
    .navbar-toggle {
        border: none;
        background: #c59d5f;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    /* Navbar menu */
    .nav-modern {
        background: #fff;
        border-radius: 16px;
        margin-top: 10px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    /* Contact card */
    .contact-card {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    .modern-header {
    background: transparent; /* atau sesuai gambar/banner */
}

.modern-header .brand-text {
    color: #333 !important; /* ganti putih ke gelap */
}
.modern-header {
    background: transparent;
}

/* Teks saat header transparan */
.modern-header .nav-modern > li > a,
.modern-header .brand-text {
    color: #333 !important; /* atau warna gelap yang terlihat */
}
}







