@import url("https://use.typekit.net/vez6jic.css");
/*====================================
=            Variables               =
====================================*/
.registration-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 0;
  border-radius: 12px;
}

.wizard {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  align-items: stretch;
}
.wizard .wizard-step {
  flex: 1;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #fffbef;
  cursor: pointer;
  transition: 0.3s;
}
.wizard .wizard-step .step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.wizard .wizard-step .step-circle .step-number {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #9c9c9c;
  line-height: 1;
}
.wizard .wizard-step .step-circle .step-check {
  display: none;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}
.wizard .wizard-step span {
  font-size: 18px;
  color: #9c9c9c;
  transition: 0.3s;
}
.wizard .wizard-step:hover {
  background: #fff5d2;
}

/*====================================
=            Active                  =
====================================*/
.wizard-step.active {
  background: #ffcc02;
}
.wizard-step.active .step-circle {
  background: transparent;
  border-color: #666;
}
.wizard-step.active .step-circle .step-number {
  color: #111111;
}
.wizard-step.active > span {
  color: #111111;
  font-weight: 600;
}

/*====================================
=          Completed                 =
====================================*/
.wizard-step.completed {
  background: #fff2be;
}
.wizard-step.completed .step-circle {
  background: #ffcc02;
  border-color: #ffcc02;
}
.wizard-step.completed .step-circle .step-number {
  display: none;
}
.wizard-step.completed .step-circle .step-check {
  display: block;
}
.wizard-step.completed > span {
  color: #111111;
  font-weight: 600;
}

/* Content */
.register-wrapper .step-content {
  display: none;
  animation: fade 0.35s;
}
.register-wrapper .step-content h2 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.register-wrapper .step-content.active {
  display: block;
}

.terms-link {
  font-size: 17px;
  font-weight: 600;
  color: #0a7986;
  text-decoration: underline;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wizard-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.wizard-buttons button {
  border: none;
  background: #ffc20e;
  padding: 14px 35px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.wizard-buttons button:hover {
  background: #e7ae00;
}
.wizard-buttons button:disabled {
  background: #ddd;
  cursor: not-allowed;
}

.registration-intro {
  margin-bottom: 20px;
}
.registration-intro h2 {
  margin-bottom: 10px;
}
.registration-intro p:last-child {
  margin-bottom: 0;
}

.review-section h4 {
  font-size: 26px;
  font-weight: 600;
}

.review-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: #fff9e8;
  border: 1px solid #ffcc02;
  border-radius: 12px;
  margin-bottom: 32px;
}
.review-card .review-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffcc02;
  border-radius: 50%;
}
.review-card .review-icon img {
  width: 34px;
  height: 34px;
}
.review-card .review-icon i {
  font-size: 34px;
  color: #111111;
}
.review-card .review-content h3 {
  margin-bottom: 10px;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}
.review-card .review-content p {
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  max-width: 720px;
}

.review-section {
  margin-bottom: 20px;
}
.review-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #cfcfcf;
}
.review-section-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #6b6b6b;
  text-transform: uppercase;
}

.edit-section {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.edit-section i {
  color: #ffcc02;
  font-size: 18px;
}
.edit-section:hover {
  color: #ffcc02;
}

.review-item label {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 400;
  color: #9a9a9a;
}
.review-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.password-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #198754 !important;
}
.password-status i {
  font-size: 18px;
}

/*====================================
Security List
====================================*/
.security-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.security-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}
.security-list li i {
  color: #16a34a;
  font-size: 18px;
}

/*====================================
Confirmation Box
====================================*/
.confirmation-box {
  margin-top: 10px;
  padding: 28px;
  background: #fff9e8;
  border: 1px solid #ffcc02;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .review-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/*====================================
Responsive
====================================*/
@media (max-width: 991px) {
  .review-card {
    padding: 24px;
    gap: 18px;
  }
  .review-card .review-icon {
    width: 60px;
    height: 60px;
  }
  .review-card .review-icon img,
  .review-card .review-icon i {
    width: 28px;
    height: 28px;
    font-size: 28px;
  }
  .review-card .review-content h3 {
    font-size: 28px;
  }
  .review-card .review-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .review-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-card .review-content h3 {
    font-size: 24px;
  }
  .review-card .review-content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .wizard {
    flex-direction: column;
  }
  .wizard .wizard-step {
    width: 100%;
    padding: 10px 8px;
  }
}
/*====================================
Registration Success
====================================*/
.register-wrapper .registration-success {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.register-wrapper .registration-success .success-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffcc02;
  border-radius: 50%;
  margin-bottom: 32px;
  position: relative;
}
.register-wrapper .registration-success .success-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgb(255, 212.2245059289, 42.8) 0%, #ffcc02 100%);
}
.register-wrapper .registration-success .success-icon i {
  position: relative;
  font-size: 54px;
  color: #ffffff;
  z-index: 2;
}
.register-wrapper .registration-success h2 {
  margin-bottom: 18px;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
}
.register-wrapper .registration-success .success-message {
  max-width: 420px;
  margin-bottom: 32px;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
.register-wrapper .registration-success .redirect-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: hsl(0, 0%, -5%);
}

/*====================================
Responsive
====================================*/
@media (max-width: 991px) {
  .registration-success {
    min-height: 500px;
  }
  .registration-success .success-icon {
    width: 90px;
    height: 90px;
  }
  .registration-success .success-icon i {
    font-size: 42px;
  }
  .registration-success h2 {
    font-size: 34px;
  }
  .registration-success .success-message {
    font-size: 18px;
  }
  .registration-success .redirect-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .registration-success {
    min-height: 420px;
  }
  .registration-success h2 {
    font-size: 28px;
  }
  .registration-success .success-message {
    font-size: 16px;
  }
  .registration-success .redirect-text {
    font-size: 16px;
  }
}
/*====================================
=            Form Controls           =
====================================*/
.custom-form .form-group {
  position: relative;
  margin-bottom: 10px;
}
.custom-form {
  /*==============================
    Inputs / Select / Textarea
    ==============================*/
}
.custom-form .form-control,
.custom-form .form-select {
  height: 48px;
  padding: 0 20px;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #111111;
  border-radius: 12px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}
.custom-form .form-control:focus,
.custom-form .form-select:focus {
  border-color: #ffcc02;
  box-shadow: 0 0 0 4px rgba(255, 204, 2, 0.15);
}
.custom-form .form-control::-moz-placeholder, .custom-form .form-select::-moz-placeholder {
  color: rgb(76.5, 76.5, 76.5);
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  opacity: 1;
}
.custom-form .form-control::placeholder,
.custom-form .form-select::placeholder {
  color: rgb(76.5, 76.5, 76.5);
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  opacity: 1;
}
.custom-form .form-control:disabled,
.custom-form .form-select:disabled {
  background: #f8f8f8;
  color: #999;
  cursor: not-allowed;
}
.custom-form {
  /*==============================
    Select
    ==============================*/
}
.custom-form .form-select {
  padding-right: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-color: #111111;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}
.custom-form {
  /*==============================
    Textarea
    ==============================*/
}
.custom-form textarea.form-control {
  min-height: 140px;
  padding: 16px 20px;
  resize: vertical;
}
.custom-form {
  /*==============================
    Label
    ==============================*/
}
.custom-form label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.custom-form {
  /*==============================
    Validation Message
    ==============================*/
}
.custom-form .validation-message {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.custom-form .validation-message.error {
  color: #dc3545;
}
.custom-form .validation-message.success {
  color: #198754;
}
.custom-form {
  /*==============================
    Error State
    ==============================*/
}
.custom-form .form-control.error,
.custom-form .form-select.error {
  border-color: #dc3545;
}
.custom-form .form-control.error:focus,
.custom-form .form-select.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}
.custom-form {
  /*==============================
    Success State
    ==============================*/
}
.custom-form .form-control.success,
.custom-form .form-select.success {
  border-color: #198754;
}
.custom-form .form-control.success:focus,
.custom-form .form-select.success:focus {
  border-color: #198754;
  box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.12);
}
.custom-form {
  /*==============================
    Bootstrap Validation
    ==============================*/
}
.custom-form .is-invalid {
  border-color: #dc3545 !important;
}
.custom-form .is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}
.custom-form .is-valid {
  border-color: #198754 !important;
}
.custom-form .is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.12);
}
.custom-form .invalid-feedback {
  display: block;
  margin-top: 4px;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #dc3545;
}
.custom-form .valid-feedback {
  display: block;
  margin-top: 4px;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #198754;
}

