:root {
  --primary: #b6895b;
  /* --bg: #171616; */
  --bg: #f7f7f7;
  /* --bg: rgb(247, 247, 247); */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: #fff;

  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  display: flex;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(233, 223, 223, 0.8);
  border-bottom: 1px solid #ffa500;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo {
  display: flex;
  align-items: center;
  /*gap: 8px; /* jarak antara gambar & teks */
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  font-style: italic;
}

.navbar .navbar-logo span {
  /* color: #cd1c18; */
  color: #ce8703;
}

.navbar .navbar-logo .logo-img {
  height: 50px; /* sesuaikan ukuran logo */
}
.navbar .navbar-nav {
  margin-left: auto; /* mendorong menu ke kanan */
  margin-right: 1rem; /* jarak menu ke navbar-extra */
}
.navbar .navbar-nav a {
  color: #111827;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: #fb923c;
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #fb923c;
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra {
  display: flex;
  right: 0;
  gap: 1rem;
}

.navbar .navbar-extra a {
  color: #111827;
}

.navbar .navbar-extra a:hover {
  color: #fb923c;
}

#hamberger-menu {
  display: none;
}

/* DROPDOWN PADA NAVBAR */
.dropdown {
  position: relative;
  display: inline-block;
}

/* SUBMENU */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 170px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

/* LINK SUBMENU */
.navbar .navbar-nav .dropdown-content a {
  font-size: 1rem;
  margin: 0;
}
.dropdown-content a {
  color: #111827;
  padding: 12px 16px;
  display: block;
  font-size: 2rem;
}

.dropdown-content a:hover {
  background-color: #f3f4f6;
  color: #ffa500;
}

/* MUNCUL SAAT HOVER */
.dropdown:hover .dropdown-content {
  display: block;
}

/* hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /*background-image: url("../images/hero4.jpeg");*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* border-bottom: 1px solid #ffa500; */
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(247, 247, 247, 1) 8px,
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}

.hero .content {
  /* padding: 1.4rem 7%; */
  padding: 15rem 7% 1.4rem;
  max-width: 60rem;
  position: relative;
  z-index: 2;
}

.hero .content h1 {
  /* color: #fff; */
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 3em;
  /* text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5); */
  line-height: 1.2;
}

.hero .content p {
  /* color: #fff; */
  color: #f1f5f9; /* putih agak soft */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.6rem;
  margin-top: 2rem;
  line-height: 1.6;
  /* font-weight: 200; */
  /* text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5); */
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  color: #fff;
  /* background-color: #cd1c18; */
  background-color: #ffa500;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(255, 165, 0, 0.5);
}

.hero .content .cta:hover {
  background-color: #fb923c;
  transform: translateY(-2px);
  transition: 0.2s;
}

/* Hero Section End*/

/* About Section */
.About {
  padding: 7rem 7% 1.4rem;
  border-bottom: 1px solid #ffa500;
  background-color: #fff;
}

.About h2,
.Layanan h2,
.Client h2,
.produk h2 {
  text-align: center;
  font-size: 2rem;
  color: #111827;
  margin-bottom: 3rem;
}

.About h2 span,
.Layanan h2 span,
.Client h2 span,
.produk h2 span {
  color: #ce8703;
}

.About .row {
  display: flex;
}

.About .row .about-img {
  flex: 1 1 45rem;
}

.About .row .about-img img {
  width: 100%;
}

.About .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.About .row .content h3,
.About .row .content h4 {
  color: #111827;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.About .row .content p {
  color: #111827;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  /* font-weight: 25; */
  line-height: 1.6;
}

.About .row .content .list-alasan i {
  stroke: #ffa500;
  /* outline: 1px solid red; */
}

.About .row .content .list-alasan li {
  display: flex;
  align-items: center;
  color: #111827;
  font-size: 1.3rem;
  line-height: 1.6;
  gap: 10px;
}

/* Layanan Sectiom  */
.Layanan {
  padding: 7rem 7% 1.4rem;
  border-bottom: 1px solid #ffa500;
}

.Layanan h2 {
  margin-bottom: 1rem;
}

