/* Additional styles for Berhampur Taxi Service page */

/* ===== COMMON ELEMENTS ===== */
.section-spacing {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bg-light-2 {
  background: linear-gradient(135deg, #f8fafd 0%, #f0f5ff 100%);
  position: relative;
}

.bg-light-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.section-title-wrapper {
  position: relative;
  margin-bottom: 70px;
  z-index: 1;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.15), rgba(255, 74, 23, 0.05));
  color: #ff4a17;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 15px rgba(255, 74, 23, 0.15);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.section-title-wrapper:hover .section-tag {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 74, 23, 0.25);
}

.section-title-wrapper:hover .section-tag::before {
  left: 100%;
}

.title-separator {
  width: 120px;
  height: 4px;
  background-color: #e0e0e0;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.title-separator span {
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff4a17, #ff7e17);
  left: 0;
  top: 0;
  animation: separator-slide 3s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes separator-slide {
  0%, 100% { left: 0; }
  50% { left: 60px; }
}

/* Animated decorative elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.decorative-circle.top-right {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #ff4a17 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.decorative-circle.bottom-left {
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #007bff 0%, transparent 70%);
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  position: relative;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f5ff 100%);
  z-index: 1;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.benefit-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.05), rgba(255, 255, 255, 0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 74, 23, 0.15);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover::after {
  width: 150px;
  height: 150px;
  opacity: 0.8;
}

.benefit-icon-container {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* Changed to circular */
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.12), rgba(255, 74, 23, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
  overflow: hidden; /* For the pulse effect */
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.2), rgba(255, 74, 23, 0.05));
  border-radius: 50%; /* Changed to circular */
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-icon i {
  font-size: 32px;
  color: #ff4a17;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(255, 74, 23, 0.1);
}

.benefit-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 74, 23, 0.3);
  z-index: -1;
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.benefit-card:hover .benefit-icon::before {
  opacity: 1;
  transform: scale(1);
}

.benefit-card:hover .benefit-icon i {
  color: #fff;
  animation: icon-spin 0.5s ease-out;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.benefit-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4a17, transparent);
  transition: all 0.5s ease;
}

.benefit-card:hover .benefit-title {
  color: #ff4a17;
}

.benefit-card:hover .benefit-title::after {
  width: 100%;
}

.benefit-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}
/* ===== AREAS WE SERVE SECTION ===== */
.areas-we-serve-section {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8fafd 100%);
  z-index: 1;
  overflow: hidden;
}

.area-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff4a17, #ff7e17);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.1), rgba(255, 74, 23, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.area-icon i {
  font-size: 28px;
  color: #ff4a17;
  transition: all 0.4s ease;
}

.area-card:hover .area-icon {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  transform: scale(1.1);
}

.area-card:hover .area-icon i {
  color: #fff;
}

.area-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.area-card:hover .area-name {
  color: #ff4a17;
}

.area-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.area-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #ff4a17;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.area-list li:hover {
  color: #ff4a17;
  transform: translateX(5px);
}

.area-list li:hover:before {
  transform: scale(1.5);
  box-shadow: 0 0 0 3px rgba(255, 74, 23, 0.2);
}

/* ===== POPULAR TAXI ROUTES SECTION ===== */
.popular-routes-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafd 0%, #f0f5ff 100%);
  z-index: 1;
  overflow: hidden;
}