.input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .btn-add-iata {
  width: 54px;
  min-width: 54px;
  height: 48px;
  background: #ffcc02;
  border: 1px solid #ffcc02;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.input-group .btn-add-iata i {
  font-size: 24px;
  font-weight: 700;
}
.input-group .btn-add-iata:hover {
  background: rgb(231.5, 184.8339920949, 0);
  border-color: rgb(231.5, 184.8339920949, 0);
}

.review-detail-scroll {
  height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.custom-check .form-check-input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid #ffcc02;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: none;
}
.custom-check .form-check-input:focus {
  box-shadow: none;
  border-color: #ffcc02;
}
.custom-check .form-check-input:checked {
  background-color: #ffcc02;
  border-color: #ffcc02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M7.6 14.2L3.8 10.4l-1.4 1.4 5.2 5.2L17.6 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.custom-check .form-check-label {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}
.custom-check .form-check-label a {
  color: #007b8f;
  text-decoration: underline;
}
.custom-check .form-check-label a:hover {
  color: #111111;
}

.registration-footer {
  background: #111111;
  border-radius: 0 0 16px 16px;
  padding: 10px 20px;
  text-align: center;
}
.registration-footer p {
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.registration-footer a {
  color: #ffcc02;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.registration-footer a:hover {
  color: #ffffff;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.password-wrapper .toggle-password .eye-icon {
  width: 22px;
  height: 22px;
}

.checkbox-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.checkbox-container .checkbox-section input[type=checkbox] {
  display: none;
}
.checkbox-container .checkbox-section label {
  position: relative;
  cursor: pointer;
  margin: 0;
  line-height: 1.8;
  color: #111111;
  white-space: normal;
  display: flex;
  align-items: start;
  pointer-events: all;
  padding: 0;
  background-color: transparent;
}
.checkbox-container .checkbox-section label::before {
  content: "";
  background-color: transparent;
  border: 2px solid #111111;
  padding: 10px;
  display: inline-block;
  margin-right: 5px;
}
.checkbox-container .checkbox-section input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #111111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.error-text {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 6px;
}

.error-text.show-error {
  display: block;
}

/* Responsive */
@media (max-width: 767px) {
  .registration-footer {
    padding: 16px;
  }
  .registration-footer p {
    font-size: 14px;
  }
}
/*====================================
Dashboard Header
====================================*/
.dashboard-header-section {
  padding: 70px 0 50px;
  background: #F6F6F6;
}

.dashboard-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.dashboard-header p {
  max-width: 650px;
  margin: 0 auto;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

/*====================================
Dashboard Cards
====================================*/
.dashboard-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 24px 24px 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/*====================================
Card Header
====================================*/
.dashboard-card .card-header {
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 28px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-title h3 {
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 204, 2, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon i {
  color: #111111;
  font-size: 18px;
}

/*====================================
Point Summary
====================================*/
.points-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.points-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #f0d98a;
}
.points-list li span {
  font-size: 18px;
  color: #000000;
}
.points-list li strong {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.current-balance {
  margin: 0 0 30px 0;
  padding-top: 20px;
  border-top: 2px solid #ffcc02;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #111111;
}
.current-balance strong {
  color: #ffcc02;
  font-weight: 700;
}

/*====================================
Reward Card
====================================*/
.reward-box {
  height: 170px;
  background: #f5f5fb;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.reward-box img {
  max-width: 95px;
  transition: all 0.3s ease;
}

.redemption-card:hover .reward-box img {
  transform: scale(1.08);
}

.reward-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 30px;
}
.reward-text strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: #111111;
}

/*====================================
Button
====================================*/
.dashboard-card .card-footer {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: auto;
  text-align: left;
  padding-left: 62px;
}

/*====================================
Referral & Trip Cards
====================================*/
.referral-card,
.trip-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.referral-card:hover,
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/*====================================
Referral Card
====================================*/
.referral-card.bg-white {
  background: #ffffff;
  padding: 32px 32px 100px 32px;
  display: flex;
  flex-direction: column;
}

.referral-card .card-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.referral-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex;
  justify-content: center;
  align-items: center;
}
.referral-card .card-icon i {
  font-size: 20px;
  color: #111111;
}
.referral-card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
}

.referral-points {
  margin-top: 8px;
}
.referral-points .value {
  font-size: 64px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}
.referral-points .unit {
  font-size: 34px;
  font-weight: 400;
  color: #111111;
}

.referral-card .card-body {
  margin-top: 30px;
  flex: 1;
  padding-left: 62px;
}
.referral-card .card-body p {
  max-width: 320px;
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
}

/*====================================
Trip Card
====================================*/
.trip-card {
  background: #ffcc02;
  padding: 32px;
}

.trip-content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.trip-card .card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trip-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trip-card .card-icon.black {
  background: #111111;
}
.trip-card .card-icon.black i {
  color: #ffcc02;
}
.trip-card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
}

.trip-card .card-body {
  margin: 26px 0 34px;
  padding-left: 62px;
}
.trip-card .card-body p {
  font-size: 20px;
  line-height: 1.8;
  color: #111111;
}

/*====================================
Car Image
====================================*/
.trip-image {
  position: absolute;
  right: -20px;
  bottom: -15px;
  width: 280px;
  z-index: 1;
}
.trip-image img {
  width: 100%;
  transition: all 0.3s ease;
}

.trip-card:hover .trip-image img {
  transform: scale(1.05);
}

/*====================================
Buttons
====================================*/
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  height: 50px;
  padding: 0 26px;
  background: #ffffff;
  color: #111111;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

/*====================================
Responsive
====================================*/
@media (max-width: 991px) {
  .dashboard-header-section {
    padding: 60px 0 40px;
  }
  .dashboard-header h1 {
    font-size: 42px;
  }
  .dashboard-header p {
    font-size: 16px;
  }
  .referral-card,
  .trip-card {
    min-height: auto;
  }
  .trip-content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .dashboard-header-section {
    padding: 50px 0 35px;
  }
  .dashboard-header h1 {
    font-size: 34px;
  }
  .dashboard-header p {
    font-size: 15px;
    line-height: 1.7;
  }
  .referral-card,
  .trip-card {
    padding: 24px;
  }
  .referral-card h3,
  .trip-card h3 {
    font-size: 30px;
  }
  .referral-points .value {
    font-size: 48px;
  }
  .referral-points .unit {
    font-size: 28px;
  }
  .trip-card .card-body p {
    font-size: 17px;
  }
  .trip-image {
    width: 200px;
  }
}
/*====================================
Gift Cards Section
====================================*/
.gift-card-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff8db 0%, #fffdf6 100%);
}

