/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #eee;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  border-radius: 10px;
}
h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

ul{
  list-style-type: none;
}
@media (max-width: 768px) {
  h2{
     font-size: 1.5rem;
  }

  p{
    text-align: center;
  }
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #00b894;
  color: #fff;
  border-radius: 8px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #019875;
}

/* ===== CONTAINERS ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* ===== NAVBAR ===== */
/* === NAVBAR === */
.navbar {
  background: #1f1f1f;
  padding: 0.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.nav-links li a {
  padding: 0.4rem 0.6rem;
  display: block;
}

/* === Linkul special din nav === */
.nav-links .btn-nav {
  background-color: #00b894;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  color: white;
  transition: background 0.3s ease;
  font-weight: bold;
}
.nav-links .btn-nav:hover {
  background-color: #019875;
}


/* === Responsive Nav === */
#menu-toggle {
  display: none;
}
.burger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: #1f1f1f;
    flex-direction: column;
    align-items: center;
    display: none;
    padding-bottom: 1rem;
  }

  #menu-toggle:checked + .burger + .nav-links {
    display: flex;
  }
}

/* ===== Video SECTION ===== */

.video-section {
  background: #1a1a1a;
  padding: 3rem 0;
  border-radius: 12px;
  margin-top: 2rem;
}
.video-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.video-text h2 {
  margin-bottom: 1rem;
}
.video-text p {
  margin-bottom: 1rem;
}
.video-embed video {
  width: 100%;
  max-height: 600px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 9/16;
}

/* Mobile styles */
@media (max-width: 768px) {
  .video-section p{
    text-align: center;
  }
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.benefit-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #1f1f1f;
  gap: 5px;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  color: #eee;
  transition: background 0.3s ease;
}



.benefit-list li:hover {
  background: #2a2a2a;
}

.benefit-list .icon {
  font-size: 1.2rem;
  color: #00b894;
  margin-right: 0.8rem;
}


/* Responsive */
@media (max-width: 768px) {
  .video-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .video-embed video {
    max-height: 400px;
  }
}


/* ===== HERO SECTION ===== */
.hero>.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}
.hero-img {
  display: flex;
  justify-content: center;
}
.hero-img img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  max-height: 400px;
}
@media (max-width: 768px) {
  .hero>.container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
}


/* ===== ABOUT SECTION ===== */
.about {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-img {
  order: 1;
}
.about-text {
  order: 2;
}
.about-img img {
  border-radius: 12px;
  max-width: 450px;
}

/* RESPONSIVE ORDER ON MOBILE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img,
  .about-text {
    order: unset;
  }
  .about .button-tg{
    margin: 0 auto;
  }
  .about-img img{
    width: 100%;
  }
}

/* ===== BENEFITS ===== */
.benefits .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.card {
  background: #1f1f1f;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}
.card svg {
  margin-bottom: 1rem;
}

.card .icon {
  margin-bottom: 1rem;
  color: #00b894;
}

/* RESPONSIVE ORDER ON MOBILE */
@media (max-width: 768px) {
  .benefits p {
    text-align: center;
  }
}

/* ===== REVIEWS ===== */
.reviews .slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}
.reviews img {
  flex-shrink: 0;
  width: auto;
  height: 300px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 10px;
  scroll-snap-align: start;
}


/* ===== CTA SECTION ===== */
.cta {
  background: #2c2c2c;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 12px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  background: #111;
  margin-top: 2rem;
}
