/* =========================================================
   NANDAS79 TRAVELS
   PREMIUM BOOK NOW PAGE
========================================================= */

html,
body {
  overflow-x: hidden;
}


/* =========================================================
   HERO
========================================================= */

.booking-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient( circle at 85% 25%, rgba(168,85,247,.18), transparent 35% ), linear-gradient( 135deg, #faf7ff, #ffffff 55%, #f4edff );
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 75px 0;
}

.booking-eyebrow {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(108,43,217,.08);
  color: #6C2BD9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.booking-hero h1 {
  margin-bottom: 18px;
  color: #17132b;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
}

  .booking-hero h1 span {
    background: linear-gradient( 90deg, #6C2BD9, #A855F7, #D946EF );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.booking-hero p {
  max-width: 620px;
  margin: auto;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
   GLOW
========================================================= */

.booking-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.booking-glow-one {
  width: 300px;
  height: 300px;
  right: 5%;
  top: 10%;
  background: rgba(168,85,247,.13);
  animation: bookingGlowOne 9s ease-in-out infinite;
}

.booking-glow-two {
  width: 250px;
  height: 250px;
  left: -100px;
  bottom: -100px;
  background: rgba(108,43,217,.09);
  animation: bookingGlowTwo 11s ease-in-out infinite;
}

@keyframes bookingGlowOne {

  0%,100% {
    transform: translate(0,0) scale(1);
  }

  50% {
    transform: translate(-30px,25px) scale(1.12);
  }
}

@keyframes bookingGlowTwo {

  0%,100% {
    transform: translate(0,0) scale(1);
  }

  50% {
    transform: translate(30px,-25px) scale(1.1);
  }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.booking-section {
  padding: 80px 0;
  background: linear-gradient( 180deg, #faf8ff, #ffffff );
}


/* =========================================================
   FORM CARD
========================================================= */

.booking-form-card {
  overflow: hidden;
  padding: 40px;
  border: 1px solid #eee8f7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(60,30,100,.09);
  animation: bookingReveal .8s ease both;
}

@keyframes bookingReveal {

  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   STEPS
========================================================= */

.booking-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

  .booking-step > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0e9fc;
    color: #8b7aa6;
    font-size: 13px;
    font-weight: 800;
  }

  .booking-step.active > span {
    background: linear-gradient( 135deg, #6C2BD9, #A855F7 );
    color: #fff;
    box-shadow: 0 8px 20px rgba(108,43,217,.25);
  }

  .booking-step strong {
    display: block;
    color: #272031;
    font-size: 12px;
  }

  .booking-step small {
    display: block;
    margin-top: 2px;
    color: #999;
    font-size: 9px;
  }

.booking-step-line {
  flex: 1;
  height: 1px;
  margin: 0 20px;
  background: #e9e2f2;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.booking-form-section {
  padding: 10px 0 35px;
}

.customer-section {
  padding-top: 35px;
  border-top: 1px solid #eeeaf4;
}

.booking-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.booking-title-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient( 135deg, #f0e7ff, #faf6ff );
  color: #6C2BD9;
  font-size: 20px;
}

.booking-section-title span {
  color: #8e849e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.booking-section-title h2 {
  margin: 3px 0 0;
  color: #201b31;
  font-size: 25px;
  font-weight: 800;
}


/* =========================================================
   INPUTS
========================================================= */

.booking-form-card label {
  display: block;
  margin-bottom: 8px;
  color: #312a42;
  font-size: 11px;
  font-weight: 700;
}

.booking-input,
.booking-textarea {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #e8e1f1;
  border-radius: 13px;
  background: #faf9fc;
  transition: .3s ease;
}

.booking-input {
  height: 53px;
  padding: 0 15px;
}

.booking-textarea {
  align-items: flex-start;
  padding: 15px;
}

  .booking-input i,
  .booking-textarea i {
    margin-right: 11px;
    color: #8B5CF6;
    transition: .3s;
  }

  .booking-input input,
  .booking-input select,
  .booking-textarea textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #333;
    font-family: inherit;
    font-size: 12px;
  }

    .booking-input input::placeholder,
    .booking-textarea textarea::placeholder {
      color: #aaa;
    }

.booking-input select {
  cursor: pointer;
}

.booking-textarea textarea {
  resize: vertical;
}

.booking-input:hover,
.booking-textarea:hover {
  border-color: #cbb7ea;
  transform: translateY(-2px);
}

.booking-input:focus-within,
.booking-textarea:focus-within {
  border-color: #8B5CF6;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(108,43,217,.07);
}

  .booking-input:focus-within i,
  .booking-textarea:focus-within i {
    transform: scale(1.12);
    color: #6C2BD9;
  }


/* =========================================================
   TERMS
========================================================= */

.booking-terms {
  margin-top: 5px;
  padding-top: 25px;
  border-top: 1px solid #eeeaf4;
}

.booking-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

  .booking-checkbox input {
    display: none;
  }

.checkmark {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 1px solid #d8cdea;
  border-radius: 5px;
  background: #fff;
  transition: .3s;
}

.booking-checkbox input:checked + .checkmark {
  background: #6C2BD9;
  border-color: #6C2BD9;
}

.booking-checkbox span:last-child {
  color: #888;
  font-size: 10px;
  line-height: 1.6;
}


/* =========================================================
   CONFIRM BUTTON
========================================================= */

.confirm-booking-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  margin-top: 25px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient( 135deg, #6C2BD9, #A855F7 );
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(108,43,217,.25);
  transition: .35s;
}

  .confirm-booking-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(108,43,217,.35);
  }

  .confirm-booking-btn i {
    margin-left: 10px;
    transition: .35s;
  }

  .confirm-booking-btn:hover i {
    transform: translateX(7px);
  }


/* =========================================================
   BOOKING SUMMARY
========================================================= */

.booking-summary {
  position: sticky;
  top: 25px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #eee8f7;
  box-shadow: 0 25px 65px rgba(60,30,100,.10);
  animation: summaryReveal 1s ease .15s both;
}

@keyframes summaryReveal {

  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.summary-label {
  padding: 25px 25px 10px;
  color: #8b849c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


/* =========================================================
   SELECTED CAR
========================================================= */

.selected-car-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: radial-gradient( circle, #f7f2ff, #eee8f9 );
}

  .selected-car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: .6s;
  }

.booking-summary:hover
.selected-car-image img {
  transform: scale(1.06);
}

.selected-car-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 50px;
  background: #6C2BD9;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.selected-car-info {
  padding: 22px 25px 18px;
}

  .selected-car-info > span {
    color: #9b91a9;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
  }

  .selected-car-info h3 {
    margin: 5px 0 8px;
    color: #201b31;
    font-size: 24px;
    font-weight: 800;
  }

.selected-rating {
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
}

  .selected-rating small {
    margin-left: 7px;
    color: #999;
    font-size: 9px;
    font-weight: 500;
  }


/* =========================================================
   SUMMARY SPECS
========================================================= */

.summary-specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0 25px;
  padding: 18px 0;
  border-top: 1px solid #eeeaf4;
  border-bottom: 1px solid #eeeaf4;
}

  .summary-specs div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 9px;
    text-align: center;
  }

  .summary-specs i {
    color: #6C2BD9;
    font-size: 16px;
  }


/* =========================================================
   PRICE
========================================================= */

.price-summary {
  padding: 22px 25px;
}

  .price-summary > div:not(.summary-divider) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
  }

  .price-summary span {
    color: #888;
    font-size: 10px;
  }

  .price-summary strong {
    color: #272031;
    font-size: 12px;
  }