/*====================================
Wrapper
====================================*/
.gift-card-wrapper {
  max-width: 100%;
  margin: auto;
}

.gift-slider-wrapper {
  position: relative;
  padding: 0 42px;
}

/*====================================
Header
====================================*/
.gift-header {
  margin-bottom: 35px;
}
.gift-header .gift-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
}
.gift-header .gift-icon i {
  font-size: 32px;
  color: #111111;
}
.gift-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111111;
}

/*====================================
Slider Container
====================================*/
.gift-card-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  position: relative;
}

/*====================================
Category
====================================*/
.gift-category {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
}

/*====================================
Slider
====================================*/
.gift-slider .slick-track {
  display: flex;
  align-items: center;
}
.gift-slider .slick-slide {
  padding: 0 8px;
}

/*====================================
Gift Card
====================================*/
.gift-item {
  padding: 8px;
}

.gift-logo {
  height: auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.gift-logo img {
  max-width: 100%;
  max-height: 92px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.gift-logo span {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  color: #555;
}
.gift-logo:hover {
  border-color: #ffcc02;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.gift-logo:hover img {
  transform: scale(1.05);
}
.gift-logo:hover span {
  color: #111111;
}

/*====================================
Custom Arrows
====================================*/
.gift-prev,
.gift-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.gift-prev i,
.gift-next i {
  font-size: 14px;
  color: #000000;
}
.gift-prev:hover,
.gift-next:hover {
  background: #ffcc02;
  border-color: #ffcc02;
}
.gift-prev:hover i,
.gift-next:hover i {
  color: #111111;
}

.gift-prev {
  left: 0;
}

.gift-next {
  right: 0;
}

/* Remove Slick Default */
.slick-prev:before,
.slick-next:before {
  display: none;
}

/*====================================
Gift Category
====================================*/
.gift-category-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff9e5 0%, #ffffff 100%);
}

.gift-category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.gift-category-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.gift-category-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.gift-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

/*====================================
Responsive
====================================*/
@media (max-width: 991px) {
  .gift-card-box {
    padding: 22px;
  }
  .gift-header h2 {
    font-size: 28px;
  }
  .gift-category-card {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .gift-card-section {
    padding: 60px 0;
  }
  .gift-header .gift-icon {
    width: 60px;
    height: 60px;
  }
  .gift-header .gift-icon i {
    font-size: 26px;
  }
  .gift-header h2 {
    font-size: 24px;
  }
  .gift-prev {
    left: -10px;
  }
  .gift-next {
    right: -10px;
  }
  .gift-category-card h4 {
    font-size: 18px;
  }
  .gift-item h6 {
    font-size: 11px;
  }
}
@media (min-width: 576px) {
  .gift-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .gift-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .gift-logo img {
    max-width: 100%;
    max-height: 120px;
  }
}
@media screen and (min-width: 992px) {
  .gift-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .gift-row {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*====================================
Points History Table
====================================*/
.points-history-table-section {
  margin: 0;
}

/*====================================
Responsive
====================================*/
.table-responsive {
  overflow-x: auto;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/*====================================
Table
====================================*/
.points-history-table {
  width: 100%;
  min-width: 1600px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

/*====================================
Header
====================================*/
.points-history-table thead th {
  background: #ffcc02;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 28px 18px;
  line-height: 1.5;
  vertical-align: middle;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #000;
  min-width: 155px;
}

.points-history-table thead th:first-child {
  border-top-left-radius: 32px;
}

.points-history-table thead th:last-child {
  border-top-right-radius: 32px;
  border-right: none;
}

/*====================================
Body
====================================*/
.points-history-table tbody td {
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  text-align: center;
  vertical-align: middle;
  padding: 20px 18px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transition: all 0.3s ease;
}

.points-history-table tbody td:last-child {
  border-right: none;
}

/*====================================
Last Row
====================================*/
.points-history-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 32px;
}

.points-history-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 32px;
}

/*====================================
Hover
====================================*/
.points-history-table tbody tr:hover td {
  background: #FFFBEA;
}

/*====================================
Alternate Rows
====================================*/
.points-history-table tbody tr:nth-child(even) td {
  background: #FCFCFC;
}

.points-history-table tbody tr:nth-child(even):hover td {
  background: #FFFBEA;
}

/*====================================
Scrollbar
====================================*/
.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 20px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #ffcc02;
  border-radius: 20px;
}

/*====================================
Responsive
====================================*/
@media (max-width: 1200px) {
  .points-history-table {
    min-width: 1500px;
  }
}
@media (max-width: 991px) {
  .points-history-table thead th {
    font-size: 15px;
    padding: 22px 16px;
  }
  .points-history-table tbody td {
    font-size: 15px;
    padding: 18px 16px;
  }
}
@media (max-width: 767px) {
  .points-history-table {
    min-width: 1400px;
  }
  .points-history-table thead th {
    font-size: 14px;
    padding: 18px 14px;
  }
  .points-history-table tbody td {
    font-size: 14px;
    padding: 16px 14px;
  }
}
/*====================================
Accordion
====================================*/
.car-accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 28px 20px;
  transition: all 0.3s ease;
}
.accordion-header span {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
}
.accordion-header i {
  font-size: 24px;
  color: #008ea8;
  transition: 0.3s;
}

.accordion-body {
  display: none;
  padding: 0 20px 28px;
}
.accordion-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #3d3d3d;
}

/*====================================
Active
====================================*/
.accordion-item.active .accordion-header {
  color: #111111;
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/*====================================
Hover
====================================*/
.accordion-header:hover {
  background: #fafafa;
}

/*====================================
Responsive
====================================*/
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
  }
  .accordion-header {
    padding: 20px 15px;
  }
  .accordion-header span {
    font-size: 16px;
  }
  .accordion-body {
    padding: 0 15px 20px;
  }
  .accordion-body p {
    font-size: 15px;
  }
}
.gift-category-card-auto-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.gift-category-card-auto-popup.active {
  display: flex;
}

.popup-content {
  position: relative;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}
.popup-content h4 {
  font-size: 26px;
  font-weight: 600;
}

.popup-wrapper {
  position: relative;
  max-width: 900px;
  width: 90%;
  margin: 80px auto;
}

/*==============================
Close Button
==============================*/
.popup-close {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffcc02;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  z-index: 20;
}
.popup-close i {
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
.popup-close:hover {
  background: rgb(226.4, 180.762055336, 0);
  transform: rotate(90deg) scale(1.08);
}
.popup-close:hover i {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .popup-close {
    width: 52px;
    height: 52px;
    top: -16px;
    right: -16px;
  }
  .popup-close i {
    font-size: 22px;
  }
}
/*====================================
Footer
====================================*/
.site-footer {
  background: #ffffff;
  margin-top: 0;
}

/* Top */
.footer-top {
  padding: 18px 0;
  text-align: center;
  border-bottom: 1px solid #d9d9d9;
}

.footer-related-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-related-links li {
  font-size: 16px;
}
.footer-related-links span {
  color: #666;
  font-weight: 500;
}
.footer-related-links a {
  color: #000000;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.footer-related-links a:hover {
  color: #ffcc02;
}

/* Middle */
.footer-middle {
  padding: 35px 0;
}

.footer-logo img {
  max-width: 110px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 50px;
  justify-content: center;
}
.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #ffcc02;
}

