/* Reset default margin & padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #fdd017;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 60px;
}

.header .logo {
  font-size: 20px;
  font-weight: 700;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.logo img:hover {
  transform: scale(1.08);
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  transition: all 0.3s ease;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("../image/hero-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px 80px 40px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 48px;
  margin-right: 48px;
}

.hero-left {
  max-width: 50%;
  align-self: flex-end;
}

.hero-right {
  max-width: 40%;
  align-self: flex-end;
  text-align: left;
}

.brand-title {
  font-family: "MoveSans", sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
}

.tagline {
  font-family: "MoveSans", sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.teaser {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us Section */
.about-us {
  padding: 80px 40px;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
}

.about-title {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.about-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #2e2e2e;
}

.about-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.about-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-info.reverse {
  flex-direction: row-reverse;
}

.about-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
  margin-left: 48px;
  margin-right: 48px;
}

.about-image img {
  width: 667px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Waitlist Section - Updated */
.waitlist {
  padding: 100px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.waitlist.visible {
  opacity: 1;
  transform: translateY(0);
}

.waitlist-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 16px;
}

.waitlist-container p {
  font-size: 24px;
  font-weight: 500;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
  justify-content: center;
}

.waitlist-btn.primary {
  background: #fdd017;
  color: #000;
  box-shadow: 0 4px 15px rgba(253, 208, 23, 0.3);
}

.waitlist-btn.primary:hover {
  background: #ffd93d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 208, 23, 0.4);
}

.waitlist-btn.secondary {
  background: transparent;
  color: #2e2e2e;
  border: 2px solid #2e2e2e;
}

.waitlist-btn.secondary:hover {
  background: #2e2e2e;
  color: white;
  transform: translateY(-3px);
}

.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  color: #fdd017;
  font-size: 20px;
  width: 24px;
}

.benefit-item span {
  font-weight: 500;
  color: #2e2e2e;
  white-space: nowrap;
}

/* Responsive Waitlist */
@media (max-width: 768px) {
  .waitlist {
    padding: 60px 20px;
  }

  .waitlist-container h2 {
    font-size: 28px;
  }

  .waitlist-container p {
    font-size: 20px;
  }

  .waitlist-actions {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-btn {
    width: 100%;
    max-width: 300px;
  }

  .waitlist-benefits {
    gap: 15px;
  }

  .benefit-item {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .waitlist-container h2 {
    font-size: 24px;
  }

  .waitlist-container p {
    font-size: 18px;
  }

  .waitlist-btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .benefit-item {
    min-width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .benefit-item span {
    font-size: 14px;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.faq.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 16px;
  font-weight: 500;
  color: #2e2e2e;
  margin: 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #ffce28;
}

.footer a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

.footer i {
  margin-right: 5px;
}

.copy {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Cookie Consent Styles */
.cookie-consent {
  display: none; /* Hidden by default - VERY IMPORTANT */
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.5s ease;
  font-family: "Poppins", sans-serif;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  padding: 25px;
}

.cookie-content h3 {
  margin-bottom: 10px;
  color: #2e2e2e;
  font-size: 20px;
}

.cookie-content p {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-option:hover {
  border-color: #fdd017;
  background: #fffdf0;
}

.cookie-option input {
  margin-right: 10px;
  margin-top: 3px;
}

.cookie-option span {
  font-weight: 600;
  color: #2e2e2e;
  display: block;
  margin-bottom: 5px;
}

.cookie-option small {
  color: #888;
  font-size: 12px;
  display: block;
}

.cookie-option input:disabled + span {
  color: #999;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.btn-primary,
.btn-secondary,
.btn-link {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

.btn-primary {
  background: #fdd017;
  color: #000;
}

.btn-primary:hover {
  background: #ffd93d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #2e2e2e;
  color: white;
}

.btn-secondary:hover {
  background: #4a4a4a;
}

.btn-link {
  background: transparent;
  color: #666;
  text-decoration: underline;
}

.btn-link:hover {
  color: #000;
}

.privacy-link {
  color: #666;
  font-size: 12px;
  text-decoration: none;
}

.privacy-link:hover {
  color: #000;
}

/* Responsive Cookie Popup */
@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-content {
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-link {
    flex: none;
    width: 100%;
  }
}

/* Tambahkan ini di CSS */
.cookie-consent {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.5s ease;
  font-family: "Poppins", sans-serif;
}

/* Existing CSS continues... */

/* 🔹 Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    align-self: center;
  }

  .tagline {
    font-size: 36px;
  }

  .teaser {
    margin-top: 30px;
    font-size: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fdd017;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    margin: 15px 0;
    font-size: 18px;
  }

  .hero {
    padding: 0 20px 60px 20px;
  }

  .hero-content {
    margin-left: 0;
    margin-right: 0;
  }

  .about-us {
    padding: 60px 20px;
  }

  .about-info,
  .about-info.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-text p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .waitlist {
    padding: 60px 20px;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }

  .faq {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 28px;
  }

  .teaser {
    font-size: 20px;
  }

  .about-title h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 18px;
  }

  .waitlist-container h2 {
    font-size: 28px;
  }

  .waitlist-container p {
    font-size: 20px;
  }

  .faq-container h2 {
    font-size: 28px;
  }

  .footer a {
    display: block;
    margin: 5px 0;
  }

  .policy-links {
    margin-top: 10px;
  }
}
