/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fceef3;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 2.3rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #4f3466;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #4f3466;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #4f3466;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #fceef3;
  padding: 4.5rem 0 4rem 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 20px;
}

.hero-text-box span {
  color: #e67e22;
}

.hero {
  max-width: 130rem;
  margin: .1rem;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.3rem;
  align-items: center;
}

.hero-description {
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 3.2rem;
  color: #333;
}

.hero-img {
  width: 115%;
  margin-right: 30px;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
  padding-bottom: 2rem;
}

.delivered-imgs img {
  height:3rem;
  width: 3rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fceef3;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #555;
  padding-bottom: 2rem;
}

.delivered-text span {
  color: #4f3466;
  font-weight: 700;
}


/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
  background-color: #fefefe;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 2.5rem;
  filter: brightness(0);
  opacity: 50%;
}


/**************************/
/* About*/
/**************************/

.section-how {
  padding: 8rem 1rem;
  background-color: #fff;
  padding-bottom: 130px;
  padding-top: 120px;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #555;
}

.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  color: #767676;
}

.step-img {
  width: 115%;
  padding-right: 6rem;
  /* z-index: 10; */
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: fixed;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.feature {
  background: #fceef3;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-width: 200px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.feature.red { color: #e74c3c; }
.feature.purple { color: #8e44ad; }
.feature.orange { color: #f39c12; }
.feature.cyan { color: #1abc9c; }
button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
}


/**************************/
/* PROGRAM SECTION */
/**************************/
.program {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  font-family: sans-serif;
}

.program:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.program-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.program-content {
  padding: 5.5rem;
  padding-left: 2rem;
  text-align: left;
}

.program-level {
  background-color: #4e3de3;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 13px;
  margin-bottom: 12px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
}

.students {
  text-align: right;
}

.program-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.program-rating {
  display: block;
  align-self: flex-start;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
}

.star-icon {
  color: #f5c518; /* warna bintang kuning */
}


.program-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #f25486;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
  color: #e67e22;
  text-decoration: none;
}




/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  background-color: #fceef3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-container {
  padding: 5rem;
}

.testimonials-container span,
h2{
  display: flex;
  justify-content: center;
}

.container-testi{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.testimonial .image{
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
  padding: 2rem;
}

.testimonial .slide{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}

.slide p{
  padding: 1.2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.slide i{
  font-size: 2rem;
  color: #4070f4;
}

.slide .details{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name{
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}


.swiper-button-prev,
.swiper-button-next {
  background: none;
  border: none;
  border-radius: 0;
  color: #333;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}



/* GALLERY */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.item-gallery {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.item-gallery img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.item-gallery img {
  transition: all 0.4s;
}

.item-gallery img:hover {
  transform: scale(1.1);
}

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.152);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button {
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 15px 20px;
}


/**************************/
/* Pricing SECTION */
/**************************/

.section-pricing {
  padding: 60px 20px;
  background-color: #fff;
}

.subheading {
  justify-content: center;
  display: flex;
  text-align: center;
}

.section-pricing span, h2{
  display: flex;
  justify-content: center;
  color: #000;
}

.pricing-plan {
  border-radius: 11px;
  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 3px solid #f9ebef;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fceef3;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #4f3466;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
  color: #000;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  color: #000;
}



/* Featured */
.featured {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
    display: flex;
    margin-top: 7rem;
    cursor: pointer;
}

.feature-icon {
  color: #ffff;
  height: 2.8rem;
  width: 2.8rem;
  background-color: #4f3466;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}


.feature-text{
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: start;
  line-height: 1.3;
}


/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-bottom: 8rem;
}

.left-content {
  max-width: 500px;
  text-align: center;
  margin-right: 8rem;
}

.left-content h2 {
  padding-bottom: 3rem;
  color: #4f3466;
  font-weight: 700;
  line-height: 1.5;
  font-size: 3.5rem;
}

.left-content p {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.social-icons i {
  font-size: 24px;
  margin: 10px;
  color: #4f3466;
}

.lottie-container {
  margin: 20px auto 0;
}

.right-form {
  background-color: #f1f1f1;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(220, 85, 140, 0.4);
  width: 450px;
}

.right-form h2 {
  margin-bottom: 20px;
  color: #111;
  font-size: 2.5rem;
}

.right-form form input,
.right-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}


.right-form form textarea {
  resize: vertical;
  min-height: 100px;
}

.right-form button {
  width: 100%;
  padding: 12px;
  background-color: #4f3466;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.right-form button:hover {
  background-color: #555;
}

.right-form form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #fff;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12rem 0;
  background-color: #fceef3;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.text {
  display: flex;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
  padding-bottom: 1.2rem;
  font-weight: 500;
}

.grid--footer {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 3rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  padding-bottom: 2rem;
}

.social-links i {
  font-size: 2rem;
  color: #767676;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
  display: block;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #000;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}

.address {
  margin-bottom: 2.4rem;
  color: #767676;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}


/* FAQ */

.faq-section{
  padding-top: 4rem;
  background-color: #fceef3;
}

.faq-section h2{
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  color: #333;
}

.accordion {
  max-width: 700px;
  padding-top: 4rem;
  margin: auto;
  padding-bottom: 4rem;
}

.accordion-item {
  background: #fff;
  border: 2px solid #ddd;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 5px rgba(0,0,0,0.05);
}

.accordion-header {
  width: 100%;
  padding: 1rem;
  background: transparent; /* tombol putih */
  color: #000000;       /* teks hitam */
  border: none;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.accordion-header.active {
  background: #f5f5f5; /* warna saat aktif (masih putih terang) */
}

.accordion-content {
  padding: 1rem;
  background: #fff;
  color: #000;
  display: none;
  border-top: 1px solid #ddd;
}

.accordion-content p{
  font-size: 1.3rem;
  color: #000;
  line-height: 1.2;
}


.accordion-header,
.accordion-content{
font-family: "Poppins", sans-serif;
}

.arrow-icon {
  font-size: 1.8rem;
  color: #000;
}

.accordion-header.active .arrow-icon {
  transform: rotate(90deg); /* Panah mengarah ke bawah saat dibuka */
}




