:root {
  --bk-orange: #d4622a;
  --bk-orange-light: #f5ede8;
  --bk-dark: #1a1a1a;
  --bk-gray: #f4f5f7;
  --bk-border: #e8e8e8;
  --bk-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
  --bk-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
  --bk-radius: 14px;
  --bk-trans: 0.3s ease;
}

[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim].in-view {
  opacity: 1;
  transform: translateY(0);
}

.bk-hero {
  min-height: 100vh;
  background: url('../images/wallpaper.jpg') center center / cover no-repeat;
  position: relative;
  padding-bottom: 0;
}

.bk-hero2 {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/wallpaper.jpg') center center / cover no-repeat;
  position: relative;
  padding-bottom: 0;
}

.bk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 12, 10, 0.55) 0%,
      rgba(10, 12, 10, 0.72) 60%,
      rgba(10, 12, 10, 0.88) 100%);
}

.bk-hero-text {
  padding-bottom: 36px;
}

.bk-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.bk-more-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: color var(--bk-trans), border-color var(--bk-trans);
}

.bk-more-link:hover {
  color: #fff;
  border-color: #fff;
}

.bk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--bk-trans);
}

.bk-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bk-orange);
  border-radius: 2px;
  transition: width var(--bk-trans);
}

.bk-tab.active,
.bk-tab:hover {
  color: #fff;
}

.bk-tab.active::after {
  width: 100%;
}

.bk-search-wrap {
  padding-bottom: 0;
}

.bk-form-grid {
  background: #fff;
  border-radius: var(--bk-radius);
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.18);
  border: 1px solid #d4d4d1;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px 24px;
}

.bk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-form-group--submit {
  display: flex;
  align-items: flex-end;
}

.bk-label {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.3px;
}

.bk-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  background: #f9f9f9;
  transition: border-color var(--bk-trans), box-shadow var(--bk-trans);
}

.bk-input-wrap:focus-within {
  border-color: black !important;
  box-shadow: none;
  background: #fff;
  border: 1px solid transparent;
}

.bk-search-bar {
  background: #fff;
  border-radius: var(--bk-radius);
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid #d4d4d1;
}

.bk-search-field {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  position: relative;
  min-width: 0;
  border-right: 1px solid #0000000d;
  background-color: #f9f9f9;
}

.bk-field-icon {
  color: #aaa;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bk-input {
  border: none;
  outline: none;
  font-size: 0.92rem;
  color: #333;
  background: transparent;
  width: 100%;
  padding: 0;
}

.bk-input::placeholder {
  color: #aaa;
}

.bk-input[type="date"] {
  color: #aaa;
}

.bk-input[type="date"]:valid {
  color: #333;
}

.bk-date-label {
  position: absolute;
  top: 10px;
  left: 52px;
  font-size: 0.72rem;
  color: #bbb;
  pointer-events: none;
  display: none;
}

.bk-divider {
  width: 1px;
  height: 32px;
  background: #e8e8e8;
  flex-shrink: 0;
}

.bk-find-btn {
  background: #181817;
  color: #ffff01;
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 20px 32px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--bk-trans), padding var(--bk-trans);
  flex-shrink: 0;
}

.bk-find-btn:hover {
  background: #000;
}

.bk-hero-text.in-view h5 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  color: white;
}

.bk-fleet {
  background: #fff;
  padding-top: 3% !important;
}

.bk-section-title {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--bk-dark);
  letter-spacing: -0.2px;
}

.bk-section-title strong {
  font-weight: 800;
}

.bk-car-card {
  background: #e9e9e921;
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius);
  overflow: hidden;
  box-shadow: var(--bk-shadow);
  transition: transform var(--bk-trans), box-shadow var(--bk-trans);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bk-car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bk-shadow-hover);
}

.bk-car-featured {
  border-color: #9e9e9e;
  transform: translateY(-10px);
  box-shadow: none;
}

.bk-car-featured:hover {
  transform: translateY(-16px);
}

.bk-car-img-wrap {
  overflow: hidden;
  height: 190px;
  background: #f9f9f9;
}

.bk-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background-color: #e0dde1;
}

.bk-car-card:hover .bk-car-img {
  transform: scale(1.06);
}

