/* Landing Page Styles */
.landing-page {
  font-family: var(--font-family);
  color: var(--dark-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.landing-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary-color);
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-dark);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25px;
  width: 2px;
  height: 50px;
  background-color: var(--primary-color);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.step-content p {
  font-size: 1rem;
  color: var(--gray-color);
  margin: 0;
}

.step-image {
  flex: 1;
  text-align: center;
}

.step-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

.step.reverse {
  flex-direction: row-reverse;
}

.step.reverse .step-number {
  margin-right: 0;
  margin-left: 30px;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background-color: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffd700;
  margin-right: 5px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
  color: var(--dark-color);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Download Section */
.download-section {
  padding: 80px 0;
  background-color: var(--white);
}

.download-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.download-text {
  flex: 1;
}

.download-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.download-text p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.app-store img,
.play-store img {
  height: 50px;
  transition: var(--transition);
}

.app-store:hover img,
.play-store:hover img {
  transform: scale(1.05);
}

.download-qr {
  display: flex;
  align-items: center;
}

.download-qr img {
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.download-qr p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

.download-image {
  flex: 1;
  text-align: center;
}

.download-image img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.landing-footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-link-group {
  flex: 1;
  min-width: 150px;
}

.footer-link-group h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
}

.footer-link-group li {
  margin-bottom: 10px;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-link-group a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .language-selector select {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: var(--border-radius);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .download-content {
    flex-direction: column;
  }

  .download-text {
    text-align: center;
  }

  .download-buttons {
    justify-content: center;
  }

  .download-qr {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-buttons {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .step.reverse {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
  }

  .step.reverse .step-number {
    margin-left: 0;
  }

  .step::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}