/* Social */
.footer-social {
  text-align: center;
}
.footer-social span {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  color: #000000;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-icons a {
  color: #111111;
  font-size: 24px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #ffcc02;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  font-size: 16px;
}

/*====================================
Responsive
====================================*/
@media (max-width: 991px) {
  .footer-middle {
    text-align: center;
  }
  .footer-logo {
    display: block;
    margin-bottom: 30px;
  }
  .footer-links {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-related-links {
    gap: 15px;
    flex-direction: column;
  }
}
/*====================================
=            Base Styles             =
====================================*/
body {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #111111;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/*====================================
=          Font Utilities            =
====================================*/
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.py-40 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ms-55 {
  margin-left: 55px;
}

html,
body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.site-footer {
  margin-top: auto;
}

.car-class-section--2,
.reserved-charged-section,
.car-slider-section,
.help-desk-section,
.about-program-section,
.bg-light,
.reward-structure-section,
.referral-activity-section,
.refer-agents-section {
  background-color: #f2f2f2;
}

.bg-light-force {
  background: #f2f2f2 !important;
}

/*====================================
=              Header                =
====================================*/
.header {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(17, 17, 17, 0.08);
  position: relative;
  z-index: 999;
}
.header .navbar {
  padding: 14px 0;
}
.header .navbar-brand img {
  height: 42px;
  display: block;
}
.header {
  /* Navigation */
}
.header .navbar-nav {
  gap: 0;
  align-items: start;
  margin-bottom: 20px;
}
.header .navbar-nav .nav-item {
  position: relative;
}
.header .navbar-nav .nav-link {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.header .navbar-nav .nav-link:hover, .header .navbar-nav .nav-link.active {
  color: #ffcc02;
}
.header .navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.header .navbar-nav .show > .dropdown-toggle::after {
  transform: rotate(180deg);
}
.header {
  /* Dropdown */
}
.header .dropdown-menu {
  min-width: 220px;
  padding: 10px 0;
  margin-top: 0;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  top: 40px;
}
.header .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease;
}
.header .dropdown-menu .dropdown-item:hover {
  background: rgba(255, 204, 2, 0.18);
  color: #111111;
}
.header {
  /* Right Menu */
}
.header .nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.header .register-link {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0;
}
.header .register-link:hover {
  color: #ffcc02;
}
.header .btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 40px;
  border: 1px solid #111111;
  border-radius: 999px;
  background: transparent;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header .btn-login:hover {
  background: #ffcc02;
  border-color: #ffcc02;
  color: #111111;
}

/*====================================
Header Actions
====================================*/
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header {
  width: 100%;
  transition: all 0.3s ease;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: headerSlide 0.3s ease;
}

@keyframes headerSlide {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #ffcc02;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-top:hover {
  background: rgb(231.5, 184.8339920949, 0);
  color: #111111;
  transform: translateY(-3px);
  animation: pulse 2s infinite;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 205, 0, 0.85);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 205, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 205, 0, 0);
  }
}
/*====================================
Book Button
====================================*/
.btn-book {
  min-width: 120px;
  height: 48px;
  padding: 0 28px;
  border-radius: 50px;
  background: #ffcc02;
  color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: #111111;
  color: #ffffff;
}
/*====================================
Register Button
====================================*/
.btn-register {
    min-width: 100px;
    height: 43px;
    padding: 0 28px;
    border-radius: 50px;
    background: #ffcc02;
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-register:hover {
        background: #111111;
        color: #ffffff;
    }
/*====================================
Profile Dropdown
====================================*/
.profile-dropdown .btn-profile {
  min-width: 150px;
  height: 48px;
  border: 1px solid #dcdcdc;
  border-radius: 50px;
  background: #ffffff;
  color: #111111;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  transition: all 0.3s ease;
}
.profile-dropdown .btn-profile::after {
  margin-left: 16px;
}
.profile-dropdown .btn-profile:hover, .profile-dropdown .btn-profile:focus {
  background: #fafafa;
  border-color: #ffcc02;
  box-shadow: none;
}

/*====================================
Dropdown
====================================*/
.profile-dropdown .dropdown-menu {
  margin-top: 10px;
  min-width: 170px;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.profile-dropdown .dropdown-item {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}
.profile-dropdown .dropdown-item:last-child {
  border-bottom: none;
}
.profile-dropdown .dropdown-item:hover {
  background: #ffcc02;
  color: #111111;
}

/*====================================
Points
====================================*/
.points-history,
.points-redemption-section {
  background-color: #f6f6f6;
}

.user-points {
  height: 48px;
  padding: 0 18px;
  border-radius: 50px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-points img {
  width: 28px;
  height: 28px;
}
.user-points span {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

/*====================================
Points History
====================================*/
/*====================================
Grid
====================================*/
.points-history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/*====================================
Card
====================================*/
.points-history-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.points-history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

/*====================================
Top Number
====================================*/
.points-history-card .stat-number {
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffcc02;
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  border-radius: 18px 18px 0 0;
}

/*====================================
Bottom Content
====================================*/
.points-history-card .stat-content {
  min-height: 72px;
  padding: 16px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.points-history-card .stat-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #000000;
  font-weight: 500;
}

/*====================================
Last Card
====================================*/
.points-history-card.total-points .stat-number {
  background: white;
  transition: all 0.3s ease;
}

/*====================================
Hover
====================================*/
.points-history-card:hover .stat-number {
  background: rgb(236.6, 188.9059288538, 0);
  transition: all 0.3s ease;
}

.register-section {
  padding: 30px 0 20px 0;
  background: #fff;
}

.welcome-logo {
  margin-bottom: 30px;
}
.welcome-logo p {
  font-size: 20px;
  margin-bottom: 10px;
}
.welcome-logo img {
  height: 55px;
}

.register-wrapper {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 30px;
  position: relative;
  flex-direction: column-reverse;
}

.register-card-container {
  width: clamp(100%, 58vw, 650px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  left: 0;
  top: 0;
}

.register-card {
  padding: 25px 25px 25px 25px;
}
.register-card p {
  font-weight: 400;
}
.register-card h2 {
  font-weight: 600;
  font-size: 20px;
}

.register-image {
  width: 100%;
}
.register-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/*====================================
Getting Started
====================================*/
.getting-started,
.dashboard-header-section,
.points-history,
.points-redemption-section,
.car-class-section--2,
.reserved-charged-section,
.about-program-section,
.program-benefits-section,
.referral-stats-section,
.referral-activity-section,
.milestone-rewards-section,
.refer-agents-section {
  padding: 30px 0;
}
.getting-started .section-title,
.dashboard-header-section .section-title,
.points-history .section-title,
.points-redemption-section .section-title,
.car-class-section--2 .section-title,
.reserved-charged-section .section-title,
.about-program-section .section-title,
.program-benefits-section .section-title,
.referral-stats-section .section-title,
.referral-activity-section .section-title,
.milestone-rewards-section .section-title,
.refer-agents-section .section-title {
  margin-bottom: 30px;
}
.getting-started .section-title h2,
.getting-started .section-title h3,
.dashboard-header-section .section-title h2,
.dashboard-header-section .section-title h3,
.points-history .section-title h2,
.points-history .section-title h3,
.points-redemption-section .section-title h2,
.points-redemption-section .section-title h3,
.car-class-section--2 .section-title h2,
.car-class-section--2 .section-title h3,
.reserved-charged-section .section-title h2,
.reserved-charged-section .section-title h3,
.about-program-section .section-title h2,
.about-program-section .section-title h3,
.program-benefits-section .section-title h2,
.program-benefits-section .section-title h3,
.referral-stats-section .section-title h2,
.referral-stats-section .section-title h3,
.referral-activity-section .section-title h2,
.referral-activity-section .section-title h3,
.milestone-rewards-section .section-title h2,
.milestone-rewards-section .section-title h3,
.refer-agents-section .section-title h2,
.refer-agents-section .section-title h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 18px;
}
.getting-started .section-title h3,
.dashboard-header-section .section-title h3,
.points-history .section-title h3,
.points-redemption-section .section-title h3,
.car-class-section--2 .section-title h3,
.reserved-charged-section .section-title h3,
.about-program-section .section-title h3,
.program-benefits-section .section-title h3,
.referral-stats-section .section-title h3,
.referral-activity-section .section-title h3,
.milestone-rewards-section .section-title h3,
.refer-agents-section .section-title h3 {
  font-size: 18px;
}
.getting-started .section-title .title-line,
.dashboard-header-section .section-title .title-line,
.points-history .section-title .title-line,
.points-redemption-section .section-title .title-line,
.car-class-section--2 .section-title .title-line,
.reserved-charged-section .section-title .title-line,
.about-program-section .section-title .title-line,
.program-benefits-section .section-title .title-line,
.referral-stats-section .section-title .title-line,
.referral-activity-section .section-title .title-line,
.milestone-rewards-section .section-title .title-line,
.refer-agents-section .section-title .title-line {
  display: block;
  width: 90px;
  height: 5px;
  background: #ffcc02;
  border-radius: 10px;
  margin: 0 auto;
}

/*====================================
Step Card
====================================*/
.step-card {
  text-align: center;
  height: 100%;
}
.step-card .step-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fb;
  border-radius: 28px;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}
.step-card .step-image img {
  max-width: 170px;
  max-height: 170px;
  transition: all 0.3s ease;
}
.step-card:hover .step-image {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.step-card h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 24px;
}
.step-card p {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 18px;
}

/*====================================
Link
====================================*/
.step-link {
  color: #0a7c89;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.step-link:hover {
  color: #111111;
  text-decoration: underline;
}

/*====================================
Button
====================================*/
.btn-yellow,
.btn-outline-yellow {
  min-width: 220px;
  height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ffcc02;
  border: 1px solid #ffcc02;
  color: #111111;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-yellow:hover,
.btn-outline-yellow:hover {
  background: #e6b800;
  color: #111111;
  transform: translateY(-2px);
}

.btn-outline-yellow {
  background-color: #fff;
}

/*====================================
Car Class Section
====================================*/
.car-class-section {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 100px 0;
  height: 100%;
  background: url(../img/bg-line.png) right center no-repeat #000;
}

/*====================================
Left Content
====================================*/
.car-content {
  position: relative;
  z-index: 2;
}
.car-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.car-content p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 420px;
}

/*====================================
Right
====================================*/
.car-wrapper {
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}
.section-heading h3 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-heading span {
  display: block;
  width: 90px;
  height: 5px;
  margin: auto;
  background: #ffcc02;
  border-radius: 30px;
}

/*====================================
Card
====================================*/
.car-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 18px 18px 35px;
  height: 100%;
  transition: 0.35s;
  position: relative;
}
.car-card:hover {
  transform: translateY(-1px);
}

.car-image {
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.car-image img {
  max-width: 100%;
  max-height: 180px;
  transition: 0.3s;
}

.car-card:hover img {
  transform: scale(1.05);
}

.car-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.car-card p {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 10px;
}
.car-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.5px;
}

/*====================================
Referral Program
====================================*/
.referral-program {
  margin: 60px 0;
}

.referral-card {
  background: linear-gradient(90deg, #ffc800 0%, #ffd53d 50%, #ffe772 100%);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  min-height: auto;
}

/*====================================
Title
====================================*/
.referral-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}

.referral-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.referral-icon i {
  font-size: 20px;
}

.referral-title h3 {
  margin-bottom: 6px;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
}
.referral-title p {
  margin: 0;
  font-size: 16px;
  color: #111111;
  line-height: 1.5;
}

/*====================================
Button
====================================*/
.btn-referral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  height: 48px;
  padding: 0 24px;
  border: 2px solid #111111;
  border-radius: 40px;
  background: #111111;
  color: #ffffff;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}
.btn-referral i {
  font-size: 18px;
  transition: transform 0.35s ease;
}
.btn-referral:hover {
  background: #ffcc02;
  color: #111111;
  border-color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}
.btn-referral:hover i {
  transform: translateX(4px);
}
.btn-referral:active {
  transform: translateY(-1px);
}

.btn-white-popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    height: 50px;
    padding: 0 26px;
    background: #ffffff;
    border: none;
    border-radius: 40px;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white-popup:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

/*====================================
Points
====================================*/
.referral-points {
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}
.referral-points .text {
  font-size: 48px;
  font-weight: 400;
}

.points-history-card .stat-number {
  font-size: 32px;
}

/*====================================
Points Redemption Section
====================================*/
.points-redemption-section {
  overflow: hidden;
  background: #111111;
}

/*====================================
Left Side
====================================*/
.redemption-content {
  height: 100%;
  min-height: auto;
  background: #111111;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 50px 0 40px 0;
}

/*====================================
Floating Card
====================================*/
.redemption-card {
  width: 540px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin-right: -120px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}
.redemption-card:hover {
  transform: translateY(-6px);
}

/*====================================
Header
====================================*/
.redemption-card-header {
  background: #ffcc02;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-radius: 22px 22px 0 0;
}
.redemption-card-header h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
}
.redemption-card-header span {
  font-size: 13px;
  color: #111111;
  font-weight: 500;
}

/*====================================
Body
====================================*/
.redemption-card-body {
  padding: 0 20px 20px;
}

/*====================================
Table
====================================*/
.redemption-table {
  margin: 0;
}
.redemption-table tr td {
  border-bottom: 1px solid rgba(255, 204, 2, 0.75);
  padding: 14px 0;
  font-size: 15px;
  color: #111111;
}
.redemption-table tr td:last-child {
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.redemption-table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
}

/*====================================
Right Image
====================================*/
.redemption-image {
  height: auto;
  position: relative;
  top: 0;
  min-height: auto;
}
.redemption-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*====================================
Car Reserved Vs Car Charged
====================================*/
.reserved-charged-section {
  overflow: hidden;
}

/*====================================
Panels
====================================*/
.reserved-panel,
.charged-panel {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 320px;
  padding: 30px 30px;
}

.reserved-panel {
  background: #ffffff;
}

.charged-panel {
  background: #ffcc02;
}

/*====================================
Content
====================================*/
.panel-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/*====================================
Image
====================================*/
.panel-image {
  flex: 0 0 320px;
}
.panel-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.reserved-panel:hover .panel-image img,
.charged-panel:hover .panel-image img {
  transform: scale(1.05);
}

/*====================================
Info
====================================*/
.panel-info {
  flex: 1;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.panel-heading img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.panel-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
}

.panel-info p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

.car-slider .slick-list {
  margin: 0 -12px;
}
.car-slider .slick-slide {
  padding: 0 12px;
}

.car-image {
  margin-bottom: 18px;
}
.car-image img {
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
}

.car-content--2 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.car-content--2 p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.car-slider .slick-prev,
.car-slider .slick-next {
  width: 46px;
  height: 46px;
  background: #ffcc02;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
}
.car-slider .slick-prev i,
.car-slider .slick-next i {
  font-size: 18px;
  color: #111111;
}
.car-slider .slick-prev::before,
.car-slider .slick-next::before {
  display: none;
}

.car-slider .slick-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.car-slider .slick-arrow:hover {
  background: rgb(226.4, 180.762055336, 0);
}
.car-slider .slick-arrow::before {
  color: #111111;
  font-size: 22px;
  opacity: 1;
}
.car-slider .slick-prev {
  left: -60px;
}
.car-slider .slick-next {
  right: -60px;
}

.login-hero {
  padding: 80px 0 100px;
}

.login-hero-title p {
  font-size: 16px;
  font-weight: 600;
}
.login-hero-title h1 {
  font-size: 24px;
  font-weight: 600;
}

/*====================================
Wrapper
====================================*/
.login-hero-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 620px;
}

