/* =====================================================
   SASTITAXI.COM — Additional Sections CSS
   ===================================================== */

/* ─────────────────────────────────────────────────────
   1. FEATURES / TRUST STRIP (Updated 8 items)
   ───────────────────────────────────────────────────── */
.features-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.features-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* Colors */
.feature-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.feature-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.feature-orange {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.feature-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────
   2. STATS BAR
   ───────────────────────────────────────────────────── */
.stats-section {
  padding: 40px 0;
  background: var(--color-white);
}

.stats-container {
  background: #0f2e5c;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eab308;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
  line-height: 1.1;
}

.stat-text p {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin: 0;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────
   GLOBAL SECTION HEADERS
   ───────────────────────────────────────────────────── */
.section-header {
  margin-bottom: 40px;
}

.section-header.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────
   3. POPULAR DESTINATIONS
   ───────────────────────────────────────────────────── */
.destinations-section {
  padding: 60px 0;
  background: #f9fafb;
}

.destinations-header-row {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.destinations-header-row .btn-outline-green {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .destinations-header-row .btn-outline-green {
    position: static;
    transform: none;
    margin-top: 16px;
    display: inline-block;
  }
}

.btn-outline-green {
  background: var(--color-white);
  color: #10b981;
  border: 1.5px solid #10b981;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-green:hover {
  background: #10b981;
  color: var(--color-white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.destination-card:hover .destination-img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}

.destination-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.destination-text h4 {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.destination-text p {
  color: #e5e7eb;
  font-size: 0.75rem;
  margin: 0;
}

.destination-arrow {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}

.destination-arrow svg {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────────────────
   4. SERVICES SECTION
   ───────────────────────────────────────────────────── */
.services-section {
  padding: 80px 0;
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: var(--color-white);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.service-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.service-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px;
}

.service-text p {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────
   5. FLEET SECTION
   ───────────────────────────────────────────────────── */
.fleet-section {
  padding: 60px 0 80px;
  background: #f9fafb;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fleet-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.fleet-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fleet-img-wrap img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.fleet-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
}

.fleet-capacity {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0 0 16px;
}

.fleet-bottom {
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet-price span {
  font-size: 0.75rem;
  color: #6b7280;
}

.fleet-price strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
}

.fleet-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  transition: all 0.2s;
  cursor: pointer;
}

.fleet-action:hover {
  background: #f3f4f6;
}

/* ─────────────────────────────────────────────────────
   6. TESTIMONIALS SECTION
   ───────────────────────────────────────────────────── */
.testimonials-section {
  padding: 70px 0;
  background: #f8fafc;
  position: relative;
}

/* Carousel Control Buttons */
.btn-carousel-prev,
.btn-carousel-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.btn-carousel-prev:hover,
.btn-carousel-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #061329;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.4);
}

/* Testimonial Card Item */
.testimonial-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

/* Background Quote Icon */
.quote-bg-icon {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 4rem;
  color: rgba(245, 197, 24, 0.12);
  pointer-events: none;
}

/* Route Badge Pill */
.dest-badge-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Star Ratings */
.star-rating-row {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

/* Review Quote Text */
.review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Reviewer Profile Row */
.reviewer-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.verified-icon {
  color: #10b981;
  font-size: 0.85rem;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: #64748b;
}

/* Custom Carousel Indicator Dots */
.custom-dots button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #cbd5e1 !important;
  border: none !important;
  opacity: 0.6 !important;
  transition: all 0.3s ease !important;
  margin: 0 5px !important;
}

.custom-dots button.active {
  width: 32px !important;
  border-radius: 12px !important;
  background-color: var(--color-primary) !important;
  opacity: 1 !important;
}

/* ─────────────────────────────────────────────────────
   7. APP DOWNLOAD BANNER SECTION
   ───────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────
   7. APP DOWNLOAD BANNER SECTION (Compact & Slim)
   ───────────────────────────────────────────────────── */
.app-banner-section {
  position: relative;
  overflow: visible;
  z-index: 10;
}

.app-banner-bar {
  background-image: linear-gradient(90deg,
      rgba(6, 45, 107, 0.95) 0%,
      rgba(13, 71, 161, 0.90) 35%,
      rgba(21, 101, 192, 0.70) 65%,
      rgba(10, 58, 130, 0.85) 100%),
    url('../hero-bg.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  max-height: 140px;
  display: flex;
  align-items: center;
}

.app-banner-title {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.app-banner-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Store Buttons (Slim) */
.store-btn {
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 6px 14px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.store-btn:hover {
  background: #111827;
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.store-icon {
  font-size: 1.3rem;
  color: #ffffff;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
}

.store-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.store-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 1px;
}

/* Smartphone Mockup Frame (Compact & Floating) */
.phone-mockup-wrapper {
  position: relative;
  margin-top: -65px;
  margin-bottom: -65px;
  transform: rotate(-3deg);
  display: inline-block;
  z-index: 15;
}

.phone-frame {
  width: 150px;
  height: 250px;
  background: #090d16;
  border: 3.5px solid #1e293b;
  border-radius: 26px;
  padding: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.phone-notch {
  width: 70px;
  height: 14px;
  background: #1e293b;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen-content {
  background: linear-gradient(180deg, #061329 0%, #0d2347 100%);
  height: 100%;
  border-radius: 26px;
  padding: 24px 12px 12px;
  color: #ffffff;
}

.app-screen-header {
  margin-bottom: 12px;
  text-align: center;
}

.app-screen-logo {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.app-screen-logo span span {
  color: var(--color-primary);
}

.app-screen-tag {
  display: block;
  font-size: 0.6rem;
  color: var(--color-primary);
  font-family: 'Caveat', cursive;
  line-height: 1;
}

.app-screen-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.app-tab {
  flex: 1;
  padding: 4px 2px;
  font-size: 0.62rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #cbd5e1;
}

.app-tab.active {
  background: var(--color-primary);
  color: #061329;
  font-weight: 700;
}

.app-screen-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  color: #0f172a;
}

.app-field {
  font-size: 0.68rem;
  padding: 5px 8px;
  background: #f1f5f9;
  border-radius: 6px;
  margin-bottom: 6px;
  color: #475569;

}

.app-cta-btn {
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  color: #061329;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────
   8. FOOTER SECTION
   ───────────────────────────────────────────────────── */
.footer-main {
  background: #071329;
  color: #9ca3af;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo span {
  color: var(--color-primary);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.newsletter-desc {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  background: #1e293b;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  color: var(--color-white);
  font-size: 0.875rem;
  outline: none;
}

.newsletter-form button {
  background: #10b981;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 20px;
  color: var(--color-white);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--color-white);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .app-banner {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .app-mockup {
    position: relative;
    right: 0;
    bottom: -32px;
    margin-top: 32px;
  }

  .app-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

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

  .features-grid {
    flex-direction: column;
    gap: 24px;
  }
}

/* ==============================================================================
   100% PIXEL PERFECT MATCH: CHOOSE YOUR PREFERRED OPTION SECTION (SCREENSHOT 2)
   ============================================================================== */

.preferred-options-section {
  background-color: #f8fafc;
}

/* Header Bar */
.options-main-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.options-sub-title {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.compare-switch-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
}

/* Custom Toggle Switch */
.custom-switch-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.custom-switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.custom-switch-toggle input:checked+.switch-slider {
  background-color: #f5c518;
}

.custom-switch-toggle input:checked+.switch-slider:before {
  transform: translateX(22px);
  background-color: #0d1b2a;
}

/* Results Top Header Banner (Brand Navy Theme Card) */
.results-header-banner {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2942 100%);
  border: 1px solid rgba(245, 197, 24, 0.25);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.results-header-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.route-pill-badge {
  background: rgba(245, 197, 24, 0.15);
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.4);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.summary-stat-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.compare-toggle-wrap {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Table Header Strip (Matching Brand Navy Theme) */
.preferred-table-header {
  display: grid;
  grid-template-columns: 280px 200px 1fr 200px;
  background: linear-gradient(135deg, #0d1b2a 0%, #0a1628 100%);
  border-radius: 12px;
  padding: 13px 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(13, 27, 42, 0.15);
}

.tbl-hdr-cell {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Option Cards List */
.options-cards-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each Floating Card Row (Theme Aligned Card) */
.preferred-option-card {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.05), 0 1px 3px rgba(13, 27, 42, 0.03);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.preferred-option-card:hover {
  transform: translateY(-3px);
  border-color: #f5c518;
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.12);
}

.preferred-option-card.card-featured {
  border: 2px solid #f5c518;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.15);
}

.preferred-option-card.card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f5c518 0%, #d4a000 100%);
}

/* 4-Column Grid inside each card */
.card-grid-container {
  display: grid;
  grid-template-columns: 280px 200px 1fr 200px;
  align-items: center;
  gap: 20px;
}

/* ── Col 1: Vehicle & Category ── */
.card-col.col-car {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.car-name-text {
  font-size: 1rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.2;
}

.vehicle-tag-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.badge-private {
  background: #0d1b2a;
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.4);
}

.badge-shared {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Image Card Box (Matching User Screenshot) */
.car-media-card {
  position: relative;
  width: 100%;
  height: 135px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06), 0 1px 3px rgba(13, 27, 42, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.preferred-option-card:hover .car-media-card {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
}

.car-media-img {
  max-height: 115px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.preferred-option-card:hover .car-media-img {
  transform: scale(1.06);
}

.car-spec-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  width: 100%;
}

/* ── Col 2: Fleet Partner & Operator ── */
.card-col.col-hotel {
  display: flex;
  flex-direction: column;
}

.partner-avatar-icon {
  width: 38px;
  height: 38px;
  background: #0d1b2a;
  color: #f5c518;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.partner-company-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.2;
}

.verified-status-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  display: block;
}

.rating-star-badge {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  color: #d48806;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-count-text {
  font-size: 0.76rem;
  color: #64748b;
}

.amenities-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.amenity-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
}

/* ── Col 3: Key Inclusions Checklist ── */
.card-col.col-inclusions {
  align-self: center;
}

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

.inclusions-checklist li {
  font-size: 0.83rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusions-checklist li:last-child {
  margin-bottom: 0;
}

.icon-check {
  color: #10b981;
  font-size: 0.92rem;
  flex-shrink: 0;
}

/* ── Col 4: Price & Action CTA ── */
.card-col.col-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.price-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-discount-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.strike-fare {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.82rem;
}

.discount-pill {
  background-color: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 6px;
}

.per-pax-subtitle {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.tag-most-popular {
  background: #fef3c7 !important;
  color: #92400e !important;
  border: 1px solid #fde68a !important;
  font-weight: 800 !important;
  font-size: 0.74rem !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.tag-best-value {
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid #bae6fd !important;
  font-weight: 800 !important;
  font-size: 0.74rem !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Brand Theme Gold CTA Button */
.btn-primary-cta {
  width: 100%;
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  color: #061329;
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.4);
  transition: all 0.2s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.55);
  background: linear-gradient(135deg, #ffe033 0%, #f4be00 100%);
  color: #061329;
}

.btn-outline-details {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 16px;
  color: #0d1b2a;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-details:hover {
  background: #f8fafc;
  border-color: #0d1b2a;
  color: #0d1b2a;
}
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.tag-best-value {
  background-color: #fef9c3;
  color: #a16207;
  border: 1px solid #fde68a;
}

.tag-most-popular {
  background-color: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.card-actions-vstack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: stretch;
}

.btn-green-select {
  background-color: #047857;
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 0;
  border-radius: 7px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-green-select:hover {
  background-color: #065f46;
}

.btn-white-details {
  background-color: #ffffff;
  color: #374151;
  border: 1.5px solid #d1d5db;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 0;
  border-radius: 7px;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-white-details:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

/* Responsive */
@media (max-width: 1199px) {

  .card-grid-container,
  .preferred-table-header {
    grid-template-columns: 220px 1fr 1.2fr 175px;
  }
}

@media (max-width: 991px) {
  .preferred-table-header {
    display: none !important;
  }

  .card-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .card-col.col-price {
    align-items: flex-start;
    grid-column: span 2;
  }

  .card-actions-vstack {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 575px) {
  .card-grid-container {
    grid-template-columns: 1fr;
  }

  .card-col.col-price {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────────────
   23. SHARING PACKAGES HERO & WIDGET (100/100 MATCH)
   ───────────────────────────────────────────────────── */
.hero-sharing-section {
  position: relative;
  background: linear-gradient(to right, rgba(4, 14, 28, 0.85) 0%, rgba(6, 18, 36, 0.65) 45%, rgba(6, 18, 36, 0.15) 100%), url('../images/sharing_hero_bg.png') center center / cover no-repeat;
  padding: 110px 0 100px 0;

  min-height: 380px;
  display: flex;
  align-items: center;
}

.sharing-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.sharing-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-bottom: 28px;
  font-weight: 400;
}

.sharing-feature-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sharing-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.sharing-badge-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid #f5c518;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5c518;
  font-size: 10px;
  flex-shrink: 0;
}

/* Floating Search Widget */
.sharing-search-container {
  position: relative;
  margin-top: -50px;
  z-index: 20;
}

.sharing-search-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-field-box {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field-box:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-field-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 2px;
  line-height: 1;
}

.search-field-input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-field-input {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  width: 100%;
  outline: none;
}

.search-field-input::placeholder {
  color: #64748b;
}

.search-field-icon {
  color: #3b82f6;
  font-size: 14px;
  margin-left: 8px;
  flex-shrink: 0;
}

.search-field-icon.icon-muted {
  color: #64748b;
}

.btn-search-packages-main {
  background: #061c38;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 52px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-search-packages-main:hover {
  background: #0b2d5a;
  color: #ffffff;
}

/* Content Section Header */
.sharing-page-header {
  padding-top: 36px;
  padding-bottom: 20px;
}

.breadcrumb-custom {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-custom a {
  color: #64748b;
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  color: #1e293b;
}

.breadcrumb-custom .active-page {
  color: #1e293b;
  font-weight: 500;
}

.sharing-title-main {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.sharing-subtitle-main {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .hero-sharing-section {
    padding: 80px 0 80px 0;
    min-height: 400px;
  }

  .sharing-hero-title {
    font-size: 2.5rem;
  }

  .search-field-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-search-packages-main {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .sharing-hero-title {
    font-size: 2rem;
  }

  .search-field-grid {
    grid-template-columns: 1fr;
  }

  .btn-search-packages-main {
    grid-column: span 1;
  }

  .sharing-feature-badges {
    gap: 14px;
  }
}

/* ─────────────────────────────────────────────────────
   26. CONTACT US PAGE STYLES
   ───────────────────────────────────────────────────── */
.contact-hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(10, 22, 40, 0.92)), url('../hero-bg.png') center center / cover no-repeat;
  padding: 100px 0 70px 0;
  /* margin-top: 76px; */
  color: #ffffff;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 0;
}

.badge-item-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px auto;
}

.contact-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-card-desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-office-card {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}


/* ─────────────────────────────────────────────────────
   25. ONEWAY SHARING CABS & CAR LIST (100/100 MATCH)
   ───────────────────────────────────────────────────── */
.oneway-section {
  padding: 40px 0 80px 0;
  background: #f8fafc;
}

/* Category Header Row */
.oneway-header-wrap {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.oneway-title-main {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.oneway-subtitle-main {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
}

.oneway-header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oneway-per-person-note {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.currency-select-box {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  background: #ffffff;
  outline: none;
}

/* Category Filter Tabs Bar */
.oneway-category-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.oneway-tab-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 170px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.oneway-tab-btn:hover,
.oneway-tab-btn.active {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
}

.tab-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
}

.tab-title-text {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1px;
  line-height: 1.2;
}

.tab-sub-text {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* Table List Layout */
.oneway-table-container {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.oneway-table-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 180px 180px 1fr 100px 160px 160px 120px;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: none;
}

.oneway-car-row {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: 180px 180px 1fr 100px 160px 160px 120px;
  gap: 16px;
  align-items: center;
  transition: background 0.15s ease;
}

.oneway-car-row:last-child {
  border-bottom: none;
}

.oneway-car-row:hover {
  background: #f8fafc;
}

/* Row Columns */
.car-badge-col {
  position: relative;
  text-align: center;
}

.car-badge-tag {
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  color: #ffffff;
  z-index: 2;
}

.tag-most-popular {
  background: #059669;
}

.tag-best-value {
  background: #2563eb;
}

.tag-premium {
  background: #7c3aed;
}

.tag-luxury {
  background: #d97706;
}

.car-thumb-image {
  max-width: 150px;
  max-height: 90px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.car-model-col {
  display: flex;
  flex-direction: column;
}

.car-cat-label {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.car-name-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.car-similar-text {
  font-size: 12px;
  color: #64748b;
}

.car-features-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
}

.car-features-col li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.car-features-col i {
  color: #16a34a;
  font-size: 12px;
}

.car-seats-col {
  text-align: center;
}

.seats-circle-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #1d4ed8;
  margin: 0 auto;
}

.seats-label-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.car-person-price-col {
  display: flex;
  flex-direction: column;
}

.person-price-main {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.person-price-main span {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.discount-pill-green {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
  width: fit-content;
}

.strike-price-text {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 2px;
}

.car-total-price-col {
  display: flex;
  flex-direction: column;
}

.total-price-main {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.total-price-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.total-all-text {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.car-select-col {
  text-align: right;
}

.btn-green-select-main {
  background: #047857;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.btn-green-select-main:hover {
  background: #065f46;
}

@media (max-width: 1199px) {

  .oneway-table-header,
  .oneway-car-row {
    grid-template-columns: 140px 140px 1fr 80px 140px 140px 100px;
    gap: 12px;
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .oneway-table-header {
    display: none;
  }

  .oneway-car-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .car-badge-col {
    grid-column: span 2;
  }

  .car-features-col {
    grid-column: span 2;
  }
}


/* ─────────────────────────────────────────────────────
   24. SHARING PACKAGES LIST & FILTER SIDEBAR (100/100 MATCH)
   ───────────────────────────────────────────────────── */
.sharing-list-section {
  padding: 10px 0 60px 0;
  background: #f8fafc;
}

/* Sidebar Styling */
.package-filter-sidebar {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.btn-clear-filter {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.filter-group {
  padding-top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #334155;
}

.filter-checkbox-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-count {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.view-more-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}

.view-more-link:hover {
  text-decoration: underline;
}

.filter-date-input {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.filter-date-input input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e293b;
  width: 100%;
}

.price-range-slider {
  width: 100%;
  accent-color: #059669;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 6px;
}

/* Package List Card Horizontal */
.package-list-card {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pkg-img-col {
  position: relative;
  width: 290px;
  min-width: 290px;
  overflow: hidden;
}

.pkg-img-col img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.pkg-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pkg-badge-bestseller {
  background: #059669;
}

.pkg-badge-popular {
  background: #0d9488;
}

.pkg-badge-limited {
  background: #d97706;
}

.pkg-info-col {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pkg-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.2;
}

.pkg-card-subtitle {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 12px;
}

.pkg-route-text {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}

.pkg-spec-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 16px;
}

.pkg-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-departure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.departure-label {
  font-size: 11px;
  color: #94a3b8;
  display: block;
  font-weight: 600;
}

.departure-val {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.seats-badge-green {
  color: #059669;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seats-badge-orange {
  color: #dc2626;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pkg-price-col {
  width: 210px;
  min-width: 210px;
  border-left: 1px solid #f1f5f9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.price-label-top {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.price-amount-main {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.per-person-text {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.price-discount-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.price-strikethrough {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 13px;
}

.discount-percentage {
  color: #059669;
  font-weight: 700;
  font-size: 13px;
}

.btn-green-view {
  background: #047857;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s ease;
  text-decoration: none;
  display: block;
}

.btn-green-view:hover {
  background: #065f46;
  color: #ffffff;
}

.btn-outline-seats {
  background: #ffffff;
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.btn-outline-seats:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

@media (max-width: 991px) {
  .package-list-card {
    flex-direction: column;
  }

  .pkg-img-col {
    width: 100%;
    height: 200px;
  }

  .pkg-price-col {
    width: 100%;
    border-left: none;
    border-top: 1px solid #f1f5f9;
  }
}