/* vehicles.css */
body{
  background-color: #faf8f8f1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Section */
.vehicles-header {
    position: relative;
    padding: 4rem 1rem;
    min-height: 400px;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-image: url('../images/vehicles/vehicles_background.jpeg');
    justify-content: center;
}

.vehicles-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(38, 40, 44, 0.8),
    rgba(25, 22, 37, 0.8)
  );
  z-index: 1;
}

.vehicles-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 0 1rem;
  width: 100%;
}

.vehicles-header-content h1 {
  font-weight: 700;
  color: white;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.vehicles-header-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-top: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.vehicles-header .custom-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem auto;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    max-width: 90%;
    list-style: none;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicles-header .breadcrumb-item {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.vehicles-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
    float: none;
}

.vehicles-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vehicles-header .breadcrumb-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.vehicles-header .breadcrumb-item.active {
    color: white;
}


/* Scoped styles to the vehicles-page section */
.vehicles-page .vehicle-card {
    background-color: #f3f0f0;
    border-radius: 12px;
    border: 1px solid #e0e0e0f3;
    margin-bottom: 25px;
    /*height: 330px; */
    height:auto;
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* Force no padding */
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicles-page .section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.vehicles-page .vehicle-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vehicles-page .vehicle-image {
    width: 100% !important;
    max-width: none !important;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px 12px 0 0;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    position: relative;
    left: 0;
    right: 0;
}

.vehicles-page .vehicle-details {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 15px; 
    min-height: 0;
}

.vehicles-page .vehicle-brand {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicles-page .vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

.vehicles-page .vehicle-price .currency {
    color: #ff7d00;
}

.vehicles-page .vehicle-price .amount {
    font-size: 1.25rem;
}

.vehicles-page .vehicle-price .per-day {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: normal;
}

.vehicles-page .vehicle-price span {
    font-size: 0.9rem;
    color: #000000d8;
}

.vehicles-page .specs-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.vehicles-page .spec-item {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicles-page .spec-item i {
    color: #000000;
}

.vehicles-page .view-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    color: #312e2e;
    border: 1px solid #928f8f93;
    border-radius: 5px;
    padding: 10px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    background: #ffffff2c;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    position: relative;
    gap: 0.5rem;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000000d5;
    color: #eceaea;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.vehicles-page .view-details-btn:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.vehicles-page .view-details-btn:hover .arrow-circle {
    background: #fff;
    color: #000000;
    
}

.vehicles-page .view-details-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 95, 224, 0.25);
}

/* Pricing Section Styles */
.pricing-section {
    background: #2b84b8;
    padding: 80px 0;
    margin: 60px 0;
}

.pricing-section h1 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2b84b8, #1e5a7a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.pricing-card.popular {
    background: #ffa700;
    color: #333;
    transform: scale(1.05);
}

.pricing-card.popular .duration {
    color: #333;
}

.pricing-card.popular .savings {
    color: rgba(255, 255, 255, 0.95);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffd700;
    color: #333;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.duration {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: #2b84b8;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 60px;
}