/*====================================
Banner
====================================*/
.login-banner {
  width: 78%;
  margin-left: auto;
}
.login-banner img {
  width: 100%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 30px;
}

/*====================================
Login Card
====================================*/
.login-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

/*====================================
Heading
====================================*/
.login-card h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111111;
}

/*====================================
Form
====================================*/
.login-card .form-group {
  margin-bottom: 20px;
}
.login-card .form-control {
  height: 48px;
  border-color: #111111;
  border-radius: 8px;
}

/*====================================
Forgot Password
====================================*/
.forgot-password {
  margin: -5px 0 10px;
}
.forgot-password a {
  font-size: 14px;
  color: #0097a7;
  text-decoration: none;
}
.forgot-password a:hover {
  text-decoration: underline;
}

/*====================================
Button
====================================*/
.login-card .btn-yellow {
  margin-top: 10px;
}

/*====================================
Register
====================================*/
.register-link {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: #666;
}
.register-link a {
  color: #0097a7;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}
.register-link a:hover {
  text-decoration: underline;
}

/*====================================
Help Desk
====================================*/
.help-desk-section {
  padding: 20px 0 100px;
}

/*====================================
Card
====================================*/
.help-desk-card {
  max-width: 1050px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  padding: 70px 80px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/*====================================
Heading
====================================*/
.help-desk-card h3 {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 700;
  color: #111111;
}
.help-desk-card p {
  color: #000000;
  margin-bottom: 0;
}

/*====================================
Textarea
====================================*/
.help-desk-card textarea {
  resize: none;
  min-height: 180px;
}

/*====================================
About Program
====================================*/
.about-program-section {
  padding: 80px 0 100px;
}

/*====================================
Logo
====================================*/
.about-program-logo {
  margin-bottom: 30px;
}
.about-program-logo img {
  max-width: 180px;
  height: auto;
  display: inline-block;
}

/*====================================
Intro
====================================*/
.about-program-section > .container > .text-center {
  max-width: 760px;
  margin: 0 auto 50px;
}

/*====================================
Content Card
====================================*/
.about-program-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 45px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/*====================================
Card Heading
====================================*/
.about-program-card h3 {
  margin-bottom: 35px;
}

/*====================================
Paragraph
====================================*/
.about-program-card p {
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.5;
}
.about-program-card p:last-child {
  margin-bottom: 0;
}

/*====================================
Program Benefits
====================================*/
.program-benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff9df 0%, #fffdf5 100%);
}

.benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.benefit-card:hover .benefit-icon {
  transform: rotate(8deg);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.benefit-icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefit-card--2 {
  background: #ffcc02;
}
.benefit-card--2 .benefit-icon {
  background: #ffffff;
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  margin: 0;
  line-height: 1.8;
  color: #000000;
}

/*====================================
Refer Agents
====================================*/
.refer-agents-section {
  padding: 90px 0;
}

.refer-agents-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.refer-agents-content h2 {
  margin-bottom: 22px;
}
.refer-agents-content h2 span {
  color: #ffcc00;
}
.refer-agents-content p {
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.8;
}
.refer-agents-content small {
  display: block;
  margin-bottom: 35px;
  color: #999;
}

.refer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  padding: 0 28px;
  border-radius: 50px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}
.btn-dark:hover {
  background: rgb(42.5, 42.5, 42.5);
  transform: translateY(-2px);
  color: #ffffff;
}

/*====================================
Referral Stats
====================================*/
.referral-stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff9df 0%, #fffdf4 100%);
}