.routes-table-container {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.routes-table-container::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.routes-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.routes-table thead th {
  background-color: rgba(255, 74, 23, 0.05);
  color: #333;
  font-weight: 700;
  padding: 15px 20px;
  text-align: left;
  border: none;
  font-size: 16px;
  position: relative;
}

.routes-table thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.routes-table thead th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.routes-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.routes-table tbody tr:last-child {
  border-bottom: none;
}

.routes-table tbody tr:hover {
  background-color: rgba(255, 74, 23, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.routes-table tbody td {
  padding: 15px 20px;
  color: #555;
  font-size: 15px;
  border: none;
  position: relative;
}

.routes-table .route-name {
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.routes-table tbody tr:hover .route-name {
  color: #ff4a17;
}

.routes-table .route-price {
  font-weight: 700;
  color: #ff4a17;
}

.routes-table .route-distance,
.routes-table .route-time {
  text-align: center;
}

.routes-table .route-book {
  text-align: right;
}

.route-book-btn {
  display: inline-block;
  color: white !important;
  background: linear-gradient(80deg, #ff4a17, #ff7e17);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 74, 23, 0.2);
}

.route-book-btn:hover {
  transform: translateY(-3px);
  color: #ffff;
  box-shadow: 0 8px 20px rgba(255, 74, 23, 0.3);
}

.route-book-btn i {
  margin-left: 5px;
  color: #e0e0e0;
  transition: transform 0.3s ease;
}



/* ===== TRAVEL TIPS SECTION ===== */
.travel-tips-section {
  position: relative;
  background-color: #f8fafd;
  z-index: 1;
}

.travel-tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: -1;
}

.travel-tip-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.travel-tip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.travel-tip-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tip-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.1), rgba(255, 74, 23, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  float: left;
  margin-right: 20px;
}

.tip-icon i {
  font-size: 24px;
  color: #ff4a17;
  transition: all 0.3s ease;
}

.travel-tip-card:hover .tip-icon {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
}

.travel-tip-card:hover .tip-icon i {
  color: #fff;
}

.tip-content {
  flex: 1;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.tip-marker {
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: #ff4a17;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tip-list li:hover {
  color: #ff4a17;
  transform: translateX(3px);
}

.tip-list li:hover .tip-marker {
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(255, 74, 23, 0.2);
}

/* ===== TAXI ROUTES SECTION ===== */
.taxi-routes-section {
  position: relative;
  background-color: #fff;
  z-index: 1;
}

.route-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.05), rgba(255, 255, 255, 0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.route-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 74, 23, 0.1);
}

.route-card:hover::before {
  opacity: 1;
}

.route-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.1), rgba(255, 74, 23, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.route-icon i {
  font-size: 20px;
  color: #ff4a17;
  transition: all 0.3s ease;
}

.route-card:hover .route-icon {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
}

.route-card:hover .route-icon i {
  color: #fff;
}

.route-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.route-card:hover .route-title {
  color: #ff4a17;
}

.route-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.route-link {
  display: inline-block;
  color: #ff4a17;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.route-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.route-link:hover {
  color: #e53b0c;
}

.route-link:hover::after {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8fafd 100%);
  z-index: 1;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 300px;
  font-family: Georgia, serif;
  color: rgba(255, 74, 23, 0.05);
  line-height: 1;
  z-index: 0;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.03), rgba(255, 255, 255, 0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-content {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-content::before {
  content: '"';
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(255, 74, 23, 0.1);
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: rgba(255, 74, 23, 0.2);
  transform: scale(1.05);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
  color: #ff4a17;
}

.testimonial-location {
  font-size: 14px;
  color: #777;
}

.testimonial-rating {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafd 0%, #f0f5ff 100%);
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
}

.faq-container {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-section .section-title {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-section .section-title h2 {
  position: relative;
  display: inline-block;
}

.faq-section .section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FF5722, #FF9800);
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Decorative elements */
.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 15s infinite alternate;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 15s infinite alternate-reverse;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* Section title styling */
.faq-section .section-title-wrapper {
  position: relative;
}

.faq-section .section-tag {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 74, 23, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.faq-section .section-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 74, 23, 0.3);
}

.faq-section .title-separator {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #ff4a17, #ff7e17);
  border-radius: 2px;
  margin-top: 15px;
}

/* Category filters */
.faq-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-category-btn {
  padding: 12px 24px;
  background-color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.faq-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.faq-category-btn:hover {
  color: #ff4a17;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-category-btn.active {
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 74, 23, 0.2);
}

.faq-category-btn.active::before {
  opacity: 1;
}

/* FAQ Items */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.faq-wrapper {
  position: relative;
}

.faq-wrapper.animate-items .faq-item {
  animation: fadeInUp 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  margin-bottom: 25px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 1;
  transform: translateY(0);
  position: relative;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

.faq-item.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.filtering {
  opacity: 0.5;
  transform: scale(0.98);
}

.faq-item.filtered-in {
  animation: filterIn 0.5s forwards;
}

.faq-item.filtered-out {
  animation: filterOut 0.5s forwards;
}

@keyframes filterIn {
  from {
    opacity: 0.5;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes filterOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.faq-item.hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #ff4a17, #ff7e17);
  transition: height 0.5s ease;
  border-radius: 4px 0 0 4px;
}

.faq-item.active::before {
  height: 100%;
}

.faq-question {
  padding: 25px 30px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.faq-question:hover h3 {
  color: #ff4a17;
}

.question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
}

.question-icon i {
  font-size: 20px;
  color: #ff4a17;
  transition: all 0.4s ease;
  position: absolute;
}

.faq-item.active .question-icon i.icon-plus {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item:not(.active) .question-icon i.icon-minus {
  transform: rotate(-90deg);
  opacity: 0;
}

.faq-item.active .faq-question {
  color: #ff4a17;
  background-color: rgba(255, 74, 23, 0.03);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #fff;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px 30px;
  max-height: 2000px;
  opacity: 1;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* FAQ Wrapper and Decorative Elements */
.faq-wrapper {
  position: relative;
  padding: 20px 0;
}

.faq-decoration-element {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 74, 23, 0), rgba(255, 74, 23, 0.1) 20%, rgba(255, 74, 23, 0.1) 80%, rgba(255, 74, 23, 0));
  transform: translateX(-50%);
  z-index: 0;
  display: none;
}

@media (min-width: 992px) {
  .faq-decoration-element {
    display: block;
  }
}

/* FAQ CTA Button */
.faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 74, 23, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 30px;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
  z-index: -1;
}

.faq-cta:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 74, 23, 0.4);
  color: white;
}

.faq-cta:hover::before {
  left: 100%;
}

.faq-cta i {
  margin-left: 10px;
  font-size: 20px;
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Enhanced FAQ Answer Cards */
.faq-answer-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  border-left: 3px solid #ff4a17;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

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

.faq-answer-card h4 {
  color: #ff4a17;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-answer-card ul.ul-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.faq-answer-card ul.ul-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
}

.faq-answer-card ul.ul-list li:last-child {
  margin-bottom: 0;
}

/* Booking Methods */
.booking-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.booking-method {
  flex: 1 1 200px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.booking-method:hover {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 74, 23, 0.2);
  transition: all 0.3s ease;
}

.booking-method:hover .method-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 74, 23, 0.3);
}

.method-icon i {
  font-size: 24px;
  color: white;
}

.method-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.method-details p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

.method-details a {
  color: #ff4a17;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.method-details a:hover {
  color: #e53b0c;
  text-decoration: underline;
}

/* Animation for FAQ items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
  opacity: 0;
}

/* Call to action button */
.faq-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(255, 74, 23, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e53b0c, #ff4a17);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 74, 23, 0.4);
  color: white;
}

.faq-cta:hover::before {
  opacity: 1;
}

.faq-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.faq-cta:hover i {
  transform: translateX(5px);
}

.faq-answer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.booking-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.booking-method {
  flex: 1 1 200px;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-method:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.booking-method i {
  font-size: 24px;
  color: #ff4a17;
  margin-right: 15px;
}

.booking-method-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.booking-method-details p {
  font-size: 14px;
  margin-bottom: 0;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.payment-option {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
}

.payment-option:hover {
  background-color: #ff4a17;
  color: #fff;
}

.payment-option i {
  margin-right: 8px;
}

.fare-comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fare-comparison th, .fare-comparison td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.fare-comparison th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.fare-comparison tr:last-child td {
  border-bottom: none;
}

.fare-comparison tr:hover td {
  background-color: rgba(255, 74, 23, 0.03);
}

.pricing-models {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.pricing-model {
  flex: 1 1 200px;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-model:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.pricing-model h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ff4a17;
}

.pricing-model p {
  font-size: 14px;
  margin-bottom: 0;
}

.sightseeing-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.sightseeing-package {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sightseeing-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sightseeing-package-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.sightseeing-package-content {
  padding: 20px;
}

.sightseeing-package-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.sightseeing-package-content p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

.sightseeing-package-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.sightseeing-package-feature {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

.safety-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.safety-measure {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.safety-measure:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.safety-measure h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.safety-measure h4 i {
  color: #ff4a17;
  margin-right: 10px;
  font-size: 18px;
}

.safety-measure p {
  font-size: 14px;
  margin-bottom: 0;
  color: #555;
}

.popular-routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.popular-route {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.popular-route:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular-route-header {
  padding: 15px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-route-header span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.popular-route-content {
  padding: 20px;
}

.popular-route-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.popular-route-detail {
  text-align: center;
}

.popular-route-detail span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.popular-route-detail strong {
  font-size: 16px;
  color: #333;
}

.popular-route-attractions {
  margin-top: 15px;
}

.popular-route-attractions h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.popular-route-attractions ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.popular-route-attractions li {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.cancellation-policy {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cancellation-policy th, .cancellation-policy td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.cancellation-policy th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.cancellation-policy tr:last-child td {
  border-bottom: none;
}

.cancellation-policy tr:hover td {
  background-color: rgba(255, 74, 23, 0.03);
}

.corporate-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.corporate-service {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.corporate-service:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.corporate-service h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.corporate-service p {
  font-size: 14px;
  margin-bottom: 0;
  color: #555;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.faq-cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 74, 23, 0.3);
}

.faq-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 74, 23, 0.4);
}

/* ===== INTRO SECTION ===== */
.intro-section {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8fafd 100%);
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.intro-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.intro-content {
  position: relative;
  z-index: 1;
}

.intro-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.intro-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff4a17, transparent);
}

.intro-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.intro-features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.intro-feature {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.1), rgba(255, 74, 23, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 18px;
  color: #ff4a17;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  transform: rotate(5deg);
}

.feature-item:hover .feature-icon i {
  color: #fff;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-title {
  color: #ff4a17;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 74, 23, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 74, 23, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 74, 23, 0.2);
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1199px) {
  .section-spacing {
    padding: 80px 0;
  }
  
  .intro-title {
    font-size: 28px;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
  }
  
  .benefit-icon i {
    font-size: 28px;
  }
  
  .benefit-title {
    font-size: 20px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .section-spacing {
    padding: 70px 0;
  }
  
  .section-title-wrapper {
    margin-bottom: 50px;
  }
  
  .intro-feature {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .routes-table thead th,
  .routes-table tbody td {
    padding: 12px 15px;
  }
  
  .testimonials-section::before {
    font-size: 200px;
    top: 30px;
    left: 30px;
  }
  
  .benefit-card, .travel-tip-card, .route-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .section-spacing {
    padding: 60px 0;
  }
  
  .section-title-wrapper {
    margin-bottom: 40px;
  }
  
  .title-separator {
    width: 100px;
    margin: 20px auto 0;
  }
  
  .benefit-card,
  .area-card,
  .travel-tip-card,
  .testimonial-card {
    margin-bottom: 30px;
  }
  
  .routes-table-container {
    padding: 20px;
    overflow-x: auto;
  }
  
  .routes-table {
    min-width: 650px;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  
  .intro-title {
    font-size: 24px;
  }
  
  .intro-description {
    font-size: 15px;
  }
  
  .benefit-icon, .tip-icon, .route-icon {
    margin: 0 auto 15px;
  }
  
  .tip-icon {
    float: none;
    margin-right: 0;
  }
  
  .travel-tip-card {
    text-align: center;
  }
  
  .tip-list li {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .section-spacing {
    padding: 50px 0;
  }
  
  .section-tag {
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .benefit-icon,
  .area-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon i,
  .area-icon i {
    font-size: 24px;
  }
  
  .benefit-title,
  .area-name {
    font-size: 18px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-name {
    font-size: 16px;
  }
  
  .testimonial-content {
    font-size: 15px;
  }
  
  .testimonial-content::before {
    font-size: 40px;
    top: -20px;
  }
  
  .intro-title {
    font-size: 22px;
  }
  
  h2.text-30 {
    font-size: 24px !important;
  }
 
}

/* Why Choose Section Styling */
.why-choose-section {
  background-color: #f9f9f9;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 249, 249, 0.8) 100%), url('../myweb/pattern-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.benefit-card {
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 74, 23, 0.2);
}

.benefit-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 74, 23, 0.03);
  z-index: -1;
  transition: height 0.4s ease;
}

.benefit-card:hover:before {
  height: 100%;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white !important; 
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(255, 74, 23, 0.3);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Travel Tips Section Styling */
.travel-tips-section {
  background-color: #fff;
  position: relative;
}

.travel-tips-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 74, 23, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
  z-index: 0;
}

.travel-tip-card {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.travel-tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 74, 23, 0.2);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(255, 74, 23, 0.2);
  transition: all 0.4s ease;
}

.travel-tip-card:hover .tip-icon {
  transform: scale(1.1);
}

.tip-content {
  flex: 1;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tip-list li:last-child {
  border-bottom: none;
}

.tip-marker {
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: #ff4a17;
  border-radius: 50%;
}

.tip-list li:hover {
  padding-left: 30px;
  color: #ff4a17;
}

/* Taxi Routes Section Styling */
.taxi-routes-section {
  background-color: #f9f9f9;
  position: relative;
}

.taxi-routes-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 74, 23, 0.05);
  border-radius: 50%;
  transform: translate(-100px, 100px);
  z-index: 0;
}

.route-card {
  display: block;
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 74, 23, 0.2);
}

.route-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 74, 23, 0.03);
  z-index: 0;
  transition: height 0.4s ease;
}

.route-card:hover:before {
  height: 100%;
}

.route-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4a17, #ff7e17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(255, 74, 23, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.route-card:hover .route-icon {
  transform: scale(1.1) rotate(10deg);
}

.route-content {
  position: relative;
  z-index: 1;
}

.route-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  transition: all 0.3s ease;
}

.route-card:hover .route-content h4 {
  color: #ff4a17;
}

.route-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.route-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff4a17;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.route-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.route-card:hover .route-link {
  opacity: 1;
  transform: translateY(0);
}

.route-card:hover .route-link i {
  transform: translateX(5px);
}

/* Animation for elements when they come into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .section-spacing {
    padding: 50px 0;
  }
  
  .benefit-card, .travel-tip-card, .route-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .section-spacing {
    padding: 40px 0;
  }
  
  .section-title-wrapper h2 {
    font-size: 24px;
  }
  
  .benefit-icon, .tip-icon, .route-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .travel-tip-card {
    flex-direction: column;
  }
  
  .tip-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
}