 body {
     background-color: #EFF8FF;

 }

 .transport-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px;
 }

 .transport-header {
     text-align: center;
     margin-bottom: 40px;
     color: white;
 }

 .transport-title {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .transport-subtitle {
     font-size: 1.2rem;
     font-weight: 300;
     opacity: 0.9;
 }

 .transport-filters {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 20px;
     margin-bottom: 40px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .transport-filter-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     align-items: end;
 }

 .transport-filter-group {
     display: flex;
     flex-direction: column;
 }

 .transport-filter-label {
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     font-size: 0.95rem;
 }

 .transport-filter-select {
     padding: 12px 16px;
     border: 2px solid #e1e8ed;
     border-radius: 12px;
     font-size: 1rem;
     background: white;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .transport-filter-select:focus {
     outline: none;
     border-color: #667eea;
     box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
 }

 .transport-filter-btn {
     background: linear-gradient(135deg, #667eea, #764ba2);
     color: white;
     border: none;
     padding: 12px 24px;
     border-radius: 12px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     transform: translateY(0);
 }

 .transport-filter-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
 }

 .transport-results-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     flex-wrap: wrap;
     gap: 15px;
 }

 .transport-results-count {
     color: white;
     font-size: 1.1rem;
     font-weight: 500;
 }

 .transport-sort-select {
     padding: 8px 12px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     backdrop-filter: blur(10px);
 }

 .transport-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }

 .transport-card {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
 }

 .transport-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
 }

 .transport-card-image {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .transport-card-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .transport-card:hover .transport-card-img {
     transform: scale(1.05);
 }

 .transport-card-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     color: white;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .transport-card-content {
     padding: 25px;
 }

 .transport-card-title {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #2c3e50;
 }

 .transport-card-specs {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
     margin-bottom: 20px;
 }

 .transport-spec-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.9rem;
     color: #5a6c7d;
 }

 .transport-spec-icon {
     width: 16px;
     height: 16px;
     color: #667eea;
 }

 .transport-card-features {
     margin-bottom: 20px;
 }

 .transport-features-list {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .transport-feature-tag {
     background: rgba(102, 126, 234, 0.1);
     color: #667eea;
     padding: 4px 8px;
     border-radius: 12px;
     font-size: 0.8rem;
     font-weight: 500;
 }

 .transport-card-pricing {
     border-top: 1px solid #e1e8ed;
     padding-top: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .transport-price {
     font-size: 1.5rem;
     font-weight: 700;
     color: #2c3e50;
 }

 .transport-price-unit {
     font-size: 0.9rem;
     color: #5a6c7d;
     font-weight: 400;
 }

 .transport-book-btn {
     background: linear-gradient(135deg, #667eea, #764ba2);
     color: white;
     border: none;
     padding: 12px 24px;
     border-radius: 12px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .transport-book-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
 }

 .transport-no-results {
     text-align: center;
     color: white;
     font-size: 1.2rem;
     padding: 60px 20px;
 }

 .transport-loading {
     text-align: center;
     color: white;
     font-size: 1.1rem;
     padding: 40px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .transport-container {
         padding: 15px;
     }

     .transport-title {
         font-size: 2rem;
     }

     .transport-filters {
         padding: 20px;
     }

     .transport-filter-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .transport-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .transport-card-content {
         padding: 20px;
     }

     .transport-results-header {
         flex-direction: column;
         align-items: stretch;
     }
 }

 @media (max-width: 480px) {
     .transport-title {
         font-size: 1.6rem;
     }

     .transport-filters {
         padding: 15px;
     }

     .transport-card-specs {
         grid-template-columns: 1fr;
         gap: 10px;
     }

     .transport-card-pricing {
         flex-direction: column;
         gap: 15px;
         align-items: stretch;
     }
 }