.bk-car-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-car-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-dark);
  margin: 0;
}

.bk-car-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bk-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0;
}

.bk-spec {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #000;
  background: var(--bk-gray);
  border-radius: 8px;
  padding: 7px 10px;
  font-weight: bold;
}

.bk-spec i {
  color: #252525;
  font-size: 0.85rem;
}

.bk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.bk-stars {
  color: var(--bk-orange);
  font-size: 0.78rem;
  display: flex;
  gap: 2px;
}

.bk-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bk-dark);
  float: right;
}

.bk-rent-btn {
  display: block;
  text-align: center;
  border: 1.5px solid #080b0c;
  color: #383838;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--bk-trans), color var(--bk-trans), transform var(--bk-trans);
}

.bk-rent-btn:hover {
  background: #080b0c;
  color: #ff0;
  transform: translateY(-1px);
}

.bk-rent-btn--solid {
  background: #198603;
  color: #fff;
  border: none;
}

.bk-rent-btn--solid:hover {
  background: #28af0d;
  color: #fff;
}

.bk-advantages {
  background: var(--bk-gray);
}

.bk-adv-card {
  background: #fff;
  border-radius: var(--bk-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--bk-shadow);
  height: 100%;
  transition: transform var(--bk-trans), box-shadow var(--bk-trans);
}

.bk-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bk-shadow-hover);
}

.bk-adv-featured {
  background: #4a4a4a;
  color: #fff;
}

.bk-adv-featured .bk-adv-title {
  color: #fff;
}

.bk-adv-featured .bk-adv-text {
  color: rgba(255, 255, 255, 0.65);
}

.bk-adv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bk-orange);
  border-radius: 50%;
  color: var(--bk-orange);
  font-size: 1.6rem;
  transition: background var(--bk-trans), color var(--bk-trans);
}

.bk-adv-card:hover .bk-adv-icon {
  background: var(--bk-orange);
  color: #fff;
}

.bk-adv-featured .bk-adv-icon {
  border-color: var(--bk-orange);
}

.bk-adv-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bk-dark);
  margin-bottom: 6px;
}

.bk-adv-text {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

.bk-testimonials {
  background: #fff;
}

.bk-testi-card {
  background: var(--bk-gray);
  border-radius: var(--bk-radius);
  padding: 30px;
  height: 100%;
  border: 1px solid var(--bk-border);
  transition: transform var(--bk-trans), box-shadow var(--bk-trans);
}

.bk-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bk-shadow-hover);
}

.bk-testi-featured {
  background: var(--bk-dark);
  border-color: var(--bk-dark);
}

.bk-testi-featured .bk-testi-text,
.bk-testi-featured .bk-testi-name,
.bk-testi-featured .bk-testi-role {
  color: #fff;
}

.bk-testi-featured .bk-testi-role {
  color: rgba(255, 255, 255, 0.55) !important;
}

.bk-testi-stars {
  color: var(--bk-orange);
  font-size: 0.82rem;
  display: flex;
  gap: 2px;
}

.bk-testi-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.bk-testi-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--bk-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bk-dark);
}

.bk-testi-role {
  font-size: 0.78rem;
  color: #999;
}

.bk-hero {
  min-height: 300px;
}

@media (max-width: 991px) {
  .bk-search-wrap {
    transform: none;
    padding: 0 0 30px;
    margin-top: 30px;
  }

  .bk-fleet {
    padding-top: 50px !important;
  }

  .bk-car-featured {
    transform: none;
  }

  .bk-car-featured:hover {
    transform: translateY(-6px);
  }
}

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

  .bk-search-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 12px;
  }

  .bk-search-field {
    flex: unset;
    width: 100%;
    border-bottom: 1px solid var(--bk-border);
  }

  .bk-divider {
    display: none;
  }

  .bk-find-btn {
    width: 100%;
    padding: 16px;
    text-align: center;
  }
}

.bk-tariff {
  background: #f4f5f7;
}

.tariff-wrapper {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.10);
  border: 1px solid #ddd;
}

.tariff-card-header {
  background: #000;
  color: #e0db0c;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 20px;
  letter-spacing: 0.2px;
}

.tariff-sub-header {
  background: #343232;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-top: 1px solid #ccc0;
  letter-spacing: 0.2px;
}

