@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Orbitron:wght@400..900&family=Lexend:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Meow+Script&family=Momo+Trust+Display&family=Pacifico&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;

}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }
}

html {
  scroll-behavior: smooth;
}

/* ====== Navbar Utama ====== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 70px;
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* ====== Logo ====== */
.logo {
  display: flex;
  align-items: center;

  font-family: "Playfair Display", serif;
  color: #f5f5f5;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;

}

.logo img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;

}

.logo span {
  margin-left: 10px;

}

.logo:hover img {
  transform: scale(2);
}

/* ====== Navigasi Link ====== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links li a {
  text-decoration: none;
  color: #f1f1f1;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: clamp(13px, 1.5vw, 18px);
  position: relative;
  transition: all 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b5b81e, #e8c27c);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #e8c27c;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ====== Tombol Menu (Mobile) ====== */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {

  .navbar {
    border-radius: 0;
    margin: 0;

  }

  .menu-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 1001;
    font-size: 28px;
    color: #f6e27f;
    transition: transform 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(214, 180, 64, 0.6));
  }

  /* Garis emas animasi */
  .menu-toggle::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f9e79f);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  }

  .menu-toggle.active::before {
    width: 80%;
  }

  /* 🌫️ Menu */
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 0;
    border-radius: 0 0 25px 25px;

    opacity: 0;
    transform: translateY(-20px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
      transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: inline-block;
    width: 85%;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    color: #f8f8f8;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.08);
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  }

  /* efek muncul tiap item biar elegan */
  .nav-links.show li {
    animation: fadeSlide 0.4s ease forwards;
  }

  .nav-links.show li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.show li:nth-child(2) {
    animation-delay: 0.15s;
  }

  .nav-links.show li:nth-child(3) {
    animation-delay: 0.2s;
  }

  .nav-links.show li:nth-child(4) {
    animation-delay: 0.25s;
  }

  .nav-links.show li:nth-child(5) {
    animation-delay: 0.3s;
  }

  .nav-links.show li:nth-child(6) {
    animation-delay: 0.35s;
  }

  .nav-links.show li:nth-child(7) {
    animation-delay: 0.4s;
  }

  .nav-links.show li:nth-child(8) {
    animation-delay: 0.45s;
  }

  .nav-links.show li:nth-child(9) {
    animation-delay: 0.5s;
  }

  .nav-links.show li:nth-child(10) {
    animation-delay: 0.55s;
  }

  .nav-links.show li:nth-child(11) {
    animation-delay: 0.6s;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ====== Scroll Effect (Optional) ====== */
.navbar.scrolled {
  background: rgba(20, 20, 20, 0.9);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

#home {
  height: auto;

  display: flex;
  background:
    url('image/background-home.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-content-left {
  height: 100vh;
  width: 50%;
}

.home-content-right {
  height: 100vh;
  width: 50%;
}

.home-content {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
  padding-left: 5%;
  box-sizing: border-box;
}

/* Judul dan deskripsi */
.home_judul {
  margin-top: 10%;
  height: auto;
  max-width: 600px;
}

.home_judul h1 {
  font-family: "Playfair Display", serif;
  font-size: 20vh;
  margin-bottom: 15px;
  color: #E9B73E;
}

.home_judul p {
  font-size: clamp(12px, 2.5vw, 22px);
  color: #000000;
  max-width: 600px;
  line-height: 1.5;
}

/* Video di kiri bawah */
.promo-video {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 600px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.home-content-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 5vh;
}

.parfum-slideshow {
  position: relative;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

.parfum-slideshow img {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 3s ease;
}

.parfum-slideshow img.active {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIF UNTUK HP */
@media (max-width: 768px) {
  #home {
    height: auto;
    padding-bottom: 100px;
    flex-direction: column;
    height: auto;
    padding-top: 100px;
  }

  .home-content-left {
    height: 50%;
    width: 100%;
    margin-top: 50px;
  }

  .home-content {
    align-items: center;
    padding: 0 5%;
    height: 50%;
  }

  .home_judul {
    text-align: center;
    margin-top: 1%;
  }

  .home_judul h1 {
    font-size: clamp(48px, 15vw, 90px);
  }

  .home_judul p {
    font-size: clamp(14px, 4vw, 18px);
    max-width: 100%;
  }

  .promo-video {
    position: relative;
    width: 90%;
    height: auto;
    margin-top: 30px;
    aspect-ratio: 16/9;
    left: 0;
    bottom: 0;
  }

  .home-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10%;
  }

  .parfum-slideshow {
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
  }
}

#about {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.about_block {
  position: relative;
  flex: 1;
  transition: flex 0.5s ease;
  overflow: hidden;
}

/* Wrapper untuk animasi AOS */
.about_inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.about_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about_inner h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  position: absolute;
  font-size: clamp(24px, 5vw, 60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Hover efek */
#about:hover .about_block:not(:hover) {
  flex: 0.5;
  filter: brightness(30%);
}

.about_block:hover {
  flex: 2;
}

.about_block:hover img {
  filter: brightness(60%);
  transform: scale(1.05);
}

.about_block:hover h2 {
  opacity: 1;
}


/* RESPONSIVE - di HP */
@media (max-width: 768px) {
  #about {
    flex-direction: column;
    height: auto;
  }

  .about_block {
    flex: none;
    width: 100%;
    height: 60vh;
  }

  /* Matikan efek melebar */
  #about:hover .about_block:not(:hover),
  .about_block:hover {
    flex: none;
  }

  /* Beri efek ringan saat disentuh (brightness dan teks muncul) */
  .about_block:active img {
    filter: brightness(70%);
    transform: scale(1.02);
  }

  .about_block:active h2 {
    opacity: 1;
  }

  /* Teks sedikit lebih kecil di HP */
  .about_block h2 {
    font-size: 6vw;
  }
}

