:root {
  /* =============== HTML RESET =============== */
  /* box sizing rules */
  * {
    box-sizing: border-box;
  }
}

/*reset font sizes of all tags*/
* {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

/* reset font size 1rem to 10px */
body,
html {
  height: 100%;
}

/* remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set core body defaults */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* a elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* avoid text overflows */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
}

/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: smooth;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: smooth !important;
  }
}

/* =============== LAYOUT =============== */

.container {
  width: 100%;
  max-width: 960px;
  /* Default max width */
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  /* Center the container */
}

@media (min-width: 1025px) {
  .container {
    max-width: 1426px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* =============== Typhograph =============== */
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  padding: 20px 0;
  top: 0;
  z-index: 1000;
}

.header .logo {
  height: 77px;
}

.header .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header .nav-link:hover {
  color: #df080f;
}

.btn-download {
  background-color: #df080f;
  color: #fff;
  border-radius: 50px;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-download:hover {
  background-color: #b8060c;
  color: #fff;
}

/* --- Mobile --- */
@media (max-width: 991px) {
  .header {
    padding: 20px 0;
  }

  .header .logo {
    height: 35px;
  }

  .btn-download {
    display: none !important;
  }

  .header .bi-list {
    font-size: 18px;
    color: #000;
  }
}

/* --- hero section --- */
.hero-heading {
  font-size: 50px;
  font-weight: 700;
  color: #2f200e;
  text-align: left;
  max-width: 711px;
  margin-bottom: 24px;
  line-height: 74px;
  letter-spacing: -1px;
}
.hero-subheading {
  font-size: 20px;
  font-weight: 400;
  color: #2f200ebf;
  margin-bottom: 40px;
  line-height: 150%;
}

.highlight {
  background-color: #0ac630;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
}

.underline {
  position: relative;
}

/* .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: #ffb74d;
  border-radius: 4px;
  z-index: -1;
} */



.hero-img {
  max-width: 80%;
  transition: transform 0.4s ease;
}
.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 180px;
  background: url("../img/hero-bottom-shape.png") no-repeat bottom center;
  background-size: cover;
  z-index: 0;
}
.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.libon-logo {
  position: absolute;
  top: -22px;
  right: -45px;
  width: 50px; 
  z-index: 2;
  transition: transform 0.3s ease;
}
.underline::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 200px;
  height: 60px;
  background: url("../img/underline-wave.png") no-repeat center;
  background-size: contain;
  z-index: -1;
}


@media (max-width: 767px) {
  .hero-heading {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    max-width: 330px;
    margin-bottom: 29px;
    line-height: 100%;
    letter-spacing: 0px;
  }
  .highlight {
    font-size: 28px;
    padding: 0 10px;
    border-radius: 50px;
  }
  .underline::before {
  bottom: 0px;
  left: 0;
  width: 100px;
  height: 60px;
}
.store-badge {
  height: 40px;
}
}

/* WHY LIBON EAT */
.why-Libon-Eat {
  background: linear-gradient(to bottom, #EDE7DB, #FFFFFF);
  box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.6);
  padding-bottom: 60px;
}

.libon-eat-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2f200e;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid #2f200e29;
  padding: 40px 40px 0 40px;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-heading {
  font-size: 28px;
  font-weight: 500;
  color: #2f200e;
  margin-bottom: 10px;
}
.card-subheading {
  font-size: 18px;
  font-weight: 400;
  color: #2f200ebf;
  line-height: 100%;
  margin-bottom: 44px;
}

.feature-image img {
  width: 100%;
  max-width: 397px;
  max-height: 287px;
  object-fit: cover;
}

/* ---- RESPONSIVE ---- */
@media(max-width: 991px) {
  .why-Libon-Eat {
  padding-bottom: 30px;
}
}

