:root {
  --primary: #193662;
  --bg: #ffffff;
  --blue: #193662;
  --orange: #dc710c;
  --white: #ffffff;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-height: 3000px;
  margin: 0;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 40px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(25, 54, 98, 0.5);
}

.navbar img {
  height: 65px;
  width: auto;
  vertical-align: middle;
}

/* === Menu navbar (desktop) === */
.navbar .navbar-nav {
  display: flex;
  align-items: center;
}

.navbar .navbar-nav a {
  display: flex;
  position: relative;
  color: #193662;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 1rem;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar .navbar-nav a:hover {
  color: #dc710c;
}

/* animasi garis bawah saat hover */
.navbar .navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.navbar .navbar-nav a:hover::after {
  width: 100%;
}

.navbar-extra a {
  font-size: 1.4rem;
  margin-left: 15px;
}

.navbar .navbar-extra a {
  color: var(--primary);
  margin: 0 0.5rem;
  font-weight: 500;
}

.navbar .navbar-extra a:hover {
  color: #dc710c;
}

/* === Hamburger button === */
#hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #193662;
  background: none;
  border: none;
}

#hamburger-menu:hover {
  color: #dc710c;
  transition: color 0.3s ease;
}

/* === Responsive (tablet & HP) === */
@media (max-width: 992px) {
  #hamburger-menu {
    display: inline-block;
  }

  /* Sembunyikan menu default */
  .navbar .navbar-nav {
    position: fixed;
    top: 58%;
    left: -250px;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 250px;
    height: auto;
    padding: 40px 20px;
    gap: 15px;
    text-align: center;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transition: left 0.4s ease;
    z-index: 9998;
  }

  /* Saat aktif (hamburger diklik) */
  .navbar .navbar-nav.active {
    left: 0;
  }

  /* Styling link di mobile */
  .navbar .navbar-nav a {
    display: block;
    margin: 0.5rem 0;
    color: #193662;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }

  /* Animasi garis hover tetap ada */
  .navbar .navbar-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }

  .navbar .navbar-nav a:hover::after {
    width: 100%;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(25, 54, 98, 0.75), rgba(25, 54, 98, 0.75)),
    url("../cover-drs.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 54, 98, 0.2);
  z-index: 1;
}

.hero .content {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #ffffff;
  width: 100%;
  max-width: 120rem;
  padding: 0 2rem;
  box-sizing: border-box;
}

.hero .content h1 {
  font-size: clamp(2rem, 5vw, 7rem);
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  font-weight: 300;
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-variation-settings: "wght" 250;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero .content p:first-of-type {
  font-size: clamp(2rem, 5vw, 8rem);
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  color: #f0f0f0;
}

.hero .content p:last-of-type {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  font-weight: 300;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.hero .content .cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #dc710c;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.hero .content .cta:hover {
  background-color: #dc710c;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

/* ================= ABOUT SECTION ================= */
.about {
  padding: 8rem 6% 4rem;
  color: var(--primary);
  background-color: #fff;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  color: #031229;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.about-img {
  flex: 1 1 45%;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about .content {
  flex: 1 1 50%;
}

.about .content h3 {
  font-size: 1.6rem;
  color: #dc710c;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 55px;
}

.about .content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 45px;
  height: 2px;
  background-color: #dc710c;
  transform: translateY(-50%);
  border-radius: 2px;
}

.about .content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #002b49;
}

.about .highlight {
  font-size: 1.2rem;
  font-weight: 700;
  color: #002b49;
  margin-bottom: 1rem;
}

/* 🔵 Kotak Statistik */
.about-stats {
  background-color: #002b49;
  color: #fff;
  padding: 2rem 4%;
  border-radius: 20px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-stats:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  text-align: left;
  align-items: flex-start;
}

.stat-box {
  flex: 1 1 260px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 260px;
}

.stat-box .icon {
  background-color: #dc710c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-box .icon i {
  width: 28px;
  height: 28px;
  color: #002b49;
  stroke-width: 2.2;
}

.stat-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.stat-box p {
  font-size: 0.95rem;
  color: #dcdcdc;
}

/* Responsif */
@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
    text-align: center;
  }

  .stat-box {
    flex: 1 1 100%;
  }

  .stats-container {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .stats-container {
    flex-wrap: nowrap;
  }
}

