/* ============================================
   MAIN.CSS - BUNDLED STYLES
   Combined: base, navbar, hero, produk, size-chart, order, testimoni, footer, whatsapp-button
   ============================================ */

/* ============================================
   BASE.CSS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", serif;
}

body {
  background-color: #f1f1f1;
}

.container {
  width: 80%;
  margin-inline: auto;
}

@media (max-width: 992px) {
  .container {
    width: 90%;
  }
}

/* ============================================
   NAVBAR.CSS
   ============================================ */
/* --- Hamburger menu --- */
.navbar-box .ri-menu-3-line {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.navbar-box .ri-close-line {
  display: none;
  position: fixed;
  top: 20px;
  right: 70px;
  width: 46px;
  height: 46px;
  border-radius: 20%;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  background: linear-gradient(135deg, #ff1a1a, #8b0000);
  box-shadow: 0 10px 25px rgba(212, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar-box .ri-close-line:hover {
  transform: scale(1.08) rotate(90deg);
  box-shadow: 0 14px 35px rgba(212, 0, 0, 0.5);
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/* Desktop & Tablet - Hide hamburger and mobile menu */
@media (min-width: 769px) {
  .navbar-box .ri-menu-3-line {
    display: none !important;
  }

  .navbar-box .ri-close-line {
    display: none !important;
  }

  .navbar-box.nav-open .ri-close-line {
    display: none !important;
  }

  .menu-overlay {
    display: none !important;
  }
}

/* Mobile <= 768px (Hamburger Mode) */
@media (max-width: 768px) {
  .navbar-box .ri-menu-3-line {
    display: block;
  }

  .navbar-box.nav-open .ri-close-line {
    display: flex;
  }

  .navbar-box .menu {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    text-align: left;
    background: linear-gradient(135deg, #ff1a1a, #8b0000);
    width: 60%;
    max-width: 300px;
    height: 100vh;
    padding: 80px 0 40px 0;
    transition: left 0.4s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    gap: 0;
  }

  .navbar-box .menu.active {
    left: 0;
  }

  .navbar-box .menu li {
    width: 100%;
    display: block;
  }

  .navbar-box .menu li a {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 30px;
    display: block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
  }

  .navbar-box .menu li a:hover {
    background-color: #6b0000;
    padding-left: 40px;
  }
}

/* Tablet Layout (769px - 992px) - Stacked (Left Aligned) & Compact */
@media (min-width: 769px) and (max-width: 992px) {

  /* Reduce main navbar padding */
  .navbar {
    padding: 5px 0;
  }

  .navbar-box {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-right: 0;
    gap: 0;
    /* Zero gap between rows */
  }

  .logo {
    margin-bottom: 0;
    /* Zero margin */
    flex-shrink: 0;
    width: 10%;
    justify-content: flex-start;
    padding-left: 0;
  }

  .logo-img {
    height: 30px;
    /* Tiny logo */
  }

  .menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding-left: 0;
    margin-top: 2px;
    /* Slight separation */
  }

  .menu li a {
    padding: 2px 5px;
    /* Minimal padding */
    font-size: 12px;
    /* Smallest readable font */
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 4px;
    white-space: nowrap;
    justify-content: flex-start;
  }
}

/* --- Navbar --- */
/* Add padding to body to prevent content hidden behind fixed navbar */
body {
  padding-top: 80px;
  /* Apps height of navbar */
}

.navbar {
  background: linear-gradient(135deg, #ff0000, #b30000, #600000);
  width: 100%;
  padding: 15px 0;
  position: fixed;
  /* Fixed position */
  top: 0;
  left: 0;
  z-index: 9999;
  /* High z-index to stay on top */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  /* Shadow for depth */
}

.navbar-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Menu */
.menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.menu li {
  display: flex;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  /* Prevent wrapping on desktop */
  border-bottom: 3px solid transparent;
  /* Reserve space for border */
}

.menu li a:hover,
.menu li a.active {
  background-color: transparent;
  /* Stick to border only */
  color: #ffffff;
  border-bottom: 3px solid rgba(255, 255, 255, 0.6);
  /* Active indicator */
  border-radius: 0;
}

/* Hide active border when hovering OTHER items */
.menu:hover li a.active:not(:hover) {
  border-bottom-color: transparent;
}


/* ============================================
   HERO.CSS
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../assets/images/hero.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 60px 0;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-box {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-box .box {
  color: #fff;
  flex: 1;
  max-width: 550px;
}

.hero-box .box h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-box .box p {
  font-size: clamp(16px, 1.5vw, 18px);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-box .box a,
#hero-cta-btn {
  padding: 10px 15px !important;
  background: linear-gradient(135deg, #ff1a1a, #8b0000);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-box .box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 26, 26, 0.4);
}

.hero-box .box img {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    min-height: 70vh;
    padding: 80px 0 60px;
  }

  .hero::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-box {
    flex-direction: column;
    text-align: center;
  }

  .hero-box .box {
    max-width: 100%;
  }

  .hero-box .box h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-box .box p {
    font-size: clamp(14px, 3vw, 16px);
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 85vh;
    padding: 100px 0 40px;
  }

  .hero::before {
    background: rgba(0, 0, 0, 0.65);
  }

  .hero-box .box h1 {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 15px;
  }

  .hero-box .box p {
    font-size: clamp(13px, 4vw, 15px);
    margin-bottom: 20px;
  }

  .hero-box .box a,
  #hero-cta-btn {
    padding: 8px 12px !important;
    font-size: 14px;
  }
}

/* ============================================
   PRODUK.CSS
   ============================================ */
.produk .container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 60px;
}

.produk-box {
  text-align: center;
}

.produk-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin: 10px 0 28px;
  color: #111;
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}

.produk-title::before,
.produk-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(80px, 25vw, 480px);
  height: 2px;
  background-color: #c8c4c4;
}

.produk-title::before {
  right: 100%;
}

.produk-title::after {
  left: 100%;
}

.produk-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.produk-card {
  background-image: linear-gradient(135deg, #d40000, #000);
  padding: 2px;
  border-radius: 12px;
  box-sizing: border-box;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.produk-card>.card-inner {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.card-media {
  width: 100%;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card-body {
  padding: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  min-height: 44px;
}

.card-sub {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px;
  min-height: 22px;
}

.card-cta {
  margin-top: auto;
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ff0000, #b30000, #600000);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.produk-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.produk-card:hover .card-media img {
  transform: scale(1.06);
}

.produk-card:hover .card-cta {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 0, 0, 0.18);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 900px;
  max-width: 92vw;
  height: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 100%;
}

.modal-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-info {
  display: flex;
  flex-direction: column;
}

.modal-info h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.modal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  color: #333;
}

.tab-btn.active {
  background: transparent;
  color: #111;
  border-bottom: 3px solid #d40000;
}

.tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-specs {
  padding-left: 18px;
  margin: 0;
}

.detail-specs li {
  font-size: 14px;
  margin-bottom: 2px;
  color: #444;
  line-height: 1.4;
}

.detail-specs strong {
  min-width: 120px;
  display: inline-block;
  color: #111;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.price-table th {
  background: #f5f5f5;
  font-weight: 700;
}

.size-chart-modal {
  width: 100%;
  text-align: center;
}

.size-chart-modal img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
  font-size: 13px;
}

.size-table th,
.size-table td {
  border: 1px solid #eee;
  padding: 6px;
  text-align: center;
}

.size-table th {
  background-color: #f9f9f9;
  font-weight: 700;
  color: #111;
}

.size-table tr:nth-child(even) {
  background-color: #fcfcfc;
}

.size-table tr:hover {
  background-color: #ffe6e6;
}

.modal-actions {
  margin-top: 16px;
}

.btn-wa {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #000;
}

@media (max-width: 992px) {
  .modal-content {
    height: auto;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-img-wrap {
    height: 260px;
  }

  .produk-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .modal-content {
    padding: 16px;
  }

  .produk-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-img-wrap {
    height: 220px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px;
  }
}

.produk .container {
  max-width: 1000px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  margin-bottom: 60px !important;
}

.produk-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

/* ============================================
   SIZE-CHART.CSS
   ============================================ */
.size {
  padding: 1rem 0;
  background-color: #f1f1f1;
}

.size-chart {
  text-align: center;
}

.size-chart h1 {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: black;
  border-radius: 5px;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 2rem;
  text-align: center;
}

.size-chart h1::before,
.size-chart h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(80px, 25vw, 480px);
  height: 2px;
  background-color: #c8c4c4;
}

.size-chart h1::before {
  right: 100%;
  margin-right: 10px;
}

.size-chart h1::after {
  left: 100%;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .size-chart h1 {
    padding: 0.4rem 1rem;
    font-size: 20px;
  }

  .size-chart h1::before,
  .size-chart h1::after {
    width: 20vw;
    height: 4px;
  }
}

.size-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.size-box .box {
  width: 100%;
  height: 500px;
  background: #f5f5f5;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.size-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (min-width: 561px) and (max-width: 920px) {
  .size-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}

@media (max-width: 560px) {
  .size-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 0 10px;
    margin: 0 25px;
  }

  .size-box .box {
    height: 350px;
  }

  .size-chart h1 {
    font-size: 18px;
    padding: 0.4rem 1rem;
  }

  .size-chart h1::before,
  .size-chart h1::after {
    width: 15vw;
  }
}

/* ============================================
   ORDER.CSS
   ============================================ */
.order {
  margin-top: 60px;
  margin-bottom: 60px;
}

.order-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 5px solid;
  border-image: linear-gradient(90deg, #000, #d40000) 1;
  display: block;
  width: fit-content;
  margin: 0 auto 2rem;
}

.order-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);

  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, #d40000, #000);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: 0.3s ease;
  text-align: center;
}

.order-card:hover {
  transform: translateY(-5px);
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, #ff0000, #000);
}

.order-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.order-icon {
  width: 70px;
  margin-bottom: 15px;
}

.order-heading {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 8px 18px;
  font-size: 20px;
  font-weight: 600;
  transform: skew(-12deg);
  margin-bottom: 20px;
}

.order-heading span {
  display: inline-block;
  transform: skew(12deg);
}

.order-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  text-align: left;
}

