*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #212529;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-separator {
  background-color: #123524;
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin: 40px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .section-separator {
    font-size: 1.15rem;
    padding: 12px 15px;
    margin: 30px 0;
    border-radius: 0;
  }
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.main-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.main-header .logo {
  display: flex;
  align-items: center;
}
.main-header .logo img {
  max-height: 45px;
  object-fit: contain;
}
.main-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-header .nav-menu .nav-link {
  color: #123524;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}
.main-header .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #38b000;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.main-header .nav-menu .nav-link:hover {
  color: #38b000;
}
.main-header .nav-menu .nav-link:hover::after {
  width: 100%;
}
.main-header .nav-menu .nav-link.active {
  color: #38b000;
}
.main-header .nav-menu .nav-link.active::after {
  width: 100%;
}
.main-header .lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #495057;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: #f8f9fa;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header .lang-selector:hover {
  background-color: #e9ecef;
}
.main-header .lang-selector .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.main-header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.main-header .mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #123524;
  margin-bottom: 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}
.main-header .mobile-menu-btn span:last-child {
  margin-bottom: 0;
}
.main-header .mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}
.main-header .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.main-header .mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 991px) {
  .main-header .nav-menu {
    display: none;
  }
  .main-header .mobile-menu-btn {
    display: block;
  }
}

.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.hero-section .hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-section .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 53, 36, 0.4) 0%, rgba(18, 53, 36, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 768px) {
  .hero-section .hero-image-wrapper {
    height: auto;
  }
}

.partners-section {
  border-bottom: 1px solid #e9ecef;
  background-color: #ffffff;
  padding: 15px 0;
}
.partners-section .partners-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.partners-section .partner-logo {
  height: 35px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.partners-section .partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .partners-section .partners-slider {
    justify-content: center;
    gap: 20px;
  }
  .partners-section .partner-logo {
    height: 28px;
    max-width: 90px;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}
.intro-grid .intro-card {
  background-color: #0f5132;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.intro-grid .intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.intro-grid .intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.intro-grid .intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-grid .intro-content .intro-title {
  color: #1b4d3e;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}
.intro-grid .intro-content .intro-subtitle {
  color: #1b4d3e;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.intro-grid .intro-content .intro-description {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.7;
}
.intro-grid .intro-content .intro-description p {
  margin-bottom: 16px;
}
.intro-grid .intro-content .intro-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-grid .intro-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .intro-grid .intro-content .intro-title {
    font-size: 1.8rem;
  }
  .intro-grid .intro-content .intro-subtitle {
    font-size: 1.4rem;
  }
}

.routes-section {
  background-color: #f4f9f4;
  padding: 40px 0;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.route-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-color: rgba(56, 176, 0, 0.2);
}
.route-card:hover .detail-value {
  background-color: #244b7a;
}
.route-card:hover .route-card-link {
  color: #38b000;
}
.route-card:hover .route-card-link .arrow {
  transform: translateX(4px);
}
.route-card .route-card-header {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 25px;
}
.route-card .route-card-header img {
  max-height: 100%;
  max-width: 220px;
  object-fit: contain;
}
.route-card .route-details-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .route-card .route-details-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .route-card .route-details-row > div:nth-child(4), .route-card .route-details-row > div:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .route-card .route-details-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .route-card .route-details-row > div:last-child {
    grid-column: span 2;
  }
}
.route-card .detail-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.route-card .detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.5px;
}
.route-card .detail-value {
  width: 100%;
  background-color: #183a60;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 4px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.route-card .autovias-pill-empty {
  background-color: #f1f3f5;
  border: 1px dashed #ced4da;
  min-height: 40px;
  width: 100%;
  border-radius: 8px;
}
.route-card .route-card-link {
  display: inline-flex;
  align-items: center;
  color: #183a60;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  align-self: flex-start;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.route-card .route-card-link .arrow {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991px) {
  .route-card {
    padding: 20px;
  }
}

.middle-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}
.middle-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .middle-banner img {
    height: 240px;
  }
}

.middle-info-block {
  background-color: #38b000;
  color: #ffffff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
.middle-info-block .middle-info-text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .middle-info-block {
    padding: 25px;
    border-radius: 12px;
  }
  .middle-info-block .middle-info-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.about-row.reversed {
  grid-template-columns: 1.2fr 1fr;
}
.about-row .about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  height: 280px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-row .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-row .about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.about-row .about-card {
  background-color: #0f5132;
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-row .about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.about-row .about-card .about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.about-row .about-card .about-card-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #70e000;
  margin-top: 6px;
  border-radius: 2px;
}
.about-row .about-card .about-card-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 400;
}
@media (max-width: 768px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-row.reversed {
    grid-template-columns: 1fr;
  }
  .about-row.reversed .about-image {
    grid-row: 1;
  }
  .about-row .about-image {
    height: 200px;
  }
  .about-row .about-card {
    padding: 30px 20px;
  }
}

.main-footer {
  background-color: #123524;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  border-top: 4px solid #38b000;
}
.main-footer .footer-logo {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-footer .footer-logo img {
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.main-footer .footer-location {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
  font-weight: 500;
}
.main-footer .footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.schedule-modal.active {
  opacity: 1;
  visibility: visible;
}
.schedule-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.schedule-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.schedule-modal .modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2001;
  padding: 30px;
  overflow-y: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.schedule-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.schedule-modal .modal-close:hover {
  color: #212529;
  transform: scale(1.1);
}
.schedule-modal .modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.schedule-modal .modal-header img {
  max-height: 45px;
  object-fit: contain;
}
.schedule-modal .modal-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #123524;
}
.schedule-modal .modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}
.schedule-modal .modal-tabs .tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6c757d;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.schedule-modal .modal-tabs .tab-btn:hover {
  background-color: #e9ecef;
  color: #212529;
}
.schedule-modal .modal-tabs .tab-btn.active {
  background-color: #123524;
  color: #ffffff;
}
.schedule-modal .tab-content {
  display: none;
  width: 100%;
}
.schedule-modal .tab-content.active {
  display: block;
}
.schedule-modal .table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.schedule-modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}
.schedule-modal table thead {
  background-color: #1b4d3e;
  color: #ffffff;
}
.schedule-modal table thead th {
  padding: 12px 16px;
  font-weight: 600;
}
.schedule-modal table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.schedule-modal table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.schedule-modal table tbody tr:hover {
  background-color: #e9f5ed;
}
.schedule-modal table tbody tr td {
  padding: 12px 16px;
  color: #495057;
  font-weight: 500;
}
@media (max-width: 768px) {
  .schedule-modal .modal-content {
    padding: 20px;
  }
  .schedule-modal .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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