/* solutions Section */

.solutions {
  padding: 20px 10px;
  color: #002b49;
  text-align: center;
  background-color: #ffffff;
  scroll-margin-top: 120px;
}

.solutions h2 {
  color: #193662;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* === CONTAINER === */
.container {
  max-width: 12000px;
  margin: 50px auto;
  padding: 0 40px;
}

/* === TITLE === */
.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 40px;
}

/* === GRID === */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* === CARD === */
.solutions-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  max-width: 260px;
}

.solutions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* === ICON === */
.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
}

/* === TEXT === */
.solutions-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.solutions-desc {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions-card {
    max-width: 300px;
    margin: 0 auto;
  }
}

.solutions-card-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.solutions-content {
  margin-top: 3rem;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.product-layout,
.solutions-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

.produk-card img {
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.produk-card img:hover {
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP */
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Contact Section */

.contact {
  background-color: #fff;
  padding: 100px;
  font-family: "Poppins", sans-serif;
  scroll-margin-top: 48px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  justify-items: start;
}

.contact-info {
  min-width: 320px;
  text-align: left;
}

.contact-info h2 {
  color: #002147;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: flex-start;
  text-align: left;
}

.contact-item div:last-child {
  text-align: left;
  width: 100%;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background-color: #f58220;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.contact-item-icon i {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
}

.contact-item h3 {
  color: #f58220;
  margin: 0 0 5px;
  font-size: 18px;
}

.contact-item p {
  color: #333;
  margin: 3px 0;
  line-height: 1.4;
}

.contact-item div {
  text-align: left;
  margin-left: 0;
}

.contact-map {
  min-width: 320px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsif */
@media (max-width: 576px) {
  .contact {
    padding: 60px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr; /* 🔥 KUNCI UTAMA */
    gap: 30px;
  }

  .contact-info h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .contact-map {
    width: 100%;
    height: 280px;
  }
}

/* 📲 Untuk Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .contact-map {
    width: 100%;
    height: 320px;
  }
}

/* 💻 Untuk Laptop besar (lebih dari 992px) */
@media (min-width: 993px) {
  .contact-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
  }

  .contact-info {
    flex: 1;
  }

  .contact-map {
    flex: 1;
  }
}

/* MORE INFO SECTION */

.more-info {
  padding: 40px 8%;
  background-color: #ffffff;
  scroll-margin-top: 100px;
}

.project {
  margin-bottom: 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.project-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header Section (OUR PROJECT + Judul) */

.project-header {
  width: 100%;
  max-width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.project-header h3,
.project-header h2 {
  margin: 0;
}

.project-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #dc710c;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}

.project-header h3 span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #dc710c;
}

.project-header h2 {
  font-size: 1.9rem;
  color: #193662;
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.15;
  white-space: normal;
  max-width: 100%;
  word-break: keep-all;
}

/* Gallery Grid */
.mySwiper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mySwiper img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent;
  opacity: 0;
  transition: 0.3s;
}

.mySwiper:hover .swiper-button-next,
.mySwiper:hover .swiper-button-prev {
  color: rgba(100, 100, 100, 0.6);
  opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: rgba(70, 70, 70, 0.9);
}
/* Garis Pembatas Antar Project */
.divider {
  border: none;
  height: 1px;
  background-color: rgba(25, 54, 98, 0.15);
  margin: 10px 0;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .project-layout {
    grid-template-columns: 1fr 1.5fr;
  }

  .project-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .project-layout {
    grid-template-columns: 1fr;
  }

  .project-header {
    text-align: center;
  }

  .project-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .project-header h2 {
    font-size: 2rem;
  }
}

/* ================= OUR PARTNER & KEY CUSTOMER ================= */
.keycustomer-partner {
  background-color: #ffffff;
  padding: 0 0 30px 0;
  text-align: center;
  margin-bottom: 0;
}

.keycustomer-partner h2 {
  font-size: 2.4rem;
  color: #002b5b;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
}

.keycustomer-partner h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #f8b400;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.keycustomer-partner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.partner-box,
.keycustomer-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
}

.partner-box img,
.keycustomer-box img {
  width: 50%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: contain;
  transform: scale(0.85);
  transform-origin: top center;
}

.partner-box img:hover,
.keycustomer-box img:hover {
  transform: scale(0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.partner-slider {
  width: 100%;
  max-width: 1100px;
}

.partner-slider .swiper-slide {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e6e6e6;
}

.partner-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.myPartnerSwiper .swiper-button-next,
.myPartnerSwiper .swiper-button-prev {
  color: transparent;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.myPartnerSwiper:hover .swiper-button-next,
.myPartnerSwiper:hover .swiper-button-prev {
  color: rgba(100, 100, 100, 0.6);
  opacity: 1;
}

/* ===== KEY CUSTOMER SLIDER ===== */
.myKeyCustomerSwiper {
  width: 100%;
  max-width: 900px;
}

.myKeyCustomerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pakai style lama keycustomer-box img */
.myKeyCustomerSwiper img {
  width: 50%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* tombol hanya muncul saat hover */
.myKeyCustomerSwiper .swiper-button-next,
.myKeyCustomerSwiper .swiper-button-prev {
  color: transparent;
  opacity: 0;
  transition: 0.3s;
}

.myKeyCustomerSwiper:hover .swiper-button-next,
.myKeyCustomerSwiper:hover .swiper-button-prev {
  color: rgba(100, 100, 100, 0.6);
  opacity: 1;
}

/* FOOTER */

html,
body {
  height: 100%;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.footer {
  background-color: #063a54;
  color: #fff;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-info,
.footer-office {
  flex: 1 1 300px;
}

.footer h3 {
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ff7f32;
  margin-top: 5px;
}

.footer-column h3 {
  font-weight: 600;
  position: relative;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-column h4 {
  margin-top: 10px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease,
    color 0.18s ease;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.footer-contact a:hover {
  color: #ff7f32;
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 127, 50, 0.18);
}

.footer-contact a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 3px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
}

/* 💻 Desktop */
@media (min-width: 993px) {
  .footer-container {
    text-align: left;
  }
  .footer-contact {
    justify-content: flex-start;
  }
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .footer-container {
    text-align: left;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-contact a {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* === FOOTER NAVIGATION === */
.footer {
  text-align: center;
  margin: 50px 0 30px;
}

.back-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #0078d7;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #005fa3;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.float-shopee {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 110px; /* di atas WhatsApp */
  right: 40px;
  background-color: #EE4D2D;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float-shopee img {
  width: 30px;
  height: 30px;
  margin-top: 15px;
}

.float-tokopedia {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 180px; /* di atas Shopee */
  right: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.market-icon {
  width: 65px;
  height: 65px;
}
/* ================= RESPONSIVE DESIGN ================= */

/* Desktop besar (≥1600px) */
@media (min-width: 1600px) {
  .partner-box img,
  .keycustomer-box img {
    width: 95%;
    max-width: 1600px;
  }
}

/* Laptop besar (1440px – 1599px) */
@media (min-width: 1440px) and (max-width: 1599px) {
  .partner-box img,
  .keycustomer-box img {
    width: 95%;
    max-width: 1500px;
  }
}

/* Laptop standar (1366px – 1439px) */
@media (min-width: 1366px) and (max-width: 1439px) {
  html {
    font-size: 96%;
  }
  .partner-box img,
  .keycustomer-box img {
    width: 100%;
    max-width: 1450px;
  }
}

/* Laptop menengah (1025px – 1365px) */
@media (min-width: 1025px) and (max-width: 1365px) {
  html {
    font-size: 93.75%;
  }
  .partner-box img,
  .keycustomer-box img {
    width: 85%;
    max-width: 1250px;
  }
}

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
  .partner-box img,
  .keycustomer-box img {
    width: 90%;
    max-width: 900px;
  }
}

/* Mobile besar (451px – 768px) */
@media (min-width: 451px) and (max-width: 768px) {
  html {
    font-size: 87.5%;
  }
  .partner-box img,
  .keycustomer-box img {
    width: 95%;
    max-width: 600px;
  }
  .keycustomer-partner {
    padding: 60px 0;
  }
}

/* Mobile kecil (≤450px) */
@media (max-width: 450px) {
  html {
    font-size: 81.25%;
  }
  .partner-box img,
  .keycustomer-box img {
    width: 95%;
    max-width: 420px;
    border-radius: 10px;
    padding: 0.5rem;
  }
  .keycustomer-partner {
    padding: 50px 0;
  }
}
