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

:root {
  --primary: #4a90a4;
  --primary-dark: #3d7a8c;
  --secondary: #c9a227;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --light-blue: #87ceeb;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-car {
  width: 80px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-holiday {
  color: var(--light-blue);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-title {
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
}

.promo-banner {
  background: var(--secondary);
  color: var(--dark);
  text-align: center;
  padding: 10px;
  font-weight: 600;
  margin-top: 60px;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('images/luxury_black_car_dri_761fd368.jpg') center/cover no-repeat;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.hero-content .tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: var(--dark);
}

.transfers, .sightseeing {
  padding: 80px 0;
  background: var(--light);
}

.sightseeing {
  background: var(--white);
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.transfer-card, .tour-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.transfer-card:hover, .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.transfer-card img, .tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.card-content p {
  color: var(--gray);
  margin-bottom: 15px;
}

.trip-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.trip-info span {
  font-size: 0.9rem;
  color: var(--gray);
}

.trip-info .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.more-routes {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
}

.more-routes a {
  color: var(--secondary);
  font-weight: 600;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.features {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.features h2 {
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
}

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

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.drivers-vehicles {
  padding: 80px 0;
  background: var(--light);
}

.dv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.dv-item {
  display: flex;
  flex-direction: column;
}

.dv-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.dv-content {
  padding: 25px 0;
}

.dv-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.dv-content p {
  color: var(--gray);
}

.about {
  padding: 80px 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 10px;
}

.about-content h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.reviews {
  padding: 80px 0;
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-header {
  margin-bottom: 20px;
}

.review-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.review-header h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.review-header .route {
  font-size: 0.9rem;
  color: var(--secondary);
  font-style: italic;
}

.review-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
}

.contact {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 20px;
}

.form-success {
  text-align: center;
  padding: 20px;
  background: #28a745;
  color: var(--white);
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
}

.form-error {
  text-align: center;
  padding: 20px;
  background: #dc3545;
  color: var(--white);
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
}

.gdpr-group {
  margin-top: 15px;
}

.gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.gdpr-label input[type="checkbox"] {
  margin-top: 3px;
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
}

.gdpr-label a {
  color: var(--primary);
  text-decoration: underline;
}

.gdpr-label a:hover {
  color: var(--primary-dark);
}

.footer {
  background: #0a1521;
  color: var(--white);
  padding: 40px 0 20px;
}

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

.footer-logo h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.social-link {
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--secondary);
  border-radius: 5px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .booking-grid, .stops-grid {
    grid-template-columns: 1fr;
  }

  .tour-about-grid {
    grid-template-columns: 1fr;
  }

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

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

.nav-menu a.active {
  color: var(--secondary);
}

.page-hero {
  height: 50vh;
  min-height: 350px;
  background: url('images/luxury_black_car_dri_761fd368.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

.tours-hero {
  background: url('images/budapest_hungary_par_3187e021.jpg') center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.booking-list, .tours-list {
  padding: 60px 0;
  background: var(--light);
}

.booking-note {
  text-align: center;
  margin-bottom: 40px;
  color: var(--gray);
  font-size: 1.1rem;
}

.booking-note i {
  color: var(--secondary);
  margin-right: 8px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.booking-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
}

.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.booking-card img {
  width: 150px;
  height: 100%;
  object-fit: cover;
}

.booking-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booking-card-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.booking-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.booking-desc i {
  color: var(--secondary);
  margin-right: 5px;
}

.booking-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.booking-details span {
  font-size: 0.9rem;
  color: var(--gray);
}

.booking-details i {
  margin-right: 5px;
}

.booking-price {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--secondary) !important;
}

.booking-card .btn-primary {
  padding: 10px 20px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: auto;
}

.sightseeing-promo {
  padding: 60px 0;
  background: var(--white);
}

.promo-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
}

.promo-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.promo-text {
  padding: 30px;
}

.promo-text h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.promo-text h3 i {
  color: var(--secondary);
  margin-right: 10px;
}

.promo-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

.tour-card-link {
  text-decoration: none;
  color: inherit;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.tour-meta span {
  font-size: 0.9rem;
  color: var(--gray);
}

.tour-meta i {
  margin-right: 5px;
}

.tour-price {
  font-weight: 700;
  color: var(--secondary) !important;
}

.tour-detail-hero {
  height: 60vh;
  min-height: 450px;
  background: url('images/budapest_hungary_par_3187e021.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

.tour-detail-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.back-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--white);
}

.tour-detail-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tour-detail-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.tour-hero-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tour-hero-meta span {
  font-size: 0.95rem;
}

.tour-hero-meta i {
  color: var(--secondary);
  margin-right: 8px;
}

.tour-hero-price {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.tour-hero-price strong {
  font-size: 2rem;
  color: var(--secondary);
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.1rem;
}

.tour-stops {
  padding: 60px 0;
  background: var(--light);
}

.stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stop-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  position: relative;
}

.stop-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
}

.stop-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.stop-content {
  padding: 15px;
  flex: 1;
}

.stop-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stop-content p {
  font-size: 0.9rem;
  color: var(--gray);
}

.tour-about {
  padding: 60px 0;
  background: var(--white);
}

.tour-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tour-about-text h2 {
  text-align: left;
  margin-bottom: 20px;
}

.tour-about-text p {
  color: var(--gray);
  margin-bottom: 15px;
}

.tour-about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tour-includes {
  padding: 60px 0;
  background: var(--light);
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.includes-box {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.includes-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.includes-box.included h3 {
  color: #28a745;
}

.includes-box.not-included h3 {
  color: #dc3545;
}

.includes-box ul {
  list-style: none;
}

.includes-box li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
}

.includes-box li:last-child {
  border-bottom: none;
}

.includes-box.included li i {
  color: #28a745;
}

.includes-box.not-included li i {
  color: #dc3545;
}

.tour-notes {
  padding: 60px 0;
  background: var(--white);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.note-item {
  background: var(--light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.note-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.note-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.tour-cta {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .booking-card {
    flex-direction: column;
  }

  .booking-card img {
    width: 100%;
    height: 150px;
  }

  .promo-content {
    grid-template-columns: 1fr;
  }

  .stop-card {
    flex-direction: column;
  }

  .stop-card img {
    width: 100%;
    height: 150px;
  }

  .tour-hero-meta {
    gap: 15px;
  }

  .logo-car {
    width: 60px;
  }

  .logo-title {
    font-size: 0.9rem;
  }
}

.sightseeing-slider {
  background: var(--light);
  padding: 40px 0;
  margin: 40px 0;
}

.slider-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  color: var(--white);
}

.slide-header h3 {
  font-size: 1.3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}

.slide-header h3 em {
  font-style: italic;
  color: var(--primary);
}

.slide-footer p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-book-stop {
  display: inline-block;
  background: rgba(135, 206, 235, 0.8);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s;
}

.btn-book-stop:hover {
  background: var(--light-blue);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
  left: 15px;
}

.slider-arrow.next {
  right: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

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

.slider-info {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 10px;
}

.transfer-card-new {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.transfer-card-new img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.transfer-card-new .card-body {
  padding: 25px;
}

.transfer-card-new h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 5px;
  font-family: 'Open Sans', sans-serif;
}

.transfer-card-new h3 small {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

.transfer-card-new .description {
  color: var(--gray);
  margin: 15px 0;
}

.transfer-card-new .trip-length {
  color: var(--dark);
  margin-bottom: 20px;
}

.transfer-card-new .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transfer-card-new .price {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.transfer-card-new .price small {
  font-size: 1rem;
  font-weight: 400;
}

.nav-menu a.active {
  color: var(--primary);
  font-weight: 600;
}