.order-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.order-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  color: #d40000;
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 561px) and (max-width: 920px) {
  .order-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 25px;
  }

  .order-title {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 1.5rem;
  }

  .order-card {
    padding: 20px;
  }

  .order-heading {
    font-size: 18px;
    padding: 6px 14px;
  }

  .order-list li {
    font-size: 14px;
    padding-left: 24px;
  }

  .order-list li::before {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .order-grid {
    grid-template-columns: 1fr;
    margin: 0 25px;
  }
}

@media (max-width: 480px) {
  .order {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .order-title {
    font-size: 18px;
  }

  .order-card {
    padding: 18px;
  }

  .order-heading {
    font-size: 16px;
    padding: 6px 12px;
    margin-bottom: 15px;
  }

  .order-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

/* ============================================
   TESTIMONI.CSS
   ============================================ */
.testimoni {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f1f1f1, #ffffff);
  overflow: hidden;
}

.testimoni-cust {
  text-align: center;
  position: relative;
}

.testimoni-cust h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  color: #000;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
}

.testimoni-cust h1::before,
.testimoni-cust h1::after {
  content: "";
  height: 2px;
  background-color: #c8c4c4;
  flex: 1;
  max-width: 200px;
  min-width: 20px;
}

.testimoni-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

.testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.testi-btn:hover {
  background-color: #d40000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(212, 0, 0, 0.3);
}

.testi-btn.prev {
  left: 0;
}

.testi-btn.next {
  right: 0;
}

/* Slider */
.slider-window {
  overflow: hidden;
  width: 100%;
}

.testimoni-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  flex-wrap: nowrap;
}