.summary-divider {
  height: 1px;
  margin: 18px 0;
  background: #eeeaf4;
}

.total-price {
  margin-bottom: 0 !important;
}

  .total-price span {
    color: #272031;
    font-size: 12px;
    font-weight: 700;
  }

  .total-price strong {
    color: #6C2BD9;
    font-size: 22px;
    font-weight: 800;
  }


/* =========================================================
   SUPPORT
========================================================= */

.booking-support {
  display: flex;
  gap: 13px;
  margin: 0 20px 20px;
  padding: 18px;
  border-radius: 17px;
  background: #f8f4ff;
}

.support-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: #6C2BD9;
  box-shadow: 0 5px 15px rgba(108,43,217,.08);
}

.booking-support strong {
  color: #30283d;
  font-size: 11px;
}

.booking-support p {
  margin: 4px 0 6px;
  color: #888;
  font-size: 9px;
  line-height: 1.5;
}

.booking-support a {
  color: #6C2BD9;
  font-size: 9px;
  font-weight: 800;
}

  .booking-support a i {
    margin-left: 3px;
  }


/* =========================================================
   TRUST
========================================================= */

.booking-trust {
  padding: 65px 0;
  background: #fff;
  border-top: 1px solid #f0ebf6;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

  .trust-item > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #f3edff;
    color: #6C2BD9;
    font-size: 19px;
  }

  .trust-item strong {
    display: block;
    color: #30283d;
    font-size: 12px;
  }

  .trust-item span {
    display: block;
    margin-top: 3px;
    color: #999;
    font-size: 9px;
  }


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px) {

  .booking-hero h1 {
    font-size: 45px;
  }

  .booking-summary {
    position: relative;
    top: 0;
  }

  .booking-form-card {
    padding: 30px;
  }
}


@media(max-width:576px) {

  .booking-hero {
    min-height: 340px;
  }

  .booking-hero-content {
    padding: 60px 15px;
  }

  .booking-hero h1 {
    font-size: 36px;
  }

  .booking-hero p {
    font-size: 13px;
  }

  .booking-section {
    padding: 50px 0;
  }

  .booking-form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .booking-step-header {
    margin-bottom: 30px;
  }

  .booking-step-line {
    margin: 0 10px;
  }

  .booking-step strong {
    font-size: 10px;
  }

  .booking-step small {
    display: none;
  }

  .booking-section-title h2 {
    font-size: 21px;
  }

  .selected-car-image {
    height: 170px;
  }

  .trust-item {
    justify-content: flex-start;
  }
}