.tariff-sub-header--note {
  background: #ff5b5b;
  color: #090909;
}

.tariff-table {
  font-size: 0.875rem;
  margin: 0;
  border-collapse: collapse;
  width: 100%;
}

.tariff-table thead tr {
  background: #f5f5f5;
}

.tariff-table thead th {
  font-weight: 600;
  color: #063863;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  border-bottom: 1px solid #dddddd59;
  border-top: none;
  background-color: #e1e1e1;
}

.tariff-table tbody tr {
  border-bottom: 1px solid #ebebeb;
  transition: background 0.2s ease;
}

.tariff-table tbody tr:last-child {
  border-bottom: none;
}

.tariff-table tbody tr:hover {
  background: #fafafa;
}

.tariff-table tbody td {
  padding: 10px 20px;
  color: #333;
  vertical-align: middle;
  border: 1px solid #e5d9d9;
}

.tariff-table--alt tbody td {
  background: #fff;
}

.tariff-table--alt .tariff-label-col {
  font-weight: 600;
  color: #111;
  width: 40%;
}

.tariff-side-note {
  font-size: 0.88rem;
  color: #555;
  text-align: center;
  padding: 16px 20px;
  line-height: 1.6;
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ebebeb;
}

.tariff-note-orange {
  color: #c0392b;
  font-weight: 500;
}

.tariff-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fbfbfb;
}

.tariff-notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.87rem;
  color: #444;
  padding: 9px 20px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 17px;
}

.tariff-notes-list li:last-child {
  border-bottom: none;
}

.tariff-notes-list li i {
  color: #111;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0px;
}

.tariff-sub-header {
  background-color: #383633;
  padding: 10px 10px;
  color: white;
  font-weight: bold;
}

.tariff-wrapper2.in-view {
  border-bottom: 2px solid #f42e53;
}

.form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0d6efd;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 0px;
}

.form-check-input:checked {
  background-color: #f4534b;
  border-color: #f4534b;

}

.form-check-input:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.form-check-label {
  margin-left: 10px !important;
  line-height: 8px !important;
  font-weight: bold;
}

.tariff-wrapper3.in-view {
  border-bottom: 5px solid #000;
  padding: 0;
}

.ride-details-left {
  font-weight: bold;
}

.ride-details-right {
  font-weight: bold;
}

#tariff_filter_s1 {
  padding: 12px 10px;
  border-radius: 10px;
  margin-top: 25px;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #dee2e6;
  outline: 0;
  box-shadow: none;
}

#bookingForm {
  border: 3px solid #202020;
  border-radius: 9px;
  padding: 19px 26px;
  background-color: #e3f9df;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

#bookingForm .input-group-text {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
  white-space: nowrap;
  background-color: #e3e3e3;
  border: 1px solid #c7c7c7;
  border-radius: 6px 0px 0px 8px !important;
}

/* #bookingForm {
  border: 1px solid #e5dede;
  border-radius: 9px;
  padding: 19px 26px;
  background-color: #ffb300;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
} */

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dee2e6;
  box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #dee2e6;
  box-shadow: none;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #dee2e6;
  backgrund-image: none;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #dee2e5;
  padding-right: calc(1.5em + .75rem);
  background-image: none;
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #fd7b88;
  padding-right: calc(1.5em + .75rem);
  background-image: none;
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.bk-card-footer {
  justify-content: center !important;
}

.bk-card-footer button {
  margin-right: 10px;
  padding: 10px 28px !important;
}

.bk-rent-btn.go-back {
  background: #080b0c;
  color: #fff;
  border: none;
}

.bkbk-rent-btn.go-back {
  display: block;
  text-align: center;
  border: 1.5px solid #080b0c;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--bk-trans), color var(--bk-trans), transform var(--bk-trans);
  background-color: black;
}

#distanceResult {
  color: black;
  font-weight: bold;
}

.btn.btn-success.px-5.rounded-pill.fw-semibold {
  border-radius: 10px !important;
  background-color: black;
  border: none;
}

@media (max-width: 767px) {
  .tariff-side-note {
    border-left: none;
    border-top: 1px solid #ebebeb;
    padding: 12px 20px;
  }

  .tariff-card-header {
    font-size: 0.92rem;
  }
}