.testimoni-slider .slide {
  display: block;
  min-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
}

.testi-card {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimoni-slider .slide .testimoni-screenshot {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.testi-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testi-pair.single {
  grid-template-columns: 1fr;
  max-width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testi-pair {
    grid-template-columns: 1fr;
  }

  .testi-pair.single {
    max-width: 100%;
  }

  .testimoni-slider .slide {
    padding: 30px 20px;
  }
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-nav .nav-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav .nav-dot.active {
  width: 32px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff0000, #ff5a5a);
}

@media (max-width: 480px) {
  .testimoni-slider .slide {
    padding: 25px 15px;
  }
}

/* ============================================
   FOOTER.CSS
   ============================================ */
.footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-section.about .logo-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-section.about .logo-footer img {
  width: 300px;
  height: 75px;
}

.footer-section.about p {
  line-height: 1.8;
  color: #ccc;
  font-size: 16px;
  text-align: justify;
}

.footer-section>h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #ff0000;
  padding-bottom: 10px;
  display: inline-block;
  width: auto;
}

.contact-item h3 {
  border: none !important;
  padding-bottom: 0 !important;
  text-decoration: none !important;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 20px;
  color: #ff0000;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  text-align: left;
}

.contact-item p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 5px;
  text-align: left;
}

.footer-address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address-link:hover {
  color: #ff0000;
  text-decoration: underline;
}

.footer-section.follow h3 {
  text-align: center;
  width: 100%;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
}

.social-icons a i {
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff0000;
}

.social-icons a:hover i {
  background-color: #ff0000;
  transform: translateY(-3px);
  color: #fff;
}

.footer-section.courier h3 {
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}

.courier-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.courier-logos img {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-section.about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section.about .logo-footer img {
    width: 200px;
    height: 50px;
  }

  .courier-logos {
    gap: 15px;
  }

  .courier-logos img {
    max-height: 80px;
    max-width: 80px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    font-size: 16px;
  }

  .social-icons a i {
    width: 35px;
    height: 35px;
  }
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #444;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

/* ============================================
   WHATSAPP-BUTTON.CSS
   ============================================ */
.whatsapp-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(7, 233, 90, 0.6);
}

.wa-text {
  background: #25d366;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
}


/* ============================================
   GLOBAL & UTILITIES (from original main.css)
   ============================================ */

/* Page Transition */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

/* SPA Optimization: Hide all sections by default to reduce initial paint */
.main-section {
  display: none;
}

/* Hero is the default landing, so show it immediately */
#hero {
  display: block;
}

/* Ensure anchor links are not hidden by fixed navbar */
.main-section,
#footer {
  scroll-margin-top: 150px;
  padding-top: 60px;
  /* Physical spacing for SPA view */
}

/* Section Transition Animation */
.fade-in {
  animation: sectionFadeIn 0.5s ease-out forwards;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}