.header {
  background-color: #24201D;
}
.services .service-item .instagram-icon {
  background: none;
  color: white;
  background-color: #e1306c;
}
.services .service-item .instagram-icon:hover {
  background: none;
  color: #962fbf;
  background-color: #e1306c;
}
.services .service-item .facebook-icon {
  background: none;
  color: white;
  background-color: #3b5998;
}
.services .service-item .facebook-icon:hover {
  background: none;
  color: #3b5998;
}

.services .service-item .tiktok-icon {
  background: none;
  color: white;
  background-color: #000;
}
.services .service-item .tiktok-icon:hover {
  background: none;
  color: #c41754;
}

/* TikTok Icon */
.tiktok-icon {
  color: #000;
}
.tiktok-icon:hover {
  background-color: #000;
  color: #fff;
}
.hidden {
  display: none;
}

.pricing-section {
  margin-top: 30px;
}

.pricing-table {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 8px 5px rgba(0, 0, 0, 0.1);
  margin-top: 94px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table table th,
.pricing-table table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

.pricing-table table th {
  background-color: #007bff;
  color: white;
}

.pricing-table table td {
  background-color: #f3f3f3;
}

.pricing-table h4 {
  margin-bottom: 20px;
}

#agents .row {
  display: flex;
  flex-wrap: wrap;
}

#agents .member {
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 265px;
  text-decoration: none;
  color: inherit;
  background: white;
}

#agents .member:hover {
  transform: scale(1.05);
}

#agents .pic img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  scale: 1;
}

#agents .member-info {
  padding-top: 15px;
  max-height: 174px;
}

#agents .member-info .social {
  margin-top: 10px;
}

#agents .member-info .social a {
  color: #333;
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s ease;
}

#agents .member-info .social a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .g-5,
  .gy-5 {
    --bs-gutter-y: 7rem;
  }
  #agents .pic img {
    width: 100%;
    scale: 1; /* Remove scale for smaller screens */
  }
}
.transfer-section {
  max-width: 90vh;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--default-color);
}
.transfer-title {
  text-align: center;
  color: var(--accent-color);
  font-size: 2.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.transfer-description {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .auto-icon img {
    height: 400px;
    margin-right: 10px;
  }
}
.highlighted {
  text-align: center;
  font-size: 1.5em;
  color: #1ae30b;
  margin-bottom: 20px;
}

/* Auto Icon Styling */
.auto-icon img {
  margin-right: 10px;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  object-fit: cover;
}
.routes-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.european-travel-title {
  text-align: center;
  color: var(--accent-color);
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.european-travel-description {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.highlighted {
  text-align: center;
  font-size: 1.5em;

  margin-bottom: 20px;
}

/* Europe Icon Styling */
.europe-icon img {
  height: auto;
  margin-right: 10px;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .europe-icon img {
    width: 100%; /* Full width on mobile */
    height: auto; /* Maintain aspect ratio */
    margin-right: 0; /* Remove right margin */
  }

  .european-travel-title {
    flex-direction: column; /* Stack icon and text vertically */
  }
}

/* Additional styles for grid and route cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  margin-top: 50px;
}

.route-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.route-card h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
}

.route-card:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

@media (max-width: 992px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
  }

  .route-card h3 {
    font-size: 18px;
  }
}

.hidden {
  display: none;
}

.pricing-section {
  margin-top: 30px;
}

.pricing-table {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 8px 5px rgba(0, 0, 0, 0.1);
  margin-top: 94px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table table th,
.pricing-table table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

.pricing-table table th {
  background-color: #007bff;
  color: white;
}

.pricing-table table td {
  background-color: #f3f3f3;
}

.pricing-table h4 {
  margin-bottom: 20px;
}

#agents .row {
  display: flex;
  flex-wrap: wrap;
}

#agents .member {
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: white;
}

#agents .member:hover {
  transform: scale(1.05);
}

#agents .pic img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  scale: 1;
  width: 100%;
}

#agents .member-info {
  padding-top: 15px;
  max-height: 174px;
}

#agents .member-info .social {
  margin-top: 10px;
}

#agents .member-info .social a {
  color: #333;
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s ease;
}

#agents .member-info .social a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .g-5,
  .gy-5 {
    --bs-gutter-y: 7rem;
  }

  #agents .pic img {
    width: 100%;
    scale: 1;
    /* Remove scale for smaller screens */
    height: 100%;
  }
}

/* Reset global service-item icon styles */
.services .service-item .instagram-icon {
  background: none;
  color: white;
  background-color: #e1306c;
}

.services .service-item .instagram-icon:hover {
  background: none;
  color: #962fbf;
  background-color: #e1306c;
}

.services .service-item .facebook-icon {
  background: none;
  color: white;
  background-color: #3b5998;
}

.services .service-item .facebook-icon:hover {
  background: none;
  color: #3b5998;
}

.services .service-item .tiktok-icon {
  background: none;
  color: white;
  background-color: #000;
}

.services .service-item .tiktok-icon:hover {
  background: none;
  color: #c41754;
}

/* TikTok Icon */
.tiktok-icon {
  color: #000;
}

.tiktok-icon:hover {
  background-color: #000;
  color: #fff;
}