#konten {
  position: relative;
  /* penting untuk pseudo-element */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 80px 0;
  overflow: hidden;
  /* supaya after-nya tidak keluar area */
  z-index: 0;
}

/* background hitam di belakang */
#konten::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  /* efek hitam hanya setengah bawah */
  background: linear-gradient(to top,
      #171717 20%,
      rgba(255, 255, 255, 0.116) 100%),
    url("image/black.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  /* supaya tidak ganggu interaksi mouse */
}

/* supaya konten muncul di atas background */
.konten-teks {
  position: relative;
  z-index: 2;
}

.konten-teks h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 68px);
  text-align: center;
  color: #3b1c0e;
  letter-spacing: 1px;
  margin: 0;
  transition: opacity 0.5s ease;
}

.konten-teks p {
  font-family: "Nunito", sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  text-align: center;
  color: #4d2b1f;
  max-width: 850px;
  margin: 20px auto 0;
  line-height: 1.8;
  transition: opacity 0.5s ease;

}

hr {
  width: 80%;
  border: none;
  height: 2px;
  background-color: #b89c7d;
  margin: 20px auto;
  border-radius: 10px;
}

/* Konten Block */
.main-konten-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.konten-block {
  position: relative;
  height: 50vh;
  width: 50vh;
  border-radius: 20px;

  transition: all 0.8s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.493);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;

}

.konten-block:hover {
  transform: scale(1.05);
}

.konten-block p {
  margin: 20px;
}


.konten-block .konten_gambar {
  width: 25%;
  height: auto;
  margin-bottom: 90px;
  object-fit: cover;
  border-radius: 20px;
  display: block;

}

.konten-block h2 {
  font-family: "Orbitron", sans-serif;
  position: absolute;
  font-size: clamp(10px, 15vw, 30px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

  transition: opacity 0.5s ease;
  text-align: center;
}

.konten-block p {
  margin-top: 50px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 3vw, 16px);
  color: #f1f1f1;
  text-align: center;
  transition: opacity 0.5s ease;


}

.image-wrapper {
  height: 10%;
  width: 10%;
  background-color: #994e4e;
}

.image-wrapper img {
  object-fit: cover;
}

/* RESPONSIF UNTUK HP */
@media (max-width: 768px) {
  #konten {
    padding: 60px 20px;
  }

  .konten-teks h2 {
    font-size: clamp(28px, 8vw, 50px);
  }

  .konten-teks p {
    font-size: clamp(14px, 4vw, 18px);
    text-align: justify;
    line-height: 1.7;
  }

  .main-konten-block {
    flex-direction: column;
    margin-top: 30px;
    gap: 25px;
  }

  .konten-block {
    width: 90%;
    height: 35vh;
  }
}


#produk {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;

  background:
    linear-gradient(to top,
      #000000 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0) 70%),
    url("image/black.svg");

}

/* Judul */
.varian-tag-line {
  text-align: center;
  margin-bottom: 70px;
  max-width: 800px;
}

.varian-tag-line h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 60px);
  color: #f1f1f1;
  letter-spacing: 3px;
  position: relative;
}

.varian-tag-line h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #05eeff, #ffffff);
  margin: 15px auto 0;
  border-radius: 2px;
}

.varian-tag-line p {
  font-size: 1.3rem;
  color: #bfbfbf;
  margin-top: 15px;
  line-height: 1.7;
}

