/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --gold: #c5a059; /* Warna Emas Logo */
  --dark: #2d2e2e; /* Abu-abu Tua Logo */
  --light-gold: #e2c285; /* Emas Muda untuk Hover */
  --white: #ffffff;
  --bg-light: #f8f9fb;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* WRAPPER */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Styling Container Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px; /* Atur tinggi logo sesuai selera */
  width: auto; /* Biarkan lebar mengikuti proporsi gambar */
  transition: 0.3s;
}

/* Navbar Flexbox Adjustment */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Hover effect pada logo */
.logo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px; /* Ukuran sedikit lebih kecil di HP agar hemat ruang */
  }
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #f4b400;
}

/* BUTTON NAV */
.btn-nav {
  background: #c5a059;
  padding: 10px 16px;
  border-radius: 6px;
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

.hero-premium {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 1.5s ease,
    transform 8s ease;
  transform: scale(1.1);
}

.hero-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: 80vh;
  }
  .hero-content h1 {
    font-size: 28px;
  }
}

.running-text {
  width: 100%;
  background: #c5a059;
  color: white;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.running-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: jalan 20s linear infinite;
  font-weight: 600;
  font-size: 20px;
  padding-left: 100%;
}

@keyframes jalan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.produk-highlight {
  padding: 80px 20px;
  background: #c5a059;
  text-align: center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.highlight-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.highlight-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.overlay a {
  display: inline-block;
  margin-top: 10px;
  background: #c5a059;
  padding: 8px 16px;
  border-radius: 6px;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.lihat-semua {
  margin-top: 40px;
}

.lihat-semua a {
  font-weight: bold;
  text-decoration: none;
  color: #111;
}
.produk-highlight {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.highlight-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.highlight-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.overlay a {
  display: inline-block;
  margin-top: 10px;
  background: #c5a059;
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.lihat-semua {
  margin-top: 40px;
}

.lihat-semua a {
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

.about {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TAG */
.about-tag {
  display: inline-block;
  background: #dbeafe;
  color: #c5a059;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}

.about-desc {
  font-size: 18px;
  font-weight: 600;
  color: #c5a059;
  margin-bottom: 15px;
}

.about-text p {
  color: #475569;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat h3 {
  font-size: 28px;
  color: #c5a059;
}

.stat span {
  font-size: 14px;
  color: #64748b;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
}

.feature-card p {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

.konsultasi {
  background: #c5a059;
  padding: 100px 10%;
  color: white;
}

.konsultasi-container {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* KIRI */
.konsultasi-info {
  flex: 1;
}

.konsultasi-info h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.konsultasi-info p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.info-item {
  margin-top: 15px;
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* FORM */
.konsultasi-form {
  flex: 1;
  background: #f3f4f6;
  padding: 40px;
  border-radius: 20px;
  color: #333;
}

.konsultasi-form label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

.konsultasi-form input,
.konsultasi-form textarea {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.konsultasi-form button {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #c5a059;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.konsultasi-form button:hover {
  background: #1c4fd8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .konsultasi-info h1 {
    font-size: 36px;
  }
}

.testimoni {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimoni-wrapper {
  max-width: 500px;
  margin: auto;
  position: relative;
}

.testimoni-card {
  display: none;
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fade 0.5s ease;
}

.testimoni-card.active {
  display: block;
}

.testimoni-foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimoni-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.bintang {
  color: gold;
  font-size: 18px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #f5f7fb;
  padding: 60px 20px;
}

/* GRID DESKTOP */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* TEXT */
.footer-col h2 {
  margin-bottom: 15px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  color: #555;
  line-height: 1.6;
}

/* MENU */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #2563eb;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* MAP RESPONSIVE */
.map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .footer {
    padding: 40px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .map iframe {
    height: 200px;
  }
}

.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* warna brand */
.fb {
  background: #1877f2;
}
.ig {
  background: #e1306c;
}
.wa {
  background: #25d366;
}
