:root {
  --primary: #1f2e5c;
  --secondary: #f97316;
  --light: #f8fafc;
  --light-gray: #e2e8f0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "BYekan", "Vazirmatn", sans-serif;
}
body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.6;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
header {
  background-color: #fff;
  box-shadow: 0 2px 10px #0000001a;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.header-top .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info {
  display: flex;
  gap: 1.5rem;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-main {
  padding: 1rem 0;
}
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo img {
  height: 50px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text h1 {
  font-size: 1.4rem;
  font-weight: 700;
}
.logo-text span {
  font-size: 0.9rem;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}
.hero {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 0;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 2rem;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.search-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px #0003;
}
.search-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.form-group {
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.5rem;
  background-color: #f8fafc;
  font-size: 1rem;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}
.btnTem {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
}
.btnTem:hover {
  background-color: var(--primary);
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-orange {
  background-color: var(--secondary);
}
.btn-orange:hover {
  background-color: #ea580c;
}
.swap-btn {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px #0000001a;
  z-index: 10;
}
.section {
  padding: 4rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px #0000000d;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000001a;
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  padding-top: 1.5rem;
}
.service-content {
  padding: 1.5rem;
}
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
}
.service-desc {
  margin-bottom: 1.5rem;
  text-align: center;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.route-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px #0000000d;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}
.route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #0000001a;
}
.route-icon {
  width: 50px;
  height: 50px;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.route-info {
  flex: 1;
}
.route-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.route-price {
  font-weight: 700;
}
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}
.step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 25%;
}
.step-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: 0 5px 15px #0000000d;
}
.step-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.95rem;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: #fff;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px #0000000d;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-toggle {
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
.reviews {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px #00000014;
}
.review {
  text-align: center;
  padding: 1rem;
}
.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary);
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-stars {
  color: #facc15;
  margin-bottom: 1rem;
}
.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.review-text::before,
.review-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--light-gray);
  position: absolute;
}
.review-text::before {
  top: -20px;
  left: -15px;
}
.review-text::after {
  bottom: -40px;
  right: -15px;
}
.review-author {
  font-weight: 600;
  color: var(--primary);
}
.partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.partner-logo {
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.partner-logo:hover {
  opacity: 1;
}
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.cta h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-light {
  background-color: #fff;
  color: var(--primary);
}
.btn-light:hover {
  background-color: #f1f5f9;
  color: var(--primary);
}
footer {
  background-color: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links i {
  color: var(--primary);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-contact i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.9rem;
}
@media (max-width: 992px) {
  .search-form {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-wrap: wrap;
  }
  .step {
    width: 50%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .header-top .container {
    justify-content: center;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 15px #0000001a;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .step {
    width: 100%;
  }
  .cta-buttons {
    flex-direction: column;
  }
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}
.dropdown-container {
  position: relative;
}
.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  display: none;
}
.dropdown-item {
  color: #000;
  padding: 14px 12px;
  font-size: 16px;
  cursor: pointer;
}
.dropdown-item:hover {
  background-color: #f0f0f0;
}
button {
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
button:hover {
  background-color: #0056b3;
}
@media (max-width: 600px) {
  input[type="text"],
  .dropdown-item {
    font-size: 18px;
    padding: 16px 14px;
  }
  .hero {
    padding: 2.5rem 0;
    border-radius: 0 0 1rem 1rem;
  }
  .section {
    padding: 3rem 0;
  }
}