.main-produk-block {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produk-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.produk-block {
  position: relative;
  height: 50vh;
  width: 50vh;
  border-radius: 20px;

  background:
    linear-gradient(to top,
      #000000 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0) 70%),
    url("image/black.svg");

  cursor: pointer;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  overflow: hidden;

  will-change: transform;

}

.produk-block:hover {
  transform: translateY(-10px);
  box-shadow:
    0 16px 40px rgba(78, 78, 78, 0.6),
    0 0 0 1px rgba(255, 217, 0, 0.6);
  background-position: center 10%;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-position 0.6s ease;
}

.produk-block img {
  width: 25%;
  height: auto;
  margin-bottom: 200px;
  object-fit: cover;

  display: block;
}


.produk-block h2 {
  font-family: "Orbitron", sans-serif;
  position: absolute;
  font-size: clamp(10px, 15vw, 30px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F3C546;

  transition: opacity 0.5s ease;
  text-align: center;
}

.produk-block p {

  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 3vw, 16px);
  color: #ffffff;
  text-align: center;
  transition: opacity 0.5s ease;
  margin: 20px;
}

.button-produk {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.produk-block:hover .button-produk {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.button-produk:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ===================== RESPONSIF ===================== */

/* Tablet */
@media (max-width: 1024px) {
  .produk-container {
    flex-wrap: wrap;
  }

  .produk-block {
    width: 45%;
    /* dua kolom */
  }
}

/* Handphone */
@media (max-width: 768px) {
  #produk {
    padding: 60px 0;
  }

  .main-produk-block {
    gap: 20px;
  }

  .produk-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .produk-block {
    width: 100%;
    /* dua kolom */
    margin: 5px 0;
    aspect-ratio: 1 / 1.1;
    /* sedikit lebih tinggi biar pas */
  }

  .produk-block h2 {
    font-size: clamp(14px, 5vw, 20px);
  }
}


#kualitas {
  background: radial-gradient(circle at top left, #111 0%, #000 80%);
  height: 100;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Judul dan deskripsi atas */
.kualitas-tag-line {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  
}

.kualitas-tag-line h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 55px);
  color: #e3e3e3;
  margin-bottom: 15px;
  letter-spacing: 3px;
  position: relative;
}

.kualitas-tag-line h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b5b81e, #e8c27c);
  margin: 12px auto 0;
  border-radius: 2px;
}

.kualitas-tag-line p {
  font-size: 1rem;
  color: #bdbdbd;
  line-height: 1.6;
}
/* Grid utama */
.kualitas-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Baris card */
.kualitas-blok1 {
  display: flex;
  width: 100%;
}

/* Card */
.kualitas-blok {
  flex: 1;
  background-color: #ffffff;
  border: solid 1px #ddd;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 32px 20px;
}

/* Gambar */
.kualitas-blok img {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}

/* Judul card */
.kualitas-blok h2 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
}

/* Deskripsi card */
.kualitas-blok p {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}

/* Responsif */
@media (max-width: 768px) {
  #kualitas {
    padding: 60px 20px;
  }

  .kualitas-overlay h2 {
    font-size: 1.2rem;
  }

  .kualitas-overlay p {
    font-size: 0.9rem;
  }
}

#Visi-Misi {
  background-color: #f8f8f8;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visi-misi-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.judul-besar {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

.judul-besar::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #c8a64b;
  margin: 15px auto 0 auto;
  border-radius: 5px;
}

.visi-misi-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.blok {
  background: #ffffff;
  border: 2px solid #e2e2e2;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  flex: 1 1 400px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blok:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blok h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
}

.blok p,
.blok ul {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.blok ul {
  list-style: none;
  padding: 0;
}

.blok ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.blok ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c8a64b;
  font-weight: bold;
}

/* Responsif */
@media (max-width: 768px) {
  .visi-misi-content {
    flex-direction: column;
  }

  .blok {
    text-align: center;
  }

  .blok ul li {
    padding-left: 0;
  }
}

#cta {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.cta-container {
  text-align: center;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.cta-container:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.25);
}

.cta-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #ff004f;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #ff3369;
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.6);
  transform: scale(1.05);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .cta {
    height: auto;
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 10px 25px;
  }
}

#kontak {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.kontak-container {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.kontak-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.kontak-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Form Styling */
.kontak-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontak-form input,
.kontak-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.kontak-form input:focus,
.kontak-form textarea:focus {
  border-color: #ff004f;
  box-shadow: 0 0 10px rgba(255, 0, 79, 0.4);
}

.kontak-form textarea {
  resize: none;
  min-height: 120px;
}

.kontak-form button {
  background: #ff004f;
  border: none;
  color: white;
  padding: 15px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kontak-form button:hover {
  background: #ff3369;
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.6);
  transform: scale(1.05);
}

/* Sosmed section */
.kontak-sosmed {
  margin-top: 50px;
}

.kontak-sosmed p {
  color: #bbb;
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.sosmed-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Warna ikon */
.icon.ig {
  background: radial-gradient(circle at 30% 30%, #ff9d00, #e0006c, #6c00ff);
}

.icon.x {
  background: #000;
  border: 1px solid #fff;
}

.icon.wa {
  background: #25d366;
}

/* Hover efek */
.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .kontak-container {
    padding: 40px 25px;
  }

  .kontak-title {
    font-size: 2rem;
  }

  .kontak-text {
    font-size: 1rem;
  }

  .kontak-form input,
  .kontak-form textarea {
    font-size: 0.95rem;
  }

  .sosmed-icons {
    gap: 20px;
  }

  .icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .kontak-container {
    padding: 30px 20px;
  }

  .kontak-title {
    font-size: 1.8rem;
  }

  .kontak-text {
    font-size: 0.9rem;
  }

  .kontak-form {
    gap: 15px;
  }

  .kontak-sosmed p {
    font-size: 0.9rem;
  }
}