body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: white;
}

/* Logo ARECHAR (Burgundia diganti serif dulu) */
.logo-text {
  font-family: serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-left: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
}

/* Navbar */
.navbar-top {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
}

.navbar-top .nav-link {
  color: white;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-top .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background-color: white;
  transition: width 0.3s ease;
}

.navbar-top .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.header-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: block;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  padding-left: 5%;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px; /* Diperpendek */
}

.hero-content h2 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 12px; /* Diperpendek */
}

.hero-content p {
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px; /* Diperpendek */
}

.btn-custom {
  display: inline-block;
  margin-top: 0;
  padding: 12px 28px;
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  color: white;
  text-decoration: none;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 255, 136, 0.4),
    0 0 60px rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

/* === PRODUCT SECTION === */
/* Container & layout */
.product-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-slider-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 1000px;
}

.product-slider {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
}

/* Card */
.product-card {
  min-width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 24px;
  margin: 3px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 75%;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 5px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.learn-more {
  text-decoration: none;
  font-weight: 600;
  color: #3f51b5;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

/* Button */
.slider-btn {
  background-color: transparent;
  color: #28a745;
  border: 3px solid #28a745;
  font-size: 24px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: #28a745;
  color: white;
}

.slider-btn.left {
  position: absolute;
  left: 20px;
  z-index: 10;
}

.slider-btn.right {
  position: absolute;
  right: 20px;
  z-index: 10;
}

/* About Us Section */
.gambar {
  position: relative;
  text-align: center;
  margin: var(--space-lg) 0;
}

.background-gambar {
  position: relative;
  width: 100%;
}

.background-gambar img {
  width: 100%;
  height: auto;
  display: block;
}

.gambar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%; /* Sesuaikan dengan kebutuhan */
}

.gambar-text h2 {
  margin: 0 0 var(--space-sm) 0; /* Beri margin bawah agar terpisah dari teks p */
  font-size: 2rem; /* 32px */
  font-weight: bold;
}

.gambar-text p {
  margin: 0;
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  max-width: 600px; /* Batasi lebar teks agar tidak terlalu panjang */
}

/* Section Manfaat */
.gambar2 {
  position: relative;
  text-align: center;
  margin: var(--space-lg) 0;
}

.background-gambar2 {
  position: relative;
  width: 100%;
}

.background-gambar2 img {
  width: 100%;
  height: 100%;
  object-fit: block;
}

.gambar-text2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.judul {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.manfaat-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.manfaat-box {
  width: 23%;
  text-align: center;
}

.manfaat-icon {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
}

.manfaat-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}

.manfaat-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* Section Services */
.gambar3 {
  position: relative;
  text-align: center;
  margin: var(--space-lg) 0;
}

.background-gambar3 {
  position: relative;
  width: 100%;
}

.background-gambar3 img {
  width: 100%;
  height: 100%;
  object-fit: block;
}

.gambar-text3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.judul-service {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
}

.service-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-box {
  width: 28%;
  text-align: center;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* Feecback Section */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

.feedback-section {
  font-family: "Poppins", sans-serif;
  position: relative;
  color: white;
  margin: var(--space-lg) 0;
}

.background-feedback {
  position: relative;
  width: 100%;
}

.background-feedback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.judul-feedback {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feedback-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.testimoni {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.testimonial-box .role {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0px 0;
}

.testimonial-box .stars {
  font-size: 22px;
  color: #ffcc00;
  margin: 0px 0;
}

.testimonial-box .message {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.form-feedback {
  width: 50%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-feedback h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  border-radius: 10px;
  font-size: 16px;
  color: white;
}

form input::placeholder,
form textarea::placeholder {
  color: white;
  opacity: 1;
}

form textarea {
  height: 150px;
  resize: none;
}

form button {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: 800;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: white;
  color: #0c8945;
  box-shadow: 0 0 20px 5px #00ff88;
}

/* === FOOTER SECTION === */
footer {
  background: white;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.copyright {
  font-size: 14px;
  color: #666;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  color: #3c366b;
  text-align: center;
}

.footer-line {
  width: 100%;
  border: none;
  height: 1px;
  background: #999;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #6b5f93;
  margin-right: 15px;
  font-size: 14px;
}

.footer-socials i {
  margin-left: 15px;
  color: #888;
  font-size: 16px;
  cursor: pointer;
}

.footer-socials a {
  margin-left: 0px;
  text-decoration: none;
}

.footer-socials i:hover {
  color: #3c366b;
}
