/** @format */
*{
    
    box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Section spacing */
section {
  margin: 0 auto 48px auto;
  max-width: 1200px;
  padding: 0 16px;
}

.showcase-header {
  background: linear-gradient(90deg, #ff5c03 0%, #ffe5d1 100%);
  color: #fff;
  text-align: center;
  padding: 48px 16px 32px 16px;
}

.logo {
  width: 80px;
  margin-bottom: 16px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 12px 0;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #fff;
}

.download-btn {
  display: inline-block;
  background: #fff;
  color: #ff5c03;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 92, 3, 0.08);
  transition: background 0.2s, color 0.2s;
}

.download-btn:hover {
  background: #ffe5d1;
  color: #ff5c03;
}

.features-section {
  padding: 40px 16px 24px 16px;
  background: #f8f6f4;
}

.features-title {
  text-align: center;
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 20px 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 6px 32px rgba(255, 92, 3, 0.1);
  transform: translateY(-4px) scale(1.02);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff5c03;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 1rem;
  color: #444;
}

.footer {
  background: #fff;
  color: #888;
  font-size: 1rem;
  border-top: 1px solid #f0f0f0;
  padding: 32px 0 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 32px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 24px;
}

.footer-title {
  color: #222;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 18px 0 8px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ff5c03;
}

.footer-select {
  width: 100%;
  padding: 8px 6px;
  border-radius: 6px;
  border: 1px solid #eee;
  font-size: 1rem;
  margin-bottom: 8px;
  background: #f8f6f4;
  color: #222;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 12px 0;
  color: #888;
  font-size: 1rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 0;
    padding: 0 8vw;
  }

  .footer-col {
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
  }

  .footer-col:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 2rem;
  }

  .features-title {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 20px 10px 16px 10px;
  }

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

  .footer-col {
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.feature-card,
.how-step,
.screenshots-gallery img {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
}

.feature-card {
  animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.8s;
}

.feature-card:nth-child(5) {
  animation-delay: 1s;
}

.how-step {
  animation-delay: 0.2s;
}

.how-step:nth-child(2) {
  animation-delay: 0.4s;
}

.how-step:nth-child(3) {
  animation-delay: 0.6s;
}

.how-step:nth-child(4) {
  animation-delay: 0.8s;
}

.screenshots-gallery img {
  animation: fadeIn 1s forwards;
}

.screenshots-gallery img:nth-child(1) {
  animation-delay: 0.2s;
}

.screenshots-gallery img:nth-child(2) {
  animation-delay: 0.4s;
}

.screenshots-gallery img:nth-child(3) {
  animation-delay: 0.6s;
}

.screenshots-gallery img:nth-child(4) {
  animation-delay: 0.8s;
}

/* Ensure animation only runs once when visible */
.features-grid,
.how-steps,
.screenshots-gallery {
  will-change: opacity, transform;
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255, 92, 3, 0.06);
  padding: 0 24px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ff5c03;
}

.navbar-logo img {
  width: 36px;
  height: 36px;
}

.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.navbar-links li a:hover,
.navbar-links .navbar-download {
  color: #ff5c03;
}

.navbar-download {
  background: #ff5c03;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 8px;
  transition: background 0.2s;
}

.navbar-download:hover {
  background: #ff7d36;
}

/* Responsive navbar */
@media (max-width: 700px) {
  .navbar-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    z-index: 101;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .navbar-logo {
    margin: 10px 0;
  }

  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff5c03;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 102;
  }
}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .screenshots-gallery {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-video-card {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 1.3rem;
  }

  .features-title,
  .screenshots-title,
  .how-title,
  .faq-title,
  .contact-title {
    font-size: 1.1rem;
  }

  .feature-card,
  .how-step {
    padding: 16px 6px 12px 6px;
    font-size: 0.95rem;
  }

  .screenshots-gallery img {
    width: 90vw;
    height: 160px;
  }
}

/* Vehicle animation styles */
.vehicle-animation {
  position: relative;
  width: 100%;
  height: 60px;
  margin: 30px 0 10px 0;
  overflow: hidden;
  background: transparent;
}

.vehicle-animation .car,
.vehicle-animation .moto {
  position: absolute;
  top: 10px;
  left: -70px;
}

.vehicle-animation .car {
  animation: car-move 6s linear infinite;
}

.vehicle-animation .moto {
  top: 30px;
  animation: moto-move 5s linear 1s infinite;
}

@keyframes car-move {
  0% {
    left: -70px;
  }

  90% {
    left: calc(100% + 70px);
  }

  100% {
    left: calc(100% + 70px);
  }
}

@keyframes moto-move {
  0% {
    left: -70px;
  }

  90% {
    left: calc(100% + 70px);
  }

  100% {
    left: calc(100% + 70px);
  }
}

/* Chat box styles */
.chatbox-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: #ff5c03;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.chatbox-fab:hover {
  background: #ff7d36;
}

.chatbox-window {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 320px;
  max-width: 95vw;
  height: 400px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.3s;
}

.chatbox-header {
  background: #ff5c03;
  color: #fff;
  padding: 14px 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbox-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f8f6f4;
  font-size: 0.98rem;
}

.chatbox-input-row {
  display: flex;
  border-top: 1px solid #eee;
  background: #fff;
}

.chatbox-input-row input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}