.Layanan h3 {
  color: #111827;
}

.Layanan h2 + p {
  color: #111827;
  text-align: center;
  max-width: 30rem;
  margin: auto;
  /*font-weight: 100;*/
  line-height: 1.6;
}

.Layanan p {
  color: #111827;
  text-align: center;
  max-width: 20rem;
  margin: auto;
  /*font-weight: 100;*/
  line-height: 1.6;
}

.Layanan .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  justify-content: center;
  gap: 10rem;
}

.Layanan .row .layanan-card {
  text-align: center;
}

.Layanan .row .layanan-card img {
  border-radius: 50%;
  width: 80px;
}

.Layanan .row .layanan-card .layanan-card-ket {
  margin: 1rem auto 0.5rem;
}

/* Special Product Section */

/* =========================
   SPECIAL PRODUCT
========================= */

.specialproduct {
  padding: 6rem 7%;
  background: #fff;
  border-bottom: 1px solid #ffa500;
  background-color: #fff;
}

.specialproduct h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111827;
}

.specialproduct h2 span {
  color: #ce8703;
}

/* WRAPPER */

.product-container {
  display: flex;
  justify-content: center;
}

/* CARD */

.product-card {
  position: relative;
  width: 100%;
  max-width: 380px;

  background: #fff;
  border: 2px solid #ff4d4d;
  border-radius: 16px;

  padding: 2rem;

  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE */

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.product-card img:hover {
  transform: scale(1.03);
}

/* TITLE */

.product-card h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

/* LABEL */

.product-card .label {
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
}

/* HARGA */

.product-card .harga {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin: 0.5rem 0;
}

/* PLUS */

.product-card .plus {
  text-align: center;
  font-weight: 600;
  color: #ce8703;
  margin-bottom: 1rem;
}

/* GARIS */

.line {
  height: 2px;
  background: #ff4d4d;
  margin: 1.5rem 0;
}

/* BUTTON */

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn-group a {
  flex: 1;
  text-align: center;
}

.btn-outline {
  border: 1.5px solid #334155;
  padding: 10px;
  border-radius: 25px;
  color: #334155;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #334155;
  color: #fff;
}

.btn-solid {
  background: #334155;
  color: #fff;
  padding: 10px;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-solid:hover {
  background: #ce8703;
}

/* BADGE */

.badge-promo {
  position: absolute;
  top: 15px;
  left: 15px;

  background: #e11d48;
  color: #fff;

  font-size: 0.75rem;
  font-weight: 600;

  padding: 6px 12px;
  border-radius: 20px;
}
/* DETAIL PRODUK PREMIUM */

.detail-produk {
  padding: 7rem 7%;
  background: #fff;
  color: #111827;
  border-bottom: 1px solid #ffa500;
}

.detail-produk .container {
  max-width: 1200px;
  margin: auto;
}

/* .detail-produk p {
  margin-bottom: 2rem;
} */

/* GRID */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* IMAGE */
.detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* CONTENT */
.detail-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #ce8703;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* PARAGRAF DETAIL */
.detail-content p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* LIST */
.fitur-list,
.manfaat-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

/* ITEM */
.fitur-list li,
.manfaat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #111827;
}

/* ICON */
.fitur-list i,
.manfaat-list i {
  flex-shrink: 0;
  margin-top: 3px;
  color: #ffa500;
}

/* ICON FEATHER */
.fitur-list svg,
.manfaat-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #ffa500;
  margin-top: 4px;
  flex-shrink: 0;
}

/* BUTTON */
.btn-konsultasi {
  display: inline-block;
  margin-top: 2rem;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-konsultasi:hover {
  background: #1ebe5d;
}

/* =========================
   MANFAAT SECTION
========================= */

.manfaat-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* KOLOM */
.manfaat-container .manfaat-col {
  flex: 1 1 300px;
  color: #111827;
}

/* JUDUL */
.manfaat-container .manfaat-col h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111827;
}

.manfaat-container .manfaat-col h3 {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ce8703;
}

/* PARAGRAF */
.manfaat-container .manfaat-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

