* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  background-color: #101010; /* merah gelap */
  color: #bea578; /* biar teks tetap terbaca */
}

@font-face {
  font-family: 'bigcaslon';
  src: url('big-caslon-regular.ttf') format('truetype');
}
:root {
  --fontjdl: 'Roboto', sans-serif;
  --bg-light: #101010;
}

/* NAVBAR */
.navbar {
  font-family: var(--fontjdl);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  background: transparent;
  transition: color 0.3s ease;
}

.navbar-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 1rem 2rem;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  transition: all 0.6s ease-in-out;
}

.navbar.scrolled .navbar-logo {
  color: #bea578;
}

#navbar-logo {
  transition: opacity 0.5s ease;
  opacity: 1;
}
#navbar-logo.fade-out {
  opacity: 0;
}

.navbar.scrolled a {
  color: #bea578; /* ubah warna link */
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
}

.navbar-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* --- Mobile Toggle --- */
.navbar-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.navbar.scrolled .navbar-toggle {
  color: #333;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar-logo img {
    margin-left: -2rem;
  }
  .navbar-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    color: #333;
    padding: 1rem;
  }

  .navbar-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('img/city-view.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.593);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #bea578;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: 'bigcaslon', sans-serif;
  /* font-size: 10rem; */
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: bold;
  margin-bottom: 0.3rem;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-content p {
  font-family: 'bigcaslon', sans-serif;
  /* font-size: 2rem; */
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 5rem;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-button {
  font-family: var(--fontjdl);
  background: white;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.5s ease;
}

.hero-button:hover {
  color: white;
  background: #50c878;
}

html {
  scroll-behavior: smooth;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 0.2s ease-in-out 0.3s forwards, bounce 1.8s infinite;
  z-index: 2;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 4em !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* SERVICES SECTION */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

body {
  font-family: sans-serif;
  background: #101010;
  color: #bea578;
}

.team-section {
  text-align: center;
  padding: 2rem;
}

.judulut h2 {
  padding-top: 3rem;
  font-family: 'bigcaslon', sans-serif;
  font-size: 3rem;
}

.judulut p {
  font-family: 'bigcaslon', sans-serif;
  font-size: 1.5rem;
}

.carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* -webkit-overflow-scrolling: touch; */
  /* gap: 10px; jarak antar tombol dan carousel */
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 2rem auto;
  gap: 10px; /* update */
  width: 80%; /* update */
}

.carousel-track {
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  min-width: 100%;
  padding: 2rem;
  background: #bea578;
  border: 10px solid #101010;
  border-radius: 20px;
  text-align: center;
}

.carousel-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 2rem;
  color: #101010;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-description {
  /* margin: 0 auto; */
  font-family: 'Roboto', sans-serif;
  color: #101010;
  /* font-size: 1.5rem; */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 0, 0, 0);
  /* color: #bea578; */
  border: none;
  font-size: 5rem;
  cursor: pointer;
  z-index: 10; /* tadinya 1 */
  padding: 7rem 0px; /* update */
  /* padding: 0.5rem; */
}

.carousel-btn.prev {
  color: #bea578;
  padding-right: 25px;
  left: 5%;
}

.carousel-btn.next {
  color: #bea578;
  padding-left: 25px;
  right: 5%;
}

.carousel-btn:hover {
  transform: translateY(calc(-50% - 10px));
  transition: transform 0.5 ease-in-out;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.carousel-indicators .dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background-color: #bea578;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track {
    touch-action: none;
  }
  .carousel-card h3 {
    font-size: 1rem;
  }

  .carousel-card p {
    font-size: 0.9rem;
  }

  .carousel-card img {
    width: 100px;
    height: 100px;
  }
  .carousel-btn.prev {
    left: -25px;
  }
  .carousel-btn.next {
    right: -25px;
  }
  .carousel-btn {
    position: absolute;
    display: flex;
    z-index: 20;
    /* padding-right: 10rem; */
    margin: none;
    /* display: block; */
  }
}

/* TEAM SECTION */

.why-section {
  font-family: 'bigcaslon', sans-serif;
  font-size: 2rem;
  padding: 2rem 2rem;
  background: var(--bg-light);
  text-align: center;
}

.container {
  font-family: var(--fontjdl);
  font-size: 1.5rem;
  padding-top: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  font-family: var(--fontjdl);
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
}

.why-item img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.why-item p {
  margin-top: 0.8rem;
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.horizontal-line {
  width: 800px;
  height: 5px; /* tinggi garis */
  background-color: #bea578; /* warna garis */
  margin: 40px auto 25px auto; /* agar center dan beri jarak ke bawah */
  border-radius: 999px;
}
@media (max-width: 768px) {
  .horizontal-line {
    width: 250px;
  }
}

/* BLOG SECTION */

.blog {
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
  /* border: 5px solid #bea578; */
  font-family: 'bigcaslon', sans-serif;
  font-size: 2rem;
  padding: 1rem 2rem;
  text-align: center;
}
.blog-list {
  display: flex;
  flex-direction: column;
  font-family: var(--fontjdl);
  font-size: 20px;
  text-align: left;
  gap: 30px;
  padding: 20px;
  padding-left: 8rem;
}
.blog-item h3 a {
  color: white;
  text-decoration: none;
}

.tglblg {
  font-size: 15px;
  font-family: var(--fontjdl);
}

.desblg {
  color: #ffffff;
  font-family: var(--fontjdl);
}

.btnjdl {
  font-family: 'bigcaslon', sans-serif;
  text-decoration: none;
  color: #bea578;
}

.btnjdl:hover {
  color: blue;
}

.blog-button-container {
  text-align: center;
  margin-top: 2rem;
}

.blog-button {
  display: inline-block;
  padding: 1rem 1rem;
  background: transparent;
  color: #ffffff;
  font-size: 1.3rem;
  border: none;
  border-radius: 12px;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.blog-button:hover {
  color: rgb(1, 1, 156);
  transform: translateY(-4px);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog-list {
    padding-left: 0;
  }
  .blog-item h3 {
    font-size: 1.5rem;
  }
  .blog-item p {
    font-size: 0.95rem;
  }
  .btnjdl {
    font-size: 5px;
  }
}

/* FORM SECTION */
.form-section {
  color: #bea578;
  max-width: 100%;
  width: 100vw;
  margin: auto;
  background-color: transparent;
  margin: 0;
  padding-bottom: 2.5rem;
  align-items: center;
  font-size: 2rem;
  text-align: center;
  /* border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}

.form-section h1 {
  font-family: 'bigcaslon', sans-serif;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.form-container {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  gap: 20px;
}
.form-container label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}
.form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #101010;
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ffffff9a;
  border-radius: 5px;
  resize: vertical;
  transition: 0.3s;
}

.form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.buttonform {
  margin-top: 20px;
  width: 100%;
  background-color: #bea578;
  color: #101010;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttonform:hover {
  background-color: #3c3c3c;
}
/* Responsif di layar kecil */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }
}

/* FAQ SECTION */

.faq-container {
  cursor: pointer;
  max-width: 600px;
  margin: auto;
  background-color: #bea578;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 10px;
  /* border-radius: 8px; */
}

.faq-section h1 {
  margin-top: 2rem;
  font-family: 'bigcaslon', sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.faq-question {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  padding: 15px;
  font-size: 1.2rem;
  color: #101010;
  border-bottom: 0 solid #7a7a7a;
  background-color: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #ddd;
}

.faq-answer {
  overflow: hidden;
  height: 0;
  padding: 0 20px;
  margin-bottom: 3px;
  background-color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  color: #101010;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.faq-icon {
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: 10px;
}

.faq-item.active .faq-answer {
  height: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
/* .faq-item.active .faq-answer {
  max-height: 500px; angka cukup besar melebihi konten maksimum
  padding-top: 15px;
  padding-bottom: 15px;
} */
@media (max-width: 600px) {
  .faq-container {
    padding: 10px;
    width: auto;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* FOOTER SECTION */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

.lux-footer {
  border-top: 1px solid #202020;
  background: #101010;
  color: #bea578;
  font-family: 'Playfair Display', serif;
  padding: 40px 20px 30px;
}

.lux-container {
  max-width: 1200px;
  padding-left: 0; /* tambahkan ini */
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 7rem;
}

.lux-brand {
  flex: 1 1 60%;
}

.lux-brand h2 {
  font-size: 40px;
  margin: 0 0 20px 0;
  color: #bea578;
}

.lux-brand p {
  font-size: 14px;
  color: #bea578;
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 1200px;
}

.lux-address {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #d4c3a1;
  opacity: 0.85;
  margin-top: 10px;
}

.lux-address i {
  margin-right: 8px;
  color: #bea578;
}

.lux-links {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.lux-links a {
  text-decoration: none;
  color: #bea578;
  padding: 3px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.lux-links a i {
  margin-right: 10px;
  font-size: 18px;
}

.lux-links a:hover {
  color: #ffffff;
}

.lux-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 1160px) {
  .lux-container {
    margin: auto; /* tetap tengah di mobile */
    /* padding-left: 20px; default padding kiri */
    /* padding-bottom: 250px; */
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .lux-bottom {
    display: none;
  }

  /* .lux-brand,
  .lux-links {
    align-items: center;
  } */

  .lux-brand h2 {
    margin-bottom: 10px;
  }

  /* .lux-address {
    justify-content: center;
  } */
}