.chatbox-input-row button {
  background: #ff5c03;
  color: #fff;
  border: none;
  padding: 0 18px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.chatbox-input-row button:hover {
  background: #ff7d36;
}

/* Video Testimonial Section */
.testimonial-section {
  background: #fff;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.testimonial-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.testimonial-video-card {
  background: #f8f6f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 300px;
  flex: 1 1 300px;
}

.testimonial-video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-caption {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .testimonial-videos {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .testimonial-video-card {
    width: 98vw;
    max-width: 400px;
  }
}

/* Responsive for screenshots gallery */
.screenshots-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.screenshots-gallery img {
  width: 180px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #f8f6f4;
}

@media (max-width: 900px) {
  .screenshots-gallery img {
    width: 120px;
    height: 240px;
  }
}

@media (max-width: 600px) {
  .screenshots-gallery img {
    width: 90vw;
    height: 160px;
  }
}

/* Responsive for how-steps */
@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-step {
    width: 98vw;
    max-width: 400px;
    margin-bottom: 18px;
  }
}

/* Responsive for navbar */
@media (max-width: 700px) {
  .navbar-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    z-index: 101;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .navbar-logo {
    margin: 10px 0;
  }

  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff5c03;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 102;
  }
}

.yango-hero {
  background: linear-gradient(90deg, #ffe5d1 0%, #fff 100%);
  padding: 48px 16px 32px 16px;
  text-align: center;
}

.yango-hero-content h1 {
  font-size: 2.2rem;
  color: #ff5c03;
  margin-bottom: 12px;
}

.yango-lead {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.yango-app-btn,
.yango-order-btn,
.yango-learn-btn {
  display: inline-block;
  background: #ff5c03;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1rem;
  text-decoration: none;
  margin: 8px 0;
  transition: background 0.2s;
}

.yango-app-btn:hover,
.yango-order-btn:hover,
.yango-learn-btn:hover {
  background: #ff7d36;
}

.yango-why {
  background: #fff;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.yango-why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}

.yango-why-grid > div {
  background: #f8f6f4;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 24px 18px;
  width: 260px;
  min-width: 180px;
  flex: 1 1 220px;
  text-align: left;
}

.yango-why-grid ul {
  padding-left: 18px;
}

.yango-service-classes {
  background: #f8f6f4;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.yango-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 16px;
}

.yango-service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px 20px;
  text-align: center;
  flex: 1 1 220px;
  min-width: 180px;
}

.yango-order-btn {
  display: inline-block;
  background: #ff5c03;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 12px;
}

.yango-order-btn:hover {
  background: #ff7d36;
}

.yango-driver {
  padding: 40px 16px;
  text-align: center;
  background: #fff;
}

.yango-learn-btn {
  display: inline-block;
  background: transparent;
  color: #ff5c03;
  padding: 10px 20px;
  border: 2px solid #ff5c03;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
}

.yango-learn-btn:hover {
  background: #ff5c03;
  color: #fff;
}

.yango-testimonials {
  padding: 40px 16px;
  text-align: center;
  background: #f8f6f4;
}

.yango-testimonial-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.yango-testimonial-list blockquote {
  border-left: 4px solid #ff5c03;
  background: #fff;
  padding: 20px 28px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-style: italic;
  color: #333;
}

.yango-award {
  padding: 40px 16px;
  text-align: center;
}

.yango-ratings {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.yango-rating-score {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5c03;
}

.yango-countries {
  padding: 40px 16px;
  text-align: center;
  background: #f8f6f4;
}

.yango-country-list {
  display: inline-block;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

@media (max-width: 900px) {
  section {
    padding: 0 4vw;
  }

  .features-grid,
  .how-steps,
  .screenshots-gallery,
  .testimonial-videos {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .feature-card,
  .how-step,
  .testimonial-video-card {
    width: 98vw;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .yango-hero {
    padding: 60px 16px;
  }

  .yango-lead {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .yango-app-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .yango-service-card {
    padding: 24px 16px;
  }

  .yango-order-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .yango-driver {
    padding: 24px 16px;
  }

  .yango-testimonial-list blockquote {
    padding: 12px 16px;
  }

  .yango-award {
    padding: 24px 16px;
  }
}

.screenshots-section {
  background: #fff;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.screenshots-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.screenshots-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.screenshots-gallery img {
  width: 180px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #f8f6f4;
}

@media (max-width: 900px) {
  .screenshots-gallery img {
    width: 120px;
    height: 240px;
  }
}

.how-section {
  background: #f8f6f4;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.how-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.how-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px 20px 24px 20px;
  text-align: center;
  width: 220px;
  min-width: 180px;
  flex: 1 1 220px;
}

.how-number {
  display: inline-block;
  background: #ff5c03;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.faq-section {
  background: #fff;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.faq-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-item h4 {
  margin: 0 0 6px 0;
  color: #ff5c03;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  color: #444;
  font-size: 1rem;
}

.contact-section {
  background: #ffe5d1;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 16px;
}

.contact-section a {
  color: #ff5c03;
  text-decoration: underline;
}

.testimonial-section {
  background: #fff;
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  color: #ff5c03;
  margin-bottom: 32px;
}

.testimonial-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.testimonial-video-card {
  background: #f8f6f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 300px;
  flex: 1 1 300px;
}

.testimonial-video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-caption {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .testimonial-video-card {
    width: 100%;
    flex: 1 1 100%;
  }
}