.referral-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.referral-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stat-icon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.referral-stat-card h3 {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 700;
  color: #111111;
}
.referral-stat-card p {
  margin: 0;
  font-size: 15px;
  color: #000000;
}

/*====================================
Referral Link
====================================*/
.referral-link-card {
  max-width: 100%;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #ffcc02;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.referral-link-card h3 {
  margin-bottom: 25px;
}

.referral-box {
  padding: 14px 16px;
  border: 1px solid rgba(255, 204, 2, 0.5);
  border-radius: 8px;
  background: #fffdf3;
}

.referral-box label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.referral-box span {
  font-size: 18px;
  font-weight: 600;
  word-break: break-all;
}

.referral-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

#copyLink {
  position: relative;
}

#copyLink::after {
  content: "Copied!";
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  white-space: nowrap;
}

#copyLink.show-tooltip::after {
  opacity: 1;
  visibility: visible;
}

/*====================================
Reward Structure
====================================*/
.reward-structure-card {
  background: linear-gradient(135deg, #ffc800 0%, #ffe97a 100%);
  border-radius: 24px;
  padding: 40px;
}
.reward-structure-card h2 {
  margin-bottom: 28px;
  font-weight: 600;
}

/*====================================
Reward Box
====================================*/
.reward-box--2 {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.reward-box--2 .reward-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.reward-box--2 .reward-title img {
  width: 20px;
  opacity: 0.6;
  height: 20px;
}
.reward-box--2 .reward-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #666;
}

.reward-box--2 ul {
  margin: 0;
  list-style: none;
  padding-left: 30px;
}
.reward-box--2 li {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #000000;
}
.reward-box--2 li:last-child {
  margin-bottom: 0;
}

/*====================================
Bottom Info
====================================*/
.reward-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 28px;
}
.reward-info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.reward-info span {
  line-height: 1.7;
}

/*====================================
Bottom Note
====================================*/
.reward-note {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.75);
}

/*====================================
Referral Activity
====================================*/
.referral-activity-card {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 0 50px;
}

/*====================================
Table
====================================*/
.referral-activity-table {
  width: 100%;
  border-collapse: collapse;
}
.referral-activity-table thead {
  background: #ffcc02;
}
.referral-activity-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}
.referral-activity-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #ececec;
  vertical-align: middle;
}
.referral-activity-table tbody tr:last-child td {
  border-bottom: none;
}

/*====================================
Status Badge
====================================*/
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.status-badge.success {
  background: #cff7d6;
  color: #111111;
}

.status-badge.pending {
  background: #ffe9b8;
  color: #111111;
}

/*====================================
Points
====================================*/
.points-earned {
  color: #20b14b;
  font-weight: 700;
}

.points-pending {
  color: #999;
  font-weight: 700;
}

/*====================================
Milestone Rewards
====================================*/
.milestone-rewards-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff9df 0%, #fffdf5 100%);
}

.milestone-desc {
  max-width: 620px;
  margin: -10px auto 45px;
}

/*====================================
Card
====================================*/
.milestone-card {
  background: #ffffff;
  border: 1px solid rgba(255, 204, 2, 0.55);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.milestone-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffcc02;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 18px;
}

.milestone-icon.disabled {
  background: #e6e6e6;
  color: #8a8a8a;
}

.milestone-card h4 {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
}
.milestone-card strong {
  display: block;
  margin-top: 15px;
  font-size: 15px;
}

.progress-text {
  display: block;
  margin-bottom: 12px;
  color: #17a84b;
  font-size: 14px;
  font-weight: 500;
}

/*====================================
Progress
====================================*/
.milestone-progress {
  height: 4px;
  background: #ececec;
  border-radius: 20px;
  overflow: hidden;
}
.milestone-progress span {
  display: block;
  height: 100%;
  background: #ffcc02;
  border-radius: 20px;
}

.car-cards-section {
  padding: 80px 0;
  background: rgba(255, 204, 2, 0.1529411765);
}
.car-cards-section .car-card p {
  line-height: 1.4;
}
.car-cards-section .car-card .btn-yellow {
  height: 46px;
  font-size: 16px;
  min-width: 180px;
}

/*====================================
Responsive
====================================*/
@media (max-width: 1199px) {
  .redemption-card {
    margin-right: -70px;
    width: 480px;
  }
  .reserved-panel,
  .charged-panel {
    padding: 30px 40px;
  }
  .panel-content {
    gap: 30px;
  }
  .panel-image {
    flex-basis: 200px;
  }
  .login-banner {
    width: 72%;
  }
  .login-card {
    width: 390px;
    padding: 50px 35px;
  }
  .help-desk-card {
    padding: 60px;
  }
  .car-cards-section {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .about-program-card {
    padding: 45px 35px;
  }
  .header-actions {
    gap: 10px;
  }
  .btn-book {
    min-width: 100px;
    padding: 0 20px;
  }
  .profile-dropdown .btn-profile {
    min-width: 130px;
  }
  .container {
    padding: 0 30px;
  }
  .getting-started {
    padding: 60px 0;
  }
  .getting-started .section-title {
    margin-bottom: 50px;
  }
  .getting-started .section-title h2 {
    font-size: 38px;
  }
  .step-card {
    margin-bottom: 30px;
  }
  .step-card .step-image {
    height: 220px;
  }
  .step-card h3 {
    font-size: 30px;
  }
  .step-card p {
    font-size: 18px;
  }
  .car-class-section {
    padding: 70px 0;
  }
  .car-class-section::before {
    display: none;
  }
  .car-content {
    text-align: center;
    margin-bottom: 20px;
  }
  .car-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .section-heading h3 {
    font-size: 34px;
  }
  .referral-card {
    padding: 28px;
  }
  .referral-points {
    margin-top: 30px;
  }
  .redemption-content {
    justify-content: center;
    padding: 0 0 30px 0;
    min-height: auto;
  }
  .redemption-card {
    margin-right: 0;
    width: 100%;
    max-width: 650px;
  }
  .redemption-image {
    min-height: auto;
  }
  .reserved-panel,
  .charged-panel {
    min-height: auto;
    padding: 50px 30px;
  }
  .panel-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .panel-heading {
    justify-content: center;
  }
  .panel-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }
  .login-hero-wrapper {
    display: block;
    min-height: auto;
  }
  .login-banner {
    width: 100%;
  }
  .login-banner img {
    height: 420px;
  }
  .login-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .help-desk-card {
    padding: 50px 40px;
    border-radius: 24px;
  }
  .benefit-card {
    padding: 24px;
  }
  .reward-structure-card {
    padding: 30px;
  }
  .milestone-card {
    padding: 24px 18px;
  }
  .car-cards-section {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .about-program-section {
    padding: 60px 0;
  }
  .about-program-logo {
    margin-bottom: 25px;
  }
  .about-program-logo img {
    max-width: 150px;
  }
  .about-program-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
  .step-card .step-image {
    height: 180px;
  }
  .step-card .step-image img {
    max-width: 120px;
  }
  .step-card h3 {
    font-size: 26px;
  }
  .step-card p {
    font-size: 16px;
  }
  .btn-yellow {
    width: 100%;
    font-size: 16px;
    height: 44px;
    min-width: 100%;
  }
  .car-content h2 {
    font-size: 38px;
  }
  .car-content p {
    font-size: 16px;
  }
  .section-heading h3 {
    font-size: 30px;
  }
  .car-card {
    margin-bottom: 25px;
  }
  .referral-title {
    align-items: start;
  }
  .referral-title h3 {
    font-size: 28px;
  }
  .referral-title p {
    font-size: 16px;
  }
  .referral-points {
    font-size: 44px;
  }
  .referral-points .text {
    font-size: 34px;
  }
  .dashboard-card .card-footer {
    padding: 0;
  }
  .referral-card .card-body {
    margin-top: 0;
  }
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .redemption-content {
    padding: 40px 15px;
  }
  .redemption-card-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .redemption-card-header h2 {
    font-size: 22px;
  }
  .redemption-card-header span {
    font-size: 12px;
  }
  .redemption-card-body {
    padding: 20px;
    overflow: auto;
  }
  .redemption-table td {
    font-size: 13px;
  }
  .redemption-image {
    min-height: auto;
  }
  .reserved-panel,
  .charged-panel {
    padding: 40px 20px;
  }
  .panel-heading h3 {
    font-size: 20px;
  }
  .panel-info p {
    font-size: 15px;
  }
  .login-hero {
    padding: 60px 0;
  }
  .login-banner img {
    height: 280px;
    border-radius: 20px;
  }
  .login-card {
    padding: 35px 25px;
    border-radius: 20px;
    margin-top: 0;
  }
  .login-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .help-desk-section {
    padding: 60px 0;
  }
  .help-desk-card {
    padding: 35px 20px;
    border-radius: 20px;
  }
  .help-desk-card h3 {
    font-size: 30px;
  }
  .help-desk-card textarea {
    min-height: 140px;
  }
  .program-benefits-section {
    padding: 60px 0;
  }
  .benefit-card {
    padding: 20px;
  }
  .benefit-card h4 {
    font-size: 18px;
  }
  .refer-agents-section {
    padding: 60px 0;
  }
  .refer-actions {
    flex-direction: column;
  }
  .btn-dark,
  .btn-yellow {
    width: 100%;
    font-size: 16px;
    max-width: 100%;
    height: 44px;
  }
  .referral-stats-section {
    padding: 60px 0;
  }
  .referral-stat-card {
    padding: 22px 15px;
  }
  .referral-stat-card h3 {
    font-size: 28px;
  }
  .referral-link-card {
    padding: 25px;
  }
  .referral-actions {
    flex-direction: column;
  }
  .referral-actions a,
  .referral-actions button {
    width: 100%;
  }
  .reward-structure-card {
    padding: 20px;
    border-radius: 18px;
  }
  .reward-info {
    align-items: flex-start;
  }
  .referral-activity-card {
    padding: 20px;
    border-radius: 16px;
  }
  .referral-activity-table {
    min-width: 650px;
  }
  .milestone-rewards-section {
    padding: 60px 0;
  }
  .car-cards-section {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .redemption-table td {
    font-size: 12px;
    padding: 12px 0;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 576px) {
  .points-history-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .points-history-card .stat-number {
    height: 70px;
    font-size: 28px;
  }
  .points-history-card .stat-content {
    min-height: 65px;
    padding: 14px 10px;
  }
  .points-history-card .stat-content p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .login-hero-title p {
    font-size: 24px;
  }
  .login-hero-title h1 {
    font-size: 36px;
  }
  .points-history-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .points-history-card .stat-number {
    font-size: 32px;
  }
  .getting-started,
  .dashboard-header-section,
  .points-history,
  .points-redemption-section,
  .car-class-section--2,
  .reserved-charged-section,
  .about-program-section,
  .program-benefits-section,
  .referral-stats-section,
  .referral-activity-section,
  .milestone-rewards-section,
  .refer-agents-section {
    padding: 50px 0;
  }
  .getting-started .section-title,
  .dashboard-header-section .section-title,
  .points-history .section-title,
  .points-redemption-section .section-title,
  .car-class-section--2 .section-title,
  .reserved-charged-section .section-title,
  .about-program-section .section-title,
  .program-benefits-section .section-title,
  .referral-stats-section .section-title,
  .referral-activity-section .section-title,
  .milestone-rewards-section .section-title,
  .refer-agents-section .section-title {
    margin-bottom: 40px;
  }
  .getting-started .section-title h2,
  .dashboard-header-section .section-title h2,
  .points-history .section-title h2,
  .points-redemption-section .section-title h2,
  .car-class-section--2 .section-title h2,
  .reserved-charged-section .section-title h2,
  .about-program-section .section-title h2,
  .program-benefits-section .section-title h2,
  .referral-stats-section .section-title h2,
  .referral-activity-section .section-title h2,
  .milestone-rewards-section .section-title h2,
  .refer-agents-section .section-title h2 {
    font-size: 28px;
  }
  .getting-started .section-title h3,
  .dashboard-header-section .section-title h3,
  .points-history .section-title h3,
  .points-redemption-section .section-title h3,
  .car-class-section--2 .section-title h3,
  .reserved-charged-section .section-title h3,
  .about-program-section .section-title h3,
  .program-benefits-section .section-title h3,
  .referral-stats-section .section-title h3,
  .referral-activity-section .section-title h3,
  .milestone-rewards-section .section-title h3,
  .refer-agents-section .section-title h3 {
    font-size: 24px;
  }
  .register-card h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .login-hero-title p {
    font-size: 28px;
  }
  .login-hero-title h1 {
    font-size: 42px;
  }
  .getting-started,
  .dashboard-header-section,
  .points-history,
  .points-redemption-section,
  .car-class-section--2,
  .reserved-charged-section,
  .about-program-section,
  .program-benefits-section,
  .referral-stats-section,
  .referral-activity-section,
  .milestone-rewards-section,
  .refer-agents-section {
    padding: 80px 0;
  }
  .getting-started .section-title,
  .dashboard-header-section .section-title,
  .points-history .section-title,
  .points-redemption-section .section-title,
  .car-class-section--2 .section-title,
  .reserved-charged-section .section-title,
  .about-program-section .section-title,
  .program-benefits-section .section-title,
  .referral-stats-section .section-title,
  .referral-activity-section .section-title,
  .milestone-rewards-section .section-title,
  .refer-agents-section .section-title {
    margin-bottom: 70px;
  }
  .getting-started .section-title h2,
  .dashboard-header-section .section-title h2,
  .points-history .section-title h2,
  .points-redemption-section .section-title h2,
  .car-class-section--2 .section-title h2,
  .reserved-charged-section .section-title h2,
  .about-program-section .section-title h2,
  .program-benefits-section .section-title h2,
  .referral-stats-section .section-title h2,
  .referral-activity-section .section-title h2,
  .milestone-rewards-section .section-title h2,
  .refer-agents-section .section-title h2 {
    font-size: 32px;
  }
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeDown 0.25s ease;
  }
  .navbar .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .header .navbar-collapse {
    padding-top: 0;
  }
  .header .navbar-nav {
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .header .navbar-nav .nav-link {
    padding: 14px 0;
  }
  .header .btn-login {
    width: 100%;
  }
  .header .register-link {
    text-align: center;
  }
  .header .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .header .dropdown-menu .dropdown-item {
    padding-left: 12px;
  }
  .header .nav-right {
    margin-bottom: 0;
  }
  .register-image {
    width: 50%;
  }
  .register-card-container {
    position: relative;
    margin-top: 70px;
    transform: translateX(135px);
  }
  .register-wrapper {
    flex-direction: row;
    gap: 0;
  }
  .points-history-grid {
    gap: 16px;
  }
  .points-history-card .stat-number {
    font-size: 36px;
  }
  .points-history-card .stat-content p {
    font-size: 16px;
  }
  .redemption-image {
    position: absolute;
    width: 65vw;
    right: 0;
  }
  .register-card h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .register-card h2 {
    font-size: 36px;
  }
  .login-hero-title p {
    font-size: 32px;
  }
  .login-hero-title h1 {
    font-size: 48px;
  }
  .getting-started .section-title h2,
  .dashboard-header-section .section-title h2,
  .points-history .section-title h2,
  .points-redemption-section .section-title h2,
  .car-class-section--2 .section-title h2,
  .reserved-charged-section .section-title h2,
  .about-program-section .section-title h2,
  .program-benefits-section .section-title h2,
  .referral-stats-section .section-title h2,
  .referral-activity-section .section-title h2,
  .milestone-rewards-section .section-title h2,
  .refer-agents-section .section-title h2 {
    font-size: 36px;
  }
  .getting-started .section-title h3,
  .dashboard-header-section .section-title h3,
  .points-history .section-title h3,
  .points-redemption-section .section-title h3,
  .car-class-section--2 .section-title h3,
  .reserved-charged-section .section-title h3,
  .about-program-section .section-title h3,
  .program-benefits-section .section-title h3,
  .referral-stats-section .section-title h3,
  .referral-activity-section .section-title h3,
  .milestone-rewards-section .section-title h3,
  .refer-agents-section .section-title h3 {
    font-size: 28px;
  }
  .welcome-logo {
    margin-bottom: 40px;
  }
  .register-image {
    width: 48.6111111111vw;
  }
  .register-card-container {
    width: 650px;
  }
  .py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .register-section {
    padding: 80px 0 40px 0;
  }
  .points-history-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .points-history-card .stat-number {
    font-size: 48px;
  }
  .redemption-image {
    position: absolute;
    width: 80vw;
    right: 0;
    height: 50%;
  }
  .pb-150 {
    padding-bottom: 150px;
  }
  .points-history-top {
    margin-top: -180px;
    position: relative;
    z-index: 1;
  }
}
h2 .title-highlight {
    position: relative;
    display: inline-block;
}
h2 .title-highlight::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    background: #ffcc02;
    border-radius: 10px;
    margin: -5px auto 0;
}