/* LIST */
.manfaat-container .manfaat-col .manfaat-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.manfaat-container .manfaat-col .manfaat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #111827;
}

/* ICON */
.manfaat-container .manfaat-col .manfaat-list li i {
  color: #ffa500;
  width: 18px;
  height: 18px;
}

/* BUTTON */
.manfaat-container .manfaat-col .btn-konsultasi {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.manfaat-container .manfaat-col .btn-konsultasi:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

/* Product Section */

.produk {
  padding: 7rem 7% 3rem;
  /* background-color: #fff; */
}

.produk h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.produk h2 span {
  color: #ffa500;
}

/* GRID */
.produk-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* CARD */
.produk-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

.produk-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* HOVER EFFECT */
.produk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.produk-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* TITLE */
.produk-card h3 {
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* DESCRIPTION */
.produk-card p {
  font-size: 0.9rem;
  color: #666;
}

/* =====================================
   LOAD MORE
===================================== */

.produk-hidden {
  display: none;
}

.produk-loadmore {
  text-align: center;
  margin-top: 3rem;
}

.btn-loadmore {
  background: #ffa500;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-loadmore:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}


/* Client Section */

.Client {
  /* pada padding rumusnya atas kanan kiri bawah */
  /* 7% kanan kiri mengikuti lebar layar */
  padding: 7rem 7% 1.4rem;
  border-bottom: 1px solid #ffa500;
  text-align: center;
  background-color: #fff;
}

.client-slider {
  /* position relative agar elemen didalamnya bisa diposisikan absolute  */
  /* relatif ke container dalam hal ini sliderr */
  position: relative;
  max-width: 1000px;
  margin: 4rem auto;
  overflow: hidden;
  /* overflow menyembunyikan bagian isi slider yang keluar area */
}

.client-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: transform 0.4s ease;
}

.client-track img {
  height: 75px; /* 🔸 gambar kecil */
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); ini tak tutup dulu, kurang bagus */
  opacity: 0.85;
}

.client-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.client-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
}

.client-prev {
  left: 6px;
}
.client-next {
  right: 6px;
}

/* CONTACT SECTION */
.contact {
  padding: 7rem 7%;
  background: #f7f7f7;
  text-align: center;
}

.contact h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.contact h2 span {
  color: #ce8703;
}

.contact p {
  color: #555;
  margin-bottom: 2.5rem;
}

/* FORM CONTAINER */
.contact-form {
  max-width: 900px;
  margin: auto;
}

/* ROW 2 COLUMN */
.row-2 {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* INPUT & TEXTAREA */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;

  border: 2px solid #ff4d4d;
  border-radius: 12px;

  font-size: 1rem;
  outline: none;

  background: #fff;

  transition: 0.25s ease;

  box-sizing: border-box;
}
/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {re
  border-color: #ce8703;
  box-shadow: 0 0 0 3px rgba(206, 135, 3, 0.2);
}

/* TEXTAREA */
.contact-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 1.5rem;
}

/* BUTTON */
.contact-form button {
  background: #2d3e50;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.g-recaptcha {
  margin-top: 5px;
  margin-bottom: 10px;
}

/* =========================
   CUSTOM MODAL
========================= */

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 400px;

  border-radius: 16px;
  text-align: center;

  animation: popup 0.25s ease;
}

.modal-content h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.modal-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-buttons button {
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

#btnBatal {
  background: #e5e7eb;
  color: #111827;
}

#btnKirim {
  background: #ce8703;
  color: #fff;
}

#btnKirim:hover {
  background: #b87400;
}

.modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.modal-icon.sukses {
  background: #22c55e;
}

.modal-icon.gagal {
  background: #ef4444;
}

#closeNotif {
  background: #ce8703;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

#closeNotif:hover {
  background: #b87400;
}

@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Footer Section */
.footer {
  padding: 3rem 7% 1.4rem;
  border-bottom: 1px solid #ffa500;
  background-color: #111827;
}