@media (max-width: 767px) {
  .libon-eat-heading {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .feature-card {
    padding: 24px 24px 0 24px;
  }
  .card-heading {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .card-subheading {
    font-size: 16px;
    margin-bottom: 21px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* HOW IT WORKS */
.how-it-works {
  background: #fff;
  margin: 30px 0 0px;
}
.how-it-works-content {
  padding:  0 0 80px 0;
}
.how-it-works-title {
  font-size: 42px;
  color: #2f200e;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 100%;
  margin: 80px 0 50px 0;
}

.how-it-works .row {
  align-items: stretch;
}

.steps {
  position: relative;
  height: 100%;
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #2f200e;
  z-index: 0;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  z-index: 1;
}

.step:last-child {
  margin-bottom: 0;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #ede7db;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d93223;
  transition: all 0.3s ease;
  z-index: 1;
  flex-shrink: 0;
}
.step-title {
  font-size: 24px;
  font-weight: 600;
  color: #2f200e;
  margin-bottom: 8px;
}

.step-description {
  font-size: 18px;
  font-weight: 400;
  color: #2f200ebf;
  line-height: 100%;
  letter-spacing: 0px;
}

.step.active .step-title {
  color: #df080f;
}

.image-area {
  position: relative;
  background: #f3ede3;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.step-image {
  position: absolute;
  bottom: 0;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .how-it-works .row {
    flex-direction: column;
  }
  .how-it-works-content {
    padding: 0;
  }
  .how-it-works-title {
    font-size: 24px;
    line-height: 100%;
    margin: 0 auto 30px auto;
  }
  .step-image {
    position: static;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }
  .image-area {
    margin-top: 80px;
    height: 240px;
    border-radius: 16px;
  }
  .step {
    margin-bottom: 34px;
  }
  .icon-box {
    width: 68px;
    height: 68px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-description {
    font-size: 16px;
  }
}

/* Why Section */
.why-section {
  padding: 60px 0;
}
.why-content {
  padding-left: 60px;
}
.why-title {
  font-weight: 700;
  font-size: 42px;
  color: #2f200e;
  margin-bottom: 50px;
}
.why-item {
  margin-bottom: 30px;
}
.why-icon {
  width: 80px;
  height: 80px;
  background-color: #ede7db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-right: 20px;
  flex-shrink: 0;
}
.why-text h5 {
  font-size: 24px;
  font-weight: 600;
  color: #2f200e;
  margin-bottom: 4px;
}
.why-text p {
  font-size: 18px;
  margin-bottom: 0;
  color: #2f200ebf;
}
.why-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .why-section {
    padding: 40px 0;
  }
  .why-content {
    padding-left: 10px;
    margin-top: 40px;
  }
  .why-title {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .why-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .why-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  .why-text h5 {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .why-text p {
    font-size: 16px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}
.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #2f200e;
}
.accordion {
  max-width: 580px;
}
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ede7db80;
  transition: all 0.3s ease;
}
.accordion-button {
  background-color: #f9f5ef;
  font-weight: 600;
  color: #3b2c14;
  box-shadow: none;
  border: none;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
  border: 1px solid #000;
  border-top: none;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
  margin-top: -2px;
}
.accordion-body {
  color: #2f200ebf;
  padding: 1rem 1.25rem;
  background-color: #fff;
}

.testimonial-card {
  background-color: #ede7db;
  border-radius: 30px;
  padding: 10px;
  max-width: 420px;
  margin: auto;
}
.testimonial-card img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #2f200ebf;
  margin-bottom: 20px;
}
.testimonial-user {
  display: flex;
  gap: 10px;
}
.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-user-name {
  font-size: 18px;
  font-weight: 700;
  color: #2f200e;
  margin-bottom: 0;
}
.stars i {
  color: #f7b500;
}
.accordion-button::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-left: auto;
  background-image: none !important;
  transform: none !important;
  transition: all 0.2s ease;
}
.accordion-button:not(.collapsed)::after {
  content: "–";
}
@media (max-width: 991px) {
  .faq-section {
    padding: 0 0 40px 0;
  }
  .faq-title {
  font-size: 24px;
  }
  .accordions {
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* Download section */
.download {
  position: relative;
  background: url("../img/download-bg.png") center bottom / cover no-repeat;
  padding: 0px 0 160px;
  overflow: hidden;
}
.phone-wrapper {
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.phone {
  position: absolute;
  max-width: 520px;
  height: auto;
}
.phone-left {
  left: 0px;
  bottom: -80px;
  z-index: 1;
}
.phone-right {
  left: 150px;
  bottom: -80px;
  z-index: 2;
}
.download-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 65px;
  letter-spacing: 0px;
  color: #2f200e;
  max-width: 670px;
}
.store-buttons {
  display: flex;
  margin-top: 40px;
}
.store-img {
  height: 55px;
}

/* Responsive */
@media (max-width: 1200px) and (min-width: 993px) {
  .phone-wrapper {
    min-height: 400px;
  }

  .phone {
    max-width: 380px;
  }

  .phone-left {
    left: 0;
  }

  .phone-right {
    left: 120px;
  }

  .download-title {
    font-size: 36px;
    line-height: 52px;
  }
}
@media (max-width: 992px) {
  .download {
    padding: 0 0 40px 0px;
  }
  .download .row {
    flex-direction: column-reverse;
    text-align: left;
  }

  .phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
  }

  .phone {
    position: relative;
    max-width: 390px;
    bottom: 0;
    left: 0;
  }

  .phone-left {
    margin-right: -130px;
    bottom: -50px;
    z-index: 1;
  }

  .phone-right {
    margin-left: -130px;
    bottom: -50px;
    z-index: 2;
  }

  .download-title {
    font-size: 32px;
    line-height: 48px;
  }

  .store-buttons {
    justify-content: left;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 0;
  }

  .download-title {
    font-size: 24px;
    line-height: 100%;
  }
  .store-img {
    height: 40px;
  }

  .phones-wrapper {
    flex-direction: row;
    margin-top: 40px;
  }

  .phone-left {
    margin-right: -125px;
  }

  .phone-right {
    margin-left: -125px;
  }
}
@media (max-width: 620px) {
  .phone {
    width: 267px;
  }
  .phone-left {
    margin-right: -90px;
  }

  .phone-right {
    margin-left: -90px;
  }
}

/* footer */
.footer {
  margin-top: 50px;
  padding: 50px 0;
}

.footer-content {
  margin-bottom: 25px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #0000001a;
  position: relative;
}
.footer-logo-circle {
  width: 180px;
  height: 180px;
  border: 1px solid #0000001a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-circle img {
  width: 65%;
  height: auto;
}
.footer-text {
  font-size: 18px;
  color: #2f200e;
}
.footer-section i {
  font-size: 18px;
  color: #2f200e;
}

.footer-links a {
  color: #2f200e;
  text-decoration: none;
  font-weight: 500;
  margin-top: 24px;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }

  .footer .row.align-items-center > div {
    justify-content: center !important;
  }

  .footer-logo-circle {
    width: 140px;
    height: 140px;
    margin: 30px auto;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: center;
    /* gap: 25px; */
    margin-top: 20px;
  }

  .footer-links .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .left-link-content {
    margin-top: 60px;
    gap: 0 !important;
    justify-content: left !important;
  }
  .right-link-content {
    gap: 0 !important;
    justify-content: right !important;
  }
  .footer-links a {
    font-size: 16px;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .footer-text {
    font-size: 16px;
  }

  .footer-logo-circle {
    width: 120px;
    height: 120px;
  }

  .footer-links a {
    font-size: 15px;
  }
}