.pricing-card.popular .price {
    color: white;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.pricing-card .price .amount {
    transition: opacity 0.3s ease;
}

.pricing-card .per-day {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
    margin-bottom: 10px;
}

.pricing-card.popular .per-day {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card .per-day .per-day-amount {
    transition: opacity 0.3s ease;
}

.savings {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 10px 0;
    min-height: 32px;
}

.pricing-card.popular .savings {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    padding: 0;
    flex-grow: 1;
}

.features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.pricing-card.popular .features li {
    color: #333;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b84b8;
    font-weight: bold;
}

.pricing-card.popular .features li::before {
    color: white;
}

.pricing-card .btn {
    background: #2b84b8;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 132, 184, 0.4);
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(43, 132, 184, 0.6);
    background: #1e5a7a;
}

.pricing-card.popular .btn {
    background: white;
    color: #2b84b8;
}

.pricing-card.popular .btn:hover {
    background: #f8f9fa;
    color: #1e5a7a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card .price {
        font-size: 3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card .price {
        font-size: 3rem;
    }
}

/* Brand List Section */
.vehicles-page .brand-list-section {
    background-color: #cecbcb;
    padding: 30px 0;
    border-radius: 20px;
    margin: 20px 0;
    text-align: center;
}

.vehicles-page .brand-list-section ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vehicles-page .brand-list-section ul li {
    flex: 0 1 auto;
}

.vehicles-page .brand-list-section ul li img {
    max-width: 300px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 50px;
}

.vehicles-page .brand-list-section ul li img:hover {
    transform: scale(1.1);
}

/* Custom outline button with your color */
.vehicles-page .btn-outline-primary {
    color: #4925c4;
    border-color: #4925c4;
}

.vehicles-page .btn-outline-primary:hover,
.vehicles-page .btn-outline-primary:focus {
    background-color: #4925c4;
    color: white;
    border-color: #4925c4;
}

/* Active state */
.vehicles-page .btn-outline-primary.active,
.vehicles-page .btn-outline-primary:active,
.vehicles-page .btn-outline-primary:focus.active {
    background-color: #4925c4;
    color: white;
    border-color: #4925c4;
}

/* Responsive styling */
@media (min-width: 992px) {
    .vehicles-header {
        background-attachment: fixed;
        background-position: 75% center;
    }
}

@media (max-width: 991px) {
    .vehicles-page .vehicle-card {
        max-width: 100%;
        height: 350px;
        padding: 18px 10px 10px 10px;
    }
    .vehicles-page .vehicle-image {
        max-width: 200px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .vehicles-page .vehicle-card {
        max-width: 100%;
        height: 320px;
        padding: 12px 5px 5px 5px;
    }
    .vehicles-page .vehicle-image {
        max-width: 150px;
        height: 90px;
    }
    .vehicles-header {
        background-attachment: fixed;
        background-position: 70% center;
    }
}

@media (max-width: 576px) {
    .vehicles-page .vehicle-brand {
        font-size: 16px;
    }

    .vehicles-page .vehicle-price {
        font-size: 13px;
    }

    .vehicles-page .spec-item {
        font-size: 12px;
    }

    .vehicles-page .view-details-btn {
        width: 100%;
        text-align: center;
    }

    .vehicles-page .brand-list-section ul li img {
        max-width: 200px;
    }
    .vehicles-header {
        background-attachment: fixed;
        background-position: 70% center;
    }
}

@media (max-width: 400px) {
    .vehicles-page .vehicle-brand {
        font-size: 14px;
    }

    .vehicles-page .vehicle-price {
        font-size: 12px;
    }

    .vehicles-page .spec-item {
        font-size: 11px;
        display: block; /* Stack them for more vertical space */
    }

    .vehicles-page .view-details-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .vehicles-page .vehicle-card {
        padding: 10px;
    }

    .vehicles-page .brand-list-section ul li img {
        max-width: 200px;
    }

    .vehicles-page .section-title {
        font-size: 20px;
        text-align: center;
    }
    .vehicles-header {
        background-attachment: fixed;
        background-position: 70% center;
    }
}

/* NEW Clean Professional Tuk-Tuk Showcase */
.tuktuk-showcase {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.showcase-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Clean Background Colors */
.showcase-slide.slide-1 {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.showcase-slide.slide-2 {
  background: linear-gradient(135deg, #fefefe 0%, #f3f4f6 100%);
}

.showcase-slide.slide-3 {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  height: 100%;
}

/* Left Content */
.showcase-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.showcase-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.showcase-badge.animate {
  opacity: 1;
  transform: translateY(0);
}

.showcase-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.showcase-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.showcase-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
}

.showcase-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.showcase-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
}

.showcase-price.animate {
  opacity: 1;
  transform: translateY(0);
}

.price-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.price-period {
  font-size: 16px;
  color: #64748b;
}

.showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.4s;
}

.showcase-features.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.showcase-cta {
  display: flex;
  position: relative;
  gap: 16px;
  opacity: 0;
  margin-top: auto;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}

.showcase-cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
    position: relative;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  border: 1px solid transparent;
}

.cta-primary {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
}

.cta-primary:hover {
  background: #1e293b;
  color: white;
  transform: translateY(-1px);
}

.cta-secondary {
  background: transparent;
  color: #475569;
  border-color: #d1d5db;
}

.cta-secondary:hover {
  background: #f8fafc;
  color: #374151;
  border-color: #9ca3af;
}

/* Right Image Section */
.showcase-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.3s;
}

.showcase-image.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.showcase-navigation {
  top: 80%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.nav-indicators {
  display: flex;
  gap: 8px;
}

.nav-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-indicator.active {
  background: #475569;
  transform: scale(1.25);
}

.nav-controls {
  margin-top: 100px;
  margin-left: -100px;
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 6px;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.nav-btn:hover {
  background: #f8fafc;
  border-color: #9ca3af;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tuktuk-showcase {
    min-height: 170vh;
  }
  
  .showcase-slide {
    padding: 40px 0;
  }
  
  .showcase-container {
    padding: 0 20px;
  }
  
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .showcase-left {
    max-width: none;
  }
  
  .showcase-features {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 40px;
  }
  
  .showcase-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-button {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  
  .showcase-navigation {
    bottom: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .nav-indicators{
    margin-top:50px;
  }
  .nav-controls{
      /*margin-bottom:60px;*/
      margin-left:20px;
  }
}

@media (max-width: 480px) {
  .showcase-slide {
    padding: 30px 0;
  }
  
  .showcase-container {
    padding: 0 16px;
  }
  
  .showcase-content {
    gap: 30px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}