body {
  font-family: "Inter", sans-serif;
  color: #212529;
  line-height: 1.6;
  overflow-x: hidden;
}

.container-fluid {
  padding-left: 4rem;
  padding-right: 4rem;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}
.navbar .navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  color: black;
  transition: all 0.25s ease;
}
.navbar .navbar-nav .nav-link:hover {
  color: #e64e28;
}

.navbar-collapse {
  justify-content: flex-end;
}

.nav-pages {
  display: flex;
  align-items: center;
}
.nav-pages .nav-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}

/* Mega menu wrapper */
.pages-dropdown {
  position: relative;
}
.pages-dropdown .nav-link {
  display: flex;
  align-items: center;
}
.pages-dropdown .nav-link i {
  transition: transform 0.3s ease;
}
.pages-dropdown {
  /* Rotate icon on hover */
}
.pages-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}
.pages-dropdown {
  /* Mega dropdown */
}
.pages-dropdown .mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 500px;
  z-index: 1000;
}
.pages-dropdown {
  /* Show on hover */
}
.pages-dropdown:hover .mega-menu {
  display: block;
}
.pages-dropdown {
  /* Columns inside dropdown */
}
.pages-dropdown .mega-row {
  display: flex;
  gap: 2rem;
}
.pages-dropdown .mega-col {
  flex: 1;
}
.pages-dropdown .mega-col .mega-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: black;
}
.pages-dropdown .mega-col .dropdown-item {
  display: block;
  padding: 0.35rem 0;
  color: #6c757d;
  font-size: 1rem;
  text-decoration: none;
}
.pages-dropdown .mega-col .dropdown-item:hover {
  color: #e64e28;
}

.navbar-scroll {
  position: fixed; /* make it float */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; /* keep above content */
  transition: top 0.5s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-scroll.hidden {
  top: -100%; /* slide navbar out of view */
}

.cart-badge {
  background-color: #e64e28;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-left: 0.25rem;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 12rem 0 3rem;
  margin-bottom: 0;
}
.hero-section .hero-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #e64e28;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: black;
  line-height: 4rem;
  max-width: 600px;
}
.hero-section .hero-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.hero-section .hero-img {
  max-width: 90%;
  height: auto;
  position: relative;
  z-index: 1;
}
.hero-section .hero-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  transition: transform 0.2s ease;
  will-change: transform;
  z-index: 2;
}
.hero-section .hero-card-left {
  bottom: 15%;
  left: 1%;
  width: 240px;
}
.hero-section .hero-card-left .card-img {
  width: 70%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.hero-section .hero-card-left .card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-section .hero-card-left .card-header .card-title {
  font-weight: 600;
  margin: 0;
}
.hero-section .hero-card-left .card-header .rating {
  font-size: 0.9rem;
  color: #f39c12;
}
.hero-section .hero-card-left .card-header .love-icon {
  color: #e74c3c;
  font-size: 1.2rem;
  cursor: pointer;
}
.hero-section .hero-card-left .card-description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}
.hero-section .hero-card-right {
  bottom: 10%;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-weight: 500;
}
.hero-section .hero-card-right .delivery-icon {
  font-size: 1.5rem;
  color: #3a86ff;
}
.hero-section .hero-card-right .delivery-time {
  font-size: 1rem;
  color: #333;
}

.intro-section {
  padding: 3rem 0;
  background-color: white;
}
.intro-section p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stats-section {
  padding: 5rem 0;
}
.stats-section .row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.stats-section .row .col-md-6 {
  flex: 1;
  max-width: none;
  text-align: center;
}
.stats-section .row .col-md-6 .stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: black;
  display: block;
  line-height: 1;
}
.stats-section .row .col-md-6 .stat-number span {
  font-size: 4rem;
  color: #e64e28;
}
.stats-section .row .col-md-6 .stat-label {
  font-size: 1.1rem;
  color: #6c757d;
}

.mission-section {
  padding: 5rem 0;
  background-color: white;
}
.mission-section .section-topic {
  color: #e64e28;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.mission-section .section-title {
  font-size: 2.5rem;
  color: black;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .mission-section .section-title {
    font-size: 2rem;
  }
}
.mission-section .section-text {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.mission-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.journey-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.journey-section .section-topic {
  color: #e64e28;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.journey-section .section-title {
  font-size: 3rem;
  color: black;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .journey-section .section-title {
    font-size: 2rem;
  }
}
.journey-section .section-text {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.journey-section .journey-text {
  position: relative;
}
.journey-section .journey-text .sticky-content {
  position: sticky;
  top: 100px;
}
.journey-section .journey-timeline {
  max-height: 100vh;
  overflow-y: scroll;
  padding-left: 2rem;
  border: none !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.journey-section .journey-timeline::-webkit-scrollbar {
  display: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
.timeline::after {
  display: none;
}
.timeline .timeline-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
}
.timeline .timeline-item::after {
  display: none;
}
.timeline .timeline-item .timeline-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  min-height: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.timeline .timeline-item .timeline-year {
  font-weight: 700;
  font-size: 1.3rem;
  color: #e64e28;
  margin-bottom: 0.5rem;
}
.timeline .timeline-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.timeline .timeline-item p {
  color: #6c757d;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .timeline .timeline-item {
    width: 100%;
    padding: 1rem;
  }
}

.restaurant-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: none;
}
.restaurant-card .card-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.restaurant-card .delivery-time {
  color: #3a86ff;
  font-weight: 600;
  margin-top: 1rem;
}

.delivery-stats {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
.delivery-stats .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3a86ff;
  display: block;
  line-height: 1;
}
.delivery-stats .stat-label {
  color: #6c757d;
  font-size: 1rem;
}

.company-history {
  padding: 5rem 0;
  background-color: white;
}
.company-history .section-topic {
  color: #e64e28;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.company-history .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .company-history .section-title {
    font-size: 2rem;
  }
}
.company-history .section-text {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.company-history .history-image {
  text-align: center;
}
.company-history .history-image img {
  max-width: 90%;
  height: auto;
}

.map-button {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #3a86ff;
  text-decoration: none;
  margin-top: 1rem;
}
.map-button i {
  margin-right: 0.5rem;
}

.partners-section {
  padding: 5rem 0;
  background-color: white;
}
.partners-section .section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #e64e28;
  font-size: 1rem;
  font-weight: 700;
}
.partners-section .section-subtitle {
  font-size: 2.5rem;
  color: black;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.partner-logo {
  height: 60px;
  margin: 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-cards {
  margin-top: 3rem;
}

.partner-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: none;
}
.partner-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.partner-card .card-text {
  color: #6c757d;
  font-size: 1rem;
}

.news-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.news-section .section-topic {
  color: #e64e28;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}
.news-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: black;
  font-size: 3rem;
  font-weight: 700;
}

.news-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card .card-body {
  padding: 1.5rem;
}
.news-card .card-body .news-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.news-card .card-body .news-header .news-logo {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.news-card .card-body .news-header .company-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.news-card .card-body .news-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #000;
}
.news-card .card-body .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-card .card-body .news-footer .read-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3a86ff;
  text-decoration: none;
}
.news-card .card-body .news-footer .read-more i {
  margin-left: 4px;
}
.news-card .card-body .news-footer .read-more:hover {
  text-decoration: underline;
}
.news-card .card-body .news-footer .news-date {
  font-size: 0.9rem;
  color: #666;
}

.btn {
  font-size: 1rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  background-color: #e64e28;
  border-color: #e64e28;
}

.btn-primary {
  background-color: #e64e28;
  border-color: #e64e28;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #e64e28, 10%;
  border-color: #e64e28, 10%;
}

.btn-outline-primary {
  color: #e64e28;
  border-color: #e64e28;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
}
.btn-outline-primary:hover {
  background-color: #e64e28;
  border-color: #e64e28;
}

.footer {
  background: white;
  padding: 3rem 0;
}
.footer .footer-logo {
  width: 140px;
}
.footer .footer-top {
  margin-bottom: 2rem;
}
.footer .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.footer .btn-download.ios {
  background: #e64e28;
}
.footer .btn-download.android {
  background: #e64e28;
}
.footer .btn-download i {
  font-size: 1.2rem;
}
.footer .footer-divider {
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}
.footer .footer-bottom h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer .footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-bottom ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-bottom ul li a {
  color: #333;
  text-decoration: none;
}
.footer .footer-bottom ul li a:hover {
  color: #3a86ff;
}
.footer p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .partner-logos {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */
