body {
  ```css
  /* =========================================
   PACKAGES HERO
========================================= */
  .packages-hero

{
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
  background: radial-gradient( circle at 20% 30%, rgba(168, 85, 247, .25), transparent 35% ), radial-gradient( circle at 80% 70%, rgba(37, 99, 235, .22), transparent 35% ), linear-gradient( 135deg, #160b2d, #29105c, #111827 );
  color: #fff;
}


.packages-hero-content {
  max-width: 750px;
  animation: packageHeroUp .9s ease;
}


.packages-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #ddd;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}


.packages-hero h1 {
  margin: 20px 0 12px;
  font-size: clamp(35px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
}


  .packages-hero h1 span {
    display: block;
    background: linear-gradient( 90deg, #A855F7, #38BDF8 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


.packages-hero p {
  max-width: 650px;
  margin: auto;
  color: #d4d4d8;
  font-size: 16px;
  line-height: 1.7;
}


@keyframes packageHeroUp {

  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   PACKAGE SECTION
========================================= */

.packages-section {
  padding: 75px 0;
  background: #fafaff;
}


.section-heading {
  margin-bottom: 45px;
}


.section-small-title {
  color: #6C2BD9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}


.section-heading h2 {
  margin: 10px 0;
  font-size: 38px;
  font-weight: 800;
  color: #202020;
}


  .section-heading h2 span {
    color: #6C2BD9;
  }


.section-heading p {
  color: #777;
  margin: 0 auto;
  max-width: 600px;
}


/* =========================================
   PACKAGE CARD
========================================= */

.package-card {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}


  .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
  }


/* =========================================
   PACKAGE IMAGE
========================================= */

.package-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eee;
}


  .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }


.package-card:hover .package-image img {
  transform: scale(1.08);
}


/* Image dark overlay */

.package-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0,0,0,.45), transparent 50% );
  pointer-events: none;
}


/* =========================================
   BADGES
========================================= */

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  color: #6C2BD9;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0,0,0,.12);
}


.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 20px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
}


/* =========================================
   PACKAGE CONTENT
========================================= */

.package-content {
  padding: 20px;
}


  .package-content h3 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 750;
    color: #202020;
    transition: color .3s ease;
  }


.package-card:hover .package-content h3 {
  color: #6C2BD9;
}


.package-description {
  min-height: 52px;
  margin-bottom: 16px;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================
   PACKAGE INFO
========================================= */

.package-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}


  .package-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 8px;
    background: #f7f5fb;
    color: #666;
    font-size: 10px;
    transition: all .3s ease;
  }


  .package-info i {
    color: #6C2BD9;
  }


.package-card:hover .package-info span {
  transform: translateY(-2px);
  background: #f1ebff;
}


/* =========================================
   PACKAGE BOTTOM
========================================= */

.package-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}


.package-price {
  color: #6C2BD9;
  font-size: 22px;
  font-weight: 800;
}


  .package-price small {
    color: #888;
    font-size: 10px;
    font-weight: 500;
  }


/* =========================================
   PACKAGE BUTTON
========================================= */

.package-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  padding: 0 13px;
  border-radius: 11px;
  color: #fff !important;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}


  .package-btn i {
    transition: transform .35s ease;
  }


  .package-btn:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.18);
  }


    .package-btn:hover i {
      transform: translateX(6px);
    }


  /* Shine */

  .package-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,.35);
    transform: skewX(-25deg);
  }


  .package-btn:hover::before {
    left: 140%;
    transition: left .6s ease;
  }


  .package-btn span,
  .package-btn i {
    position: relative;
    z-index: 2;
  }


/* =========================================
   DIFFERENT PACKAGE COLORS
========================================= */

.package-purple {
  border-color: rgba(108,43,217,.25);
}

  .package-purple .package-btn {
    background: linear-gradient(135deg,#6C2BD9,#A855F7);
  }


.package-blue {
  border-color: rgba(37,99,235,.25);
}

  .package-blue .package-btn {
    background: linear-gradient(135deg,#2563EB,#38BDF8);
  }


.package-orange {
  border-color: rgba(234,88,12,.25);
}

  .package-orange .package-btn {
    background: linear-gradient(135deg,#EA580C,#F97316);
  }


.package-green {
  border-color: rgba(5,150,105,.25);
}

  .package-green .package-btn {
    background: linear-gradient(135deg,#059669,#10B981);
  }


.package-cyan {
  border-color: rgba(8,145,178,.25);
}

  .package-cyan .package-btn {
    background: linear-gradient(135deg,#0891B2,#22D3EE);
  }


.package-red {
  border-color: rgba(220,38,38,.25);
}

  .package-red .package-btn {
    background: linear-gradient(135deg,#DC2626,#F87171);
  }


/* =========================================
   WHY CHOOSE US
========================================= */

.package-features {
  padding: 75px 0;
  background: #fff;
}


.feature-box {
  height: 100%;
  padding: 28px 20px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: all .4s ease;
  background: linear-gradient( 135deg, #f8f5ff 0%, #eadcff 45%, #f7f2ff 100% );
}


  .feature-box:hover {
    transform: translateY(-8px);
    border-color: #c4b5fd;
    box-shadow: 0 15px 35px rgba(108,43,217,.12);
  }


.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f1ebff;
  color: #6C2BD9;
  font-size: 25px;
  transition: all .35s ease;
}


.feature-box:hover .feature-icon {
  transform: rotate(-5deg) scale(1.08);
  background: #6C2BD9;
  color: #fff;
}


.feature-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}


.feature-box p {
  margin: 0;
}

/* =========================================
   PREMIUM TRAVEL MODAL
   TEAL + BLUE + ORANGE THEME
========================================= */

.package-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 80, 100, 0.22);
  animation: modalZoom 0.35s ease;
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* =========================================
   HEADER
========================================= */

.package-modal .modal-header {
  padding: 24px 28px;
  border: none;
  background: linear-gradient( 135deg, #007c91, #009fb7, #14b8a6 );
  color: white;
}

.package-modal .modal-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.package-modal .modal-header small {
  color: rgba(255,255,255,0.9) !important;
}

.package-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


/* =========================================
   BODY
========================================= */

.package-modal .modal-body {
  padding: 28px;
  background: linear-gradient( 180deg, #ffffff 0%, #f0fbfc 100% );
}


/* =========================================
   VEHICLE CARD
========================================= */

.vehicle-option {
  position: relative;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #e4eef0;
  background: #ffffff;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


  /* Decorative circle */

  .vehicle-option::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(20,184,166,0.12), rgba(14,165,233,0.10) );
    top: -90px;
    right: -90px;
    transition: 0.5s ease;
  }


  .vehicle-option:hover::before {
    transform: scale(1.8);
  }


  /* Hover */

  .vehicle-option:hover {
    transform: translateY(-8px);
    border-color: #14b8a6;
    box-shadow: 0 18px 40px rgba(0,130,150,0.16);
  }


  /* Selected */

  .vehicle-option.selected {
    border-color: #009fb7;
    background: linear-gradient( 145deg, #f0fdfa, #effaff );
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,183,0.20);
    animation: selectedPulse 0.4s ease;
  }


@keyframes selectedPulse {

  0% {
    transform: scale(0.96);
  }

  70% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}


/* =========================================
   CAR ICON
========================================= */

.vehicle-icon {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient( 135deg, #007c91, #14b8a6 );
  box-shadow: 0 8px 20px rgba(0,140,155,0.25);
  animation: floatingCar 3s ease-in-out infinite;
}


@keyframes floatingCar {

  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}


.vehicle-icon i {
  font-size: 30px;
  color: white;
}


/* =========================================
   TITLE
========================================= */

.vehicle-option h5 {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #173b43;
}


/* =========================================
   DESCRIPTION
========================================= */

.vehicle-option p {
  position: relative;
  z-index: 2;
  color: #718187;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}


/* =========================================
   VEHICLE INFO
========================================= */

.vehicle-info {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}


  .vehicle-info span {
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #e8f8f8;
    color: #007c91;
    transition: 0.25s ease;
  }


.vehicle-option:hover .vehicle-info span {
  background: #d9f3f2;
  transform: translateY(-2px);
}


.vehicle-info i {
  margin-right: 5px;
}


/* =========================================
   PRICE
========================================= */

.vehicle-price {
  position: relative;
  z-index: 2;
  font-size: 27px;
  font-weight: 900;
  background: linear-gradient( 90deg, #007c91, #009fb7 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


  .vehicle-price small {
    font-size: 13px;
    font-weight: 500;
    color: #777;
    -webkit-text-fill-color: #777;
  }


/* =========================================
   CHECK ICON
========================================= */

.vehicle-select {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  font-size: 27px;
  color: #d7e2e4;
  transition: 0.3s ease;
}


.vehicle-option.selected .vehicle-select {
  color: #009fb7;
  animation: checkBounce 0.45s ease;
}


@keyframes checkBounce {

  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}


/* =========================================
   SELECTED SUMMARY
========================================= */

.selected-package-summary {
  margin-top: 25px;
  padding: 17px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient( 135deg, #e8fafa, #eefaff );
  border: 1px solid #c7edef;
  animation: summarySlide 0.4s ease;
}


@keyframes summarySlide {

  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.selected-package-summary strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #006b7a;
}


.selected-package-summary span {
  display: block;
  font-size: 12px;
  color: #777;
}


.summary-price {
  font-size: 21px;
  font-weight: 900;
  color: #008b9e;
}


  .summary-price small {
    font-size: 12px;
    color: #777;
  }


/* =========================================
   FOOTER
========================================= */

.package-modal .modal-footer {
  padding: 18px 28px;
  border-top: 1px solid #e8eeee;
  background: white;
}


/* =========================================
   CONTINUE BOOKING
========================================= */

#continueBookingBtn {
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 700;
  color: white;
  background: linear-gradient( 135deg, #007c91, #009fb7, #14b8a6 );
  box-shadow: 0 8px 20px rgba(0,140,155,0.25);
  transition: all 0.3s ease;
}


  #continueBookingBtn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,140,155,0.35);
  }


    #continueBookingBtn:not(:disabled):hover i {
      transform: translateX(5px);
    }


  #continueBookingBtn i {
    transition: 0.3s ease;
  }


  #continueBookingBtn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
  }


/* =========================================
   CANCEL
========================================= */

.package-modal .btn-light {
  border-radius: 12px;
  padding: 11px 20px;
  font-weight: 600;
  border: 1px solid #dce5e7;
  transition: 0.25s ease;
}


  .package-modal .btn-light:hover {
    background: #f2f7f8;
    transform: translateY(-2px);
  }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .package-modal .modal-body {
    padding: 18px;
  }

  .package-modal .modal-header {
    padding: 20px;
  }

  .package-modal .modal-footer {
    padding: 15px 20px;
  }

  .vehicle-option {
    padding: 20px;
  }

    .vehicle-option:hover {
      transform: none;
    }
}



.travel-options-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 20px 0 25px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  /* Entrance animation */
  animation: travelFadeIn 0.6s ease-out;
}

.travel-option-title {
  font-weight: 700;
  color: #222;
  margin-right: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

  .travel-option-title:hover {
    transform: translateX(3px);
  }

  .travel-option-title i {
    color: #0d6efd;
    margin-right: 6px;
    transition: transform 0.4s ease;
  }

  .travel-option-title:hover i {
    transform: rotate(-8deg) scale(1.15);
  }

.travel-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: transform 0.25s ease;
}

  .travel-radio:hover {
    transform: translateY(-2px);
  }

  .travel-radio input {
    display: none;
  }

.radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.travel-radio:hover .radio-circle {
  border-color: #0d6efd;
  transform: scale(1.12);
}

/* Selected radio */
.travel-radio input:checked + .radio-circle {
  border-color: #0d6efd;
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}

  /* Inner dot */
  .travel-radio input:checked + .radio-circle::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    animation: radioPop 0.3s ease-out;
  }

/* Text animation */
.radio-text {
  transition: color 0.3s ease, transform 0.3s ease;
}

.travel-radio input:checked ~ .radio-text {
  color: #0d6efd;
  transform: translateX(2px);
}

/* Entrance animation */
@keyframes travelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Radio click animation */
@keyframes radioPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .travel-options-box {
    flex-wrap: wrap;
    gap: 15px;
  }

  .travel-option-title {
    width: 100%;
  }
}
