.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.destination-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all .4s ease;
}
.destination-card:hover .destination-overlay {
  opacity: 1;
}
.destination-overlay h4 {
  color: #fff;
  margin-bottom: 10px;
}
.destination-overlay a {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  transition: background .3s;
}
.destination-overlay a:hover {
  background: #ffcc00;
}
/* Increase tile height */
.destination-card img {
  height: 300px; /* increased from 260px */
}
/* Center overlay content properly */
.destination-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center;
}
/* Spacing for title */
.destination-overlay h4 {
  margin-bottom: 14px;
  font-size: 20px;
}
/* Explore button styling */
.destination-overlay a {
  background: #ffffff;
  color: #000;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s ease;
}
/* Button hover – RED */
.destination-overlay a:hover {
  background: #e60023; /* red */
  color: #fff;
}
.destination-overlay {
  transform: translateY(10px);
}
.destination-card:hover .destination-overlay {
  transform: translateY(0);
}
.support-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: #ea244f solid 1px;
}
.support-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .12);
}
.support-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
}
.support-card a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
.support-card a:hover {
  color: #e60023;
}
.support-availability {
  background: #f7f7f7;
  padding: 40px 20px;
  border-radius: 14px;
}
.support-availability h3 {
  font-weight: 700;
  margin-bottom: 10px;
}
/* Wrapper */
.auth-wrapper {
  background: #ffffff;
}
/* 3D Card */
.auth-3d-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transform: perspective(1200px) rotateX(6deg);
  animation: authFadeUp .9s ease forwards;
  border: #e82750 solid 1px;
}
/* Panels */
.auth-panel {
  padding: 50px 40px;
  height: 100%;
}
.login-panel {
  background: #ffffff;
}
.signup-panel {
  background: #ffaeae;
  color: #000;
}
/* Headings */
.auth-panel h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
.auth-sub {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: .85;
}
/* Inputs */
.auth-panel label {
  display: block;
  margin-bottom: 18px;
}
.auth-panel input, .auth-panel select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}
.signup-panel input, .signup-panel select {
  border: none;
}
/* Phone group */
.phone-group {
  display: flex;
  gap: 10px;
}
.phone-group select {
  width: 35%;
}
.phone-group input {
  width: 80%;
}
/* Buttons */
.auth-panel button {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all .35s ease;
}
.login-panel button {
  background: #000;
  color: #fff;
}
.login-panel button:hover {
  background: #e60023;
}
.signup-panel button {
  background: #fff;
  color: #000;
}
.signup-panel button:hover {
  background: #e60023;
  color: #fff;
}
/* Animation */
@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(12deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0);
  }
}
/* Mobile */
@media(max-width: 768px) {
  .auth-3d-card {
    transform: none;
  }
}
.auth-3d-card {
  margin-top: 100px;
  transform-style: preserve-3d;
}
.auth-wrapper {
  min-height: auto;
  display: flex;
  align-items: center;
  border-bottom: #ccc solid 1px;
}
section.support-listing.py-5 {
  border-bottom: #ccc solid 1px;
}
/* Login side */
.login-panel input {
  background: #eef4ff;
  border: none;
}
/* Signup side */
.signup-panel input, .signup-panel select {
  background: #ffffff;
  color: #000;
}
.phone-group select {
  appearance: none;
  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='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 35px;
}
.login-panel {
  border-right: 1px solid #eee;
}
@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: perspective(1400px) rotateX(15deg) translateY(60px);
  }
  to {
    opacity: 1;
    transform: perspective(1400px) rotateX(0deg) translateY(0);
  }
}
.auth-panel button {
  letter-spacing: 0.5px;
}
.auth-panel button:hover {
  /* transform: translateY(-2px); */
}
.phone-group {
  display: flex !important;
  gap: 10px;
}
.country-code {
  width: 70px; /* FIXED width for 3–4 chars */
  min-width: 70px;
  max-width: 70px;
  text-align: center;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
}
.phone-number {
  flex: 1; /* Takes remaining space */
}
.country-code {
  border-right: 1px solid #ddd;
}
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #e60023;
  min-height: 16px; /* prevents layout jump */
}
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid #e60023;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.dashboard-wrapper {
  display: flex;
  background: #f5f6fa;
  margin-top: 90px; /* adjust if header height differs */
  min-height: calc(100vh - 90px);
}
/* Sidebar */
.dashboard-sidebar {
  width: 260px;
  background: #111;
  color: #fff;
  padding: 30px 20px;
}
.dash-logo {
  margin-bottom: 30px;
  font-size: 20px;
}
.dash-menu {
  list-style: none;
  padding: 0;
}
.dashboard-content p {
  font-size: 16px;
  color: #777;
  margin-top: 30px;
}
.dash-menu li {
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all .3s ease;
}
.dash-menu li:hover, .dash-menu li.active {
  background: #e60023;
}
.logout-link {
  color: #fff;
  text-decoration: none;
}
/* Content */
.dashboard-content {
  flex: 1;
  padding: 40px;
}
.dash-section {
  display: none;
  animation: fadeSlide .4s ease;
}
.dash-section.active {
  display: block;
}
/* Booking cards */
.booking-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}
.booking-status {
  background: #f1f1f1;
  padding: 6px 14px;
  border-radius: 20px;
}
/* Forms */
.dashboard-content label {
  display: block;
  margin-bottom: 18px;
}
.dashboard-content input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 30px;
  border: 1px solid #ddd;
}
.dashboard-content button {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.dashboard-content button:hover {
  background: #e60023;
}
/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile */
@media(max-width: 768px) {
  .dashboard-wrapper {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .dashboard-wrapper {
    margin-top: 70px;
  }
  .dashboard-sidebar {
    position: relative;
    height: auto;
    top: 0;
  }
  .dashboard-content {
    padding: 25px;
  }
}
.dash-section {
  display: none;
}
.dash-section.active {
  display: block;
}
.booking-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}
.booking-main h4 {
  margin-bottom: 6px;
  font-weight: 600;
}
.booking-meta {
  font-size: 14px;
  color: #555;
}
.booking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Status badge base */
.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
/* Booking status colors */
.status-confirmed {
  background: #28a745;
}
.status-pending {
  background: #f0ad4e;
}
.status-cancelled {
  background: #dc3545;
}
/* Payment status colors */
.pay-paid {
  background: #198754;
}
.pay-partial {
  background: #0d6efd;
}
.pay-pending {
  background: #6c757d;
}
.emi-progress {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.emi-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #dee2e6;
  transform: translateY(-50%);
  z-index: 0;
}
.emi-step {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6c757d;
}
.emi-step.completed {
  background: #198754;
  color: #fff;
}
.emi-step.completed::after {
  content: '';
  position: absolute;
  height: 4px;
  background: #198754;
  left: -100%;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.emi-step:first-child.completed::after {
  display: none;
}
.price-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 10px;
  border-radius: 20px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 15px;
}
.outeremi {
  display: grid;
  opacity: 0;
  font-size: 0;
  height: 0;
  transition: .2s ease-in-out;
}
.inside-pro-lisitng:hover .inside-pro-details .outeremi {
  height: inherit;
  opacity: 1;
  font-size: inherit;
}
.price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 8px;
  border-radius: 12px;
}
.price-amount {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.info-btn {
  width: 20px;
  height: 20px;
  background: #ffffff;
  color: #ff1f4d;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emi-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff1f4d;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.emi-toggle.open {
  transform: rotate(180deg); /* down → up */
}
.booking-card {
  min-height: 420px;
}
.booking-panel {
  padding: 40px 30px;
}
.summary-panel {
  background: linear-gradient(135deg, #ff1f4d, #ff5f7a);
  color: #fff;
}
.pkg-summary h4 {
  margin-bottom: 10px;
}
.price-box {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
}
.price-box span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}
.price-box strong {
  font-size: 18px;
}
.action-panel h2 {
  margin-bottom: 8px;
}
.price-amount {
  font-size: 18px;
  color: #fff;
}
.info-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff1f4d;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
}
.emi-expand-area {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 8px;
  padding: 8px 10px;
  font-size: 13px;
}
.emi-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed #ddd;
}
.emi-row:last-child {
  border-bottom: none;
}
.change-emi {
  margin-top: 8px;
}
.change-emi a {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
}
.payable-now {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.15);
}
.pax-box {
  margin-top: 15px;
}
.pax-control {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.pax-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #ff1f4d;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.pax-control input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: bold;
  color: #fff;
}
.action-panel h2 {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}
.action-panel h2 {
  font-size: 30px;
  letter-spacing: -0.5px;
}
.pax-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.pax-count {
  background: #f1f3f5;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.pax-actions i {
  cursor: pointer;
  margin-left: 8px;
  color: #ff1f4d;
}
.pax-actions i:hover {
  transform: scale(1.1);
}
.pax-box-lg {
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}
.pax-row {
  border-bottom: 1px dashed #ddd;
  padding: 12px 0;
}
.pax-row input, .pax-row select, .pax-row textarea {
  width: 100%;
  margin-bottom: 6px;
  padding: 6px;
}
.primary-check {
  font-size: 13px;
}
.pax-actions i {
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  font-size: 16px;
  margin-left: 8px;
  color: #ff1f4d;
}
.booking-meta {
  position: relative;
}
.pin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.pin-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}
.pax-box-lg {
  width: 90%;
  max-width: 700px;
}
/* Package image wrapper */
.inside-pro-lisitng {
    position: relative;
    overflow: hidden;
}

/* Price badge container */
.price-badge {
    position: absolute;
    top: 12px;
    right: 30px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 10;
    text-align: right;
    min-width: 110px;
}

/* "Starts From" text */
.price-badge .price-title {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.9;
    line-height: 1.2;
}

/* Price value */
.price-badge .price-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .price-badge {
        top: 15px;
        right: 30px;
        padding: 8px 12px;
    }

    .price-badge .price-value {
        font-size: 15px;
    }
}