.footer-container {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col {
  flex: 1 1 220px; /* responsif */
}

.footer-logo {
  width: 170px;
  margin-bottom: 1rem;
}

.footer h3 {
  color: #ffa500;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.footer-col p {
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* garis tipis di bawah (opsional) */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

/* btn whatsapp */
.btn-wa-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.btn-wa-floating img {
  width: 28px;
  filter: invert(1);
}

.btn-wa-floating:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  transition: 0.2s ease;
}

/* =========================
   RESPONSIVE
========================= */

/* ================================================================
   TABLET & MOBILE
=================================================================== */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  /* =========================
     GLOBAL
  ========================= */

  body {
    overflow-x: hidden;
  }

  /* =========================
     NAVBAR
  ========================= */

  .navbar {
    padding: 1.2rem 5%;
    position: fixed;
    z-index: 99999;
  }

  .navbar .navbar-logo {
    font-size: 1.7rem;
  }

  .navbar .navbar-logo .logo-img {
    height: 42px;
  }

  #hamberger-menu {
    display: inline-block;
  }

  .navbar-extra {
    margin-left: auto;
  }

  /* =========================
     MOBILE SIDEBAR MENU
  ========================= */

  .navbar .navbar-nav {
    position: fixed;

    top: 50px;
    right: 0;

    width: 75%;
    max-width: 320px;

    height: calc(100vh - 70px);

    background-color: #ffffff;

    display: flex;
    flex-direction: column;

    padding: 2rem;

    overflow-y: auto;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.08);

    z-index: 9998;
  }

  .navbar .navbar-nav.active {
    transform: translateX(0);
  }

  .navbar .navbar-nav a {
    display: block;

    font-size: 1.8rem;

    margin: 1rem 0;

    padding: 0.8rem 0;

    color: #111827;

    border-bottom: 1px solid #e5e7eb;
  }

  .navbar .navbar-nav a::after {
    display: none;
  }

  /* =========================
     DROPDOWN MOBILE
  ========================= */

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;

    display: block;

    background: #f8fafc;

    box-shadow: none;

    border-radius: 0;

    margin-top: 0.5rem;
  }

  .dropdown-content a {
    font-size: 1.5rem !important;

    padding: 1rem;

    margin: 0;
  }

  /* =========================
     HERO
  ========================= */

  .hero {
    background-position: center;
  }

  .hero .content {
    padding: 14rem 5% 2rem;

    max-width: 100%;
  }

  .hero .content h1 {
    font-size: 3rem;

    line-height: 1.3;
  }

  .hero .content p {
    font-size: 1.5rem;

    line-height: 1.6;
  }

  .hero .content .cta {
    font-size: 1.3rem;
  }

  /* =========================
     ABOUT
  ========================= */

  .About .row {
    flex-wrap: wrap;

    gap: 2rem;
  }

  .About .row .content {
    padding: 0;
  }

  .About .row .content h3,
  .About .row .content h4 {
    font-size: 1.6rem;
  }

  .About .row .content p,
  .About .row .content .list-alasan li {
    font-size: 1.2rem;
  }

  /* =========================
     LAYANAN
  ========================= */

  .Layanan .row {
    gap: 4rem;
  }

  /* =========================
     SPECIAL PRODUCT
  ========================= */

  .specialproduct {
    padding: 5rem 5%;
  }

  .product-container {
    grid-template-columns: 1fr;
  }

  .product-card {
    text-align: center;
  }

  .btn-group {
    justify-content: center;

    flex-wrap: wrap;
  }

  /* =========================
     PRODUK
  ========================= */

  .produk-container {
    grid-template-columns: 1fr;
  }

  /* =========================
     DETAIL PRODUK
  ========================= */

  .detail-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .detail-content {
    text-align: center;
  }

  .detail-content h1 {
    font-size: 1.8rem;
  }

  .detail-content p {
    font-size: 1rem;

    line-height: 1.8;

    text-align: justify;
  }

  .tagline {
    text-align: center;
  }

  /* =========================
     MANFAAT
  ========================= */

  .manfaat-container {
    flex-direction: column;

    padding: 1.5rem;
  }

  .manfaat-container .manfaat-col .btn-konsultasi {
    width: 100%;

    text-align: center;
  }

  .manfaat-list li {
    font-size: 1.3rem;
    text-align: left;
  }

  .manfaat-list svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;

    /* =========================
     CLIENT
  ========================= */

    .client-track img {
      height: 55px;
    }

    /* =========================
     CONTACT
+========================= */

    .row-2 {
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      font-size: 1rem;
    }

    .contact-form button {
      width: 100%;
    }

    /* =====================================
   RESPONSIVE CUSTOM MODAL (DIALOG BOX)
======================================== */

    .modal-content {
      width: 92%;
      max-width: 360px;

      padding: 1.8rem;
      border-radius: 14px;
    }

    .modal-content h3 {
      font-size: 1.6rem;
    }

    .modal-content p {
      font-size: 1.2rem;
      line-height: 1.6;
    }

    .modal-buttons button {
      font-size: 1.2rem;
      padding: 12px 16px;
    }

    /* =========================
     FOOTER
  ========================= */

    .footer-container {
      gap: 2rem;
    }
  }

  /* =================================================================
   MOBILE
==================================================================== */
  @media (max-width: 450px) {
    html {
      font-size: 55%;
    }

    /* =========================
     NAVBAR
  ========================= */

    .navbar {
      padding: 1rem 5%;
    }

    .navbar .navbar-logo {
      font-size: 1.5rem;
    }

    .navbar .navbar-logo .logo-img {
      height: 36px;
    }

    .navbar .navbar-nav {
      width: 85%;
    }

    /* =========================
     HERO
  ========================= */

    .hero .content {
      padding-top: 12rem;
    }

    .hero .content h1 {
      font-size: 2.3rem;
    }

    .hero .content p {
      font-size: 1.2rem;
    }

    .hero .content .cta {
      width: 100%;

      text-align: center;
    }

    /* =========================
     SECTION TITLE
  ========================= */

    .About h2,
    .Layanan h2,
    .Client h2,
    .produk h2,
    .specialproduct h2,
    .contact h2 {
      font-size: 1.8rem;
    }

    /* =========================
     ABOUT
  ========================= */

    .About .row .content p,
    .About .row .content .list-alasan li {
      font-size: 1.1rem;
    }

    /* =========================
     PRODUCT CARD
  ========================= */

    .product-card {
      padding: 1.5rem;
    }

    .btn-group {
      flex-direction: column;
    }

    .btn-outline,
    .btn-solid {
      width: 100%;

      text-align: center;
    }

    /* =========================
     DETAIL PRODUK
  ========================= */

    .detail-produk {
      padding: 5rem 5%;
    }

    .detail-content h1 {
      font-size: 1.5rem;
    }

    .detail-content p {
      font-size: 0.95rem;
    }

    /* =========================
     CLIENT
  ========================= */

    .client-track {
      gap: 1rem;
    }

    .client-track img {
      height: 45px;
    }

    /* =========================
     CONTACT
  ========================= */

    .contact {
      padding: 5rem 5%;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px 14px;
      font-size: 1rem;
    }

    /* =====================================
   RESPONSIVE CUSTOM MODAL (DIALOG BOX)
======================================== */

    .modal-content {
      width: 94%;
      max-width: 320px;

      padding: 1.5rem;
      border-radius: 12px;
    }

    .modal-content h3 {
      font-size: 1.4rem;
    }

    .modal-content p {
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
    }

    .modal-buttons {
      flex-direction: column;
    }

    .modal-buttons button {
      width: 100%;
      font-size: 1.1rem;
      padding: 12px;
    }

    /* =========================
     FOOTER
  ========================= */

    .footer {
      text-align: center;
      padding: 4rem 5% 2rem;
    }

    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }

    .footer-col {
      flex: unset;
    }

    .footer-col p,
    .footer-col li {
      line-height: 1.8;
    }
  }
  /* =========================
     WHATSAPP BUTTON
  ========================= */

  .btn-wa-floating {
    width: 50px;
    height: 50px;
  }

  .btn-wa-floating img {
    width: 24px;
  }
}
