
section{
  animation: ease-in 1s;
}
:root, [data-bs-theme=light] {
  --bs-body-font-family: "Poppins", sans-serif;
}

.sn-navbar {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../../assets/img/pexels-smuldur-2048865.jpg);
  background-position: top;
  background-size: cover;
  min-height: 50vh;
}

.sn-h-75px {
  height: 75px;
}

.sn-fs-14px {
  font-size: 14px;
}

.sn-return-btn{
  text-wrap: nowrap;
}

:root, [data-bs-theme=light] {
  --bs-primary: #29285C;
  --bs-secondary: #6c757d;
  --bs-success: #27DD3C;
  --bs-info: #0dcaf0;
  --bs-warning: #DFE523;
  --bs-danger: #E02121;
  --bs-light: #EEEEEE;
  --bs-dark: #212529;
  --bs-primary-rgb: 41,40,92;
  --bs-secondary-rgb: 108,117,125;
  --bs-success-rgb: 39,221,60;
  --bs-info-rgb: 13,202,240;
  --bs-warning-rgb: 223,229,35;
  --bs-danger-rgb: 224,33,33;
  --bs-light-rgb: 238,238,238;
  --bs-dark-rgb: 33,37,41;
  
  /* Button color overrides */
  --bs-btn-bg: #29285C;
  --bs-btn-border-color: #29285C;
  --bs-btn-hover-bg: #29285C;
  --bs-btn-hover-border-color: #29285C;
  
  /* Link colors */
  --bs-link-color: #29285C;
  --bs-link-hover-color: #1a1938;
  
  /* Border colors */
  --bs-border-color: #dee2e6;
  
  /* Component specific */
  --bs-component-active-bg: #29285C;
  --bs-component-active-color: #fff;
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(41, 40, 92, 0.25);
}

/* Global form control focus states */
.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(41, 40, 92, 0.25) !important;
}

.form-switch .form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-decrement, .btn-increment{
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: none;
    transition: 0.2s;
}
.btn-decrement:hover, .btn-increment:hover {
  background-color: rgba(41, 40, 92, 0.75);
  color: var(--bs-light);
  border: none;
}

.sn-transition{
    transition: all 0.6s;
}

.search-form {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.search-form.active {
    opacity: 1;
    transform: translateX(0);
}

.nav-tab-btn {
    transition: all 0.3s ease;
}

.nav-tab-btn a {
    transition: color 0.3s ease;
}

.line {
  height: 5px;
  width: 150px;
}

.flight-box {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flight-box img {
  max-height: 200px;
}

canvas {
  max-height: 150px;
  cursor: pointer;
}

.alert-primary{
  border: 1px solid var(--bs-primary);
  border-left: 10px solid var(--bs-primary);
}

.w-max-content {
  width: max-content !important;
}

/* Button overrides */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-check:checked + .btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: white !important;
  opacity: 0.85;
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-success {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.btn-outline-success {
  color: var(--bs-success);
  border-color: var(--bs-success);
}

.btn-outline-success:hover {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.btn-danger {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}

.btn-outline-danger {
  color: var(--bs-danger);
  border-color: var(--bs-danger);
}

.btn-outline-danger:hover {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}

.btn-warning {
  background-color: var(--bs-warning);
  border-color: var(--bs-warning);
  color: var(--bs-dark);
}

.btn-outline-warning {
  color: var(--bs-warning);
  border-color: var(--bs-warning);
}

.btn-outline-warning:hover {
  background-color: var(--bs-warning);
  border-color: var(--bs-warning);
  color: var(--bs-dark);
}

.btn-info {
  background-color: var(--bs-info);
  border-color: var(--bs-info);
}

.btn-outline-info {
  color: var(--bs-info);
  border-color: var(--bs-info);
}

.btn-outline-info:hover {
  background-color: var(--bs-info);
  border-color: var(--bs-info);
}

/* Warning button text color fix */
.btn-warning, .badge.bg-warning {
  color: var(--bs-dark) !important;
}

/* Active states use primary color */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--bs-primary);
}

/* Sidebar link states */
.sidebar .nav-link {
  transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
  background-color: rgba(41, 40, 92, 0.1) !important;
  color: var(--bs-primary) !important;
  transform: translateX(4px);
}

.sidebar .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

.sidebar .nav-link.active:hover {
  background-color: var(--bs-primary) !important;
  opacity: 0.9;
  color: white !important;
}

.nav-link.active {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

/* Stat cards with primary color */
.stat-card[style*="--color"] {
  --color: var(--bs-primary) !important;
}

.stat-card::before {
  background: var(--bs-primary) !important;
}

/* Quick action buttons hover with primary */
.quick-action-btn:hover {
  border-color: var(--bs-primary) !important;
  color: var(--bs-primary) !important;
  background-color: rgba(41, 40, 92, 0.05) !important;
}

/* Service filter cards */
.service-filter-card:hover {
  border-color: var(--bs-primary) !important;
}

.service-filter-card.active {
  border-color: var(--bs-primary) !important;
  background: rgba(41, 40, 92, 0.05) !important;
}

.service-filter-card.active .service-filter-icon,
.service-filter-card.active .service-filter-content h6 {
  color: var(--bs-primary) !important;
}

.service-filter-check {
  color: var(--bs-primary) !important;
}

/* Filter nav pills */
.filter-pills .nav-link.active {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: white !important;
}

/* Profile section background */
.profile-section {
  background: linear-gradient(135deg, rgba(41, 40, 92, 0.1) 0%, rgba(41, 40, 92, 0.05) 100%) !important;
}

/* Modern dropdown styling */
.dropdown-toggle::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item:hover {
  background-color: rgba(41, 40, 92, 0.1);
  color: var(--bs-primary);
  transform: translateX(5px);
}

.dropdown-item i {
  width: 20px;
  text-align: center;
}

/* New reservation button specific */
.btn-primary.dropdown-toggle {
  box-shadow: 0 4px 12px rgba(41, 40, 92, 0.2);
  font-weight: 500;
}

.btn-primary.dropdown-toggle:hover {
  box-shadow: 0 6px 20px rgba(41, 40, 92, 0.3);
}

/* Pagination */
.page-link {
  color: var(--bs-primary);
}

.page-item.active .page-link {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.upsell-comparison {
  border-color: #eef1f5 !important;
  box-shadow: 0 12px 30px rgba(41, 40, 92, 0.08);
}

.upsell-table thead {
  background: linear-gradient(90deg, rgba(41, 40, 92, 0.05), rgba(41, 40, 92, 0.02));
}

.upsell-table th {
  letter-spacing: 0.06em;
  font-weight: 700;
}

.upsell-table td,
.upsell-table th {
  vertical-align: middle;
}

.upsell-table .feature-row td:first-child {
  min-width: 170px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.service-chip.available {
  background: #e9f7ef;
  color: #198754;
}

.service-chip.unavailable {
  background: #fdeaea;
  color: #dc3545;
}

.service-chip.neutral {
  background: #eef1f5;
  color: #29285C;
}

.service-chip.muted {
  background: #f8f9fa;
  color: #6c757d;
}

.price-row td {
  border-top: 0;
  font-size: 16px;
}

.service-dot {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.service-dot.available {
  background: linear-gradient(135deg, #e8f6ee, #f7fffb);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.35);
}

.service-dot.unavailable {
  background: linear-gradient(135deg, #fbebeb, #fff6f6);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.35);
}

.service-dot.caution {
  background: linear-gradient(135deg, #fff5e5, #fffaf1);
  color: #f59f00;
  border: 1px solid rgba(245, 159, 0, 0.35);
  box-shadow: 0 10px 22px rgba(245, 159, 0, 0.18);
}

.service-dot.neutral {
  background: linear-gradient(135deg, #eef1f5, #f8fbff);
  color: #29285C;
}

.service-dot.muted {
  background: #f8f9fa;
  color: #6c757d;
}

.upsell-table {
  border-collapse: separate;
  border-spacing: 0 12px;
  width: 100%;
}

.upsell-table thead th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: none;
}

.rule-status-badge small {
  color: #4b5563;
  letter-spacing: 0.02em;
}

.upsell-table tbody tr.select-row {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  border: 1px dashed #c7d2fe;
  box-shadow: none;
}

.select-row td {
  border-bottom: none;
  border-top: none;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.btn-select-offer {
  background: linear-gradient(135deg, #29285c, #504fa3);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(41, 40, 92, 0.25);
}

.btn-select-offer:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.rule-status.warn-status {
  position: relative;
}

.rule-status .warn-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7ea;
  color: #f6a10c;
  border: 1px solid rgba(246, 161, 12, 0.4);
  box-shadow: 0 6px 12px rgba(246, 161, 12, 0.2);
}

.rule-status .warn-popover {
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.rule-status .warn-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #111827 transparent transparent transparent;
}

.rule-status.warn-status:hover .warn-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -4px);
}

.upsell-comparison {
  position: relative;
  border-color: rgba(41, 40, 92, 0.12) !important;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.14);
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.upsell-comparison::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #334155, #4f46e5);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.upsell-table thead {
  background: linear-gradient(120deg, #0f172a, #1f2a44);
  color: #e5e7eb;
  border-radius: 12px;
}

.upsell-table thead th {
  letter-spacing: 0.08em;
  font-weight: 700;
  border-bottom: none;
  color: #f8fafc;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.upsell-table thead th:first-child {
  border-top-left-radius: 12px;
  text-align: left;
}

.upsell-table thead th:last-child {
  border-top-right-radius: 12px;
}

.upsell-table td,
.upsell-table th {
  vertical-align: middle;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.upsell-table tbody tr {
  background: #ffffff;
  border: 1px solid #e4e8f0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s ease;
}

.upsell-table tbody tr:nth-child(even) {
  background-color: #f7f8fb;
}

.upsell-table tbody tr:hover {
  background-color: inherit;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.upsell-table .feature-row td:first-child {
  min-width: 170px;
  font-weight: 700;
  color: #1f2a44;
  background: #f8fafc;
}

.upsell-table tbody tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.upsell-table tbody tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.upsell-table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none;
}

.rule-status-badge {
  position: relative;
}

.service-dot.has-popover {
  position: relative;
}

.status-popover {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #e5e7eb;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 5;
}

.status-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
}

.service-dot.has-popover:hover .status-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -4px);
}

.upsell-comparison .table-responsive {
  padding: 1.25rem 1.5rem 1rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.rule-status.warn-status .warn-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.2s ease, max-width 0.2s ease;
}

.rule-status.warn-status:hover .warn-label {
  opacity: 1;
  max-width: 400px;
}

@media (prefers-reduced-motion: reduce) {
  .rule-status.warn-status .warn-label {
    transition: none;
  }
}


@media only screen and (max-width: 400px) {
  .sn-return-btn{
    text-wrap: wrap;
    span{
      display: none;
    }
  }
}
@media only screen and (max-width: 500px) {
  .suggestions{
    width: 100% !important;
  }
  .passengerdetails{
    width: 100% !important;
  }
}
/**

Search Box CSS
 * This CSS is used for the search box in the flight search page.
 * It styles the input field and the button to create a cohesive look.

**/
.floating-label-group {
  position: relative;
  padding-top: 2rem;
}

.floating-label {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
}

.input-transparent {
  border: none;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0;
  padding-top: 0.5rem;
  background-color: transparent;
}

.input-transparent:focus {
  outline: none;
  box-shadow: none !important;
}

.floating-label-group.active .floating-label,
.floating-label-group input:focus + .floating-label,
.floating-label-group input:not(:placeholder-shown) + .floating-label {
  top: 1rem;
  font-size: 10pt;
}

.suggestions {
  top: 100%;
  left: 0;
  right: 0;
  width: 400px;
  overflow-y: auto;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions hr {
  margin: 0;
  border: none;
  border-top: 1px solid #dee2e6;
}

.suggestion-category-header {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  cursor: default;
}

.suggestion-item {
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: var(--bs-light);
}
.passengerdetails{
  width: 400px;
  max-width: 400px;
}
.suggestion-item .country {
  font-size: 10pt;
}

/* Hotel Chain Cards */
.hotel-chain-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-chain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--bs-primary) !important;
}

/* Login & Register Page Tab Navigation */
.nav-pills .nav-link {
    color: var(--bs-primary);
    background-color: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(41, 40, 92, 0.1);
    border-color: var(--bs-primary);
}

.nav-pills .nav-link.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.nav-pills .nav-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(41, 40, 92, 0.25);
}

/* Modern Input Styling for Login/Register */
.login-register-page .form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.login-register-page .input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(41, 40, 92, 0.1);
}

.login-register-page .input-group:focus-within .input-group-text {
    border-color: var(--bs-primary);
}

.login-register-page .input-group:focus-within .form-control {
    border-color: var(--bs-primary);
}

.login-register-page .input-group:focus-within .input-group-text i {
    color: var(--bs-primary) !important;
    transition: color 0.3s ease;
}

/* Modern User Panel Enhancements */
.sidebar .nav-link {
    transition: all 0.3s ease;
    border-radius: 0.75rem !important;
}

.sidebar .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1) !important;
    transform: translateX(5px);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Modern Badge Styles */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Profile Image Hover Effect */
.rounded-circle {
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    transform: scale(1.05);
}


/* Search Form Animations */
.search-form .border {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
    background-color: rgba(41, 40, 92, 0.02);
}

.search-form .border:hover {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 2px rgba(41, 40, 92, 0.1);
    background-color: rgba(41, 40, 92, 0.05);
}

.search-form .border:has(input:focus) {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 3px rgba(41, 40, 92, 0.2);
    transform: translateY(-1px);
    background-color: rgba(41, 40, 92, 0.08);
}

.search-form input:focus,
.search-form .form-control:focus,
.search-form .form-select:focus,
.search-form .form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus styles from switch */
.search-form .form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    box-shadow: none !important;
}

.search-form .btn {
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 40, 92, 0.3);
}

.search-form .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(41, 40, 92, 0.2);
}

.search-form input[type="radio"]:checked + label,
.search-form input[type="checkbox"]:checked + label {
    color: var(--bs-primary);
    font-weight: 600;
}

.search-form .form-check {
    transition: transform 0.2s ease;
}

.search-form .form-check:hover {
    transform: scale(1.05);
}

/* Remove animation from hotel listing switch */
.search-form .form-check.form-switch {
    transition: none !important;
}

.search-form .form-check.form-switch:hover {
    transform: none !important;
}

.search-form .btn-decrement:active,
.search-form .btn-increment:active {
    transform: scale(0.95);
}

.search-form .suggestion-item {
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.search-form .suggestion-item:hover {
    background-color: var(--bs-light);
    padding-left: 20px;
}

.search-form .passengerdetails {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Access Menu Animations */
section .border.rounded-4 {
    transition: all 0.3s ease;
    border-color: #dee2e6 !important;
    cursor: pointer;
}

section .border.rounded-4:hover {
    border-color: var(--bs-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 40, 92, 0.15);
}

section .border.rounded-4:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(41, 40, 92, 0.1);
}

/* Fırsat Uçuşlar (Flight Offers) Bottom Border Animation */
.flight-box {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.flight-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.flight-box:hover::after {
    transform: scaleX(1);
}

.flight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Popüler Destinasyonlar - White Border Animation */
.flight-box.bg-black {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flight-box.bg-black::after {
    background-color: white;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Popüler Rotalar Tab Buttons Animation */
section button.rounded-pill {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-width: 2px !important;
}

section button.rounded-pill:not(.bg-primary):hover {
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(41, 40, 92, 0.2);
}

section button.bg-primary {
    box-shadow: 0 4px 10px rgba(41, 40, 92, 0.3);
}

section button.bg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(41, 40, 92, 0.4);
}

section button.rounded-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(41, 40, 92, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

section button.rounded-pill:active::before {
    width: 300px;
    height: 300px;
}

/* Flight result cards */
.flight-card {
    border-color: #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fare-rule-card {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.fare-rule-card .bi,
.fare-rule-card .sn-fs-14px {
    font-weight: 600;
}

.rule-row {
    padding: 0.35rem 0.25rem;
    border-bottom: 1px dashed #e2e8f0;
}

.rule-row:last-child {
    border-bottom: none;
}

.segment-leg {
    background: #f8fafc;
}

.segment-row {
    background: #ffffff;
}

.segment-line .badge {
    font-weight: 600;
}

.segment-rail {
    height: 3px;
    background: linear-gradient(90deg, rgba(41, 40, 92, 0.15), rgba(41, 40, 92, 0.05));
    border-radius: 999px;
    position: relative;
}

.segment-dot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--bs-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(41, 40, 92, 0.12);
}

.layover-note {
    border-left: 3px dashed #e2e8f0;
    margin-left: 0.35rem;
    padding-left: 0.75rem;
}

.segments-stack .badge,
.flight-card .badge {
    border: 1px solid #e2e8f0;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

body.no-scroll-animations {
    opacity: 1 !important;
}

body.no-scroll-animations section,
body.no-scroll-animations .scroll-animate,
body.no-scroll-animations section:not(:first-of-type) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Different animations for different elements */
.scroll-animate.flight-box:not(:hover) {
    transform: translateY(40px) scale(0.95);
}

.scroll-animate.flight-box.animate-in:not(:hover) {
    transform: translateY(0) scale(1);
}

/* Preserve hover state */
.flight-box.animate-in:hover {
    transform: translateY(-2px) scale(1) !important;
}

.scroll-animate.border.rounded-4 {
    transform: translateX(-30px);
    opacity: 0;
}

.scroll-animate.border.rounded-4.animate-in {
    transform: translateX(0);
    opacity: 1;
}

/* Alternate animations for left/right columns */
.row .col-md-3:nth-child(odd) .scroll-animate {
    transform: translateX(-30px);
}

.row .col-md-3:nth-child(even) .scroll-animate {
    transform: translateX(30px);
}

.row .col-md-3 .scroll-animate.animate-in {
    transform: translateX(0);
}

/* Section animations */
section.scroll-animate {
    transform: translateY(50px);
}

section.scroll-animate.animate-in {
    transform: translateY(0);
}

/* Opening Animations */
body:not(.user-panel) {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.page-loaded {
    opacity: 1;
}

/* User panel pages - always visible */
body.user-panel {
    opacity: 1 !important;
}

/* Navbar opening animation */
.sn-navbar {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sn-navbar.navbar-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Nav items stagger animation */
.navbar-nav .nav-item,
.navbar-brand {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-item-loaded {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Search tabs animation */
.nav-tab-btn {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-loaded {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Search form opening animation enhancement */
.search-form.active.form-loaded {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Hero section content animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sn-navbar .container {
    animation: heroFadeIn 1s ease 0.3s backwards;
}

/* Preloader for smooth transition */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

/* Initial state for sections below fold */
section:not(:first-of-type) {
    opacity: 0;
}

/* User Panel Styles */
body.user-panel {
    font-family: 'Inter', sans-serif !important;
    background-color: #f8fafc;
}

body.user-panel * {
    font-family: 'Inter', sans-serif !important;
}

.sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 1px solid #e2e8f0;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: all 0.3s;
    width: 280px;
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.sidebar .nav-link {
    color: #64748b;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar .nav-link:hover:not(.active) {
    background-color: rgba(41, 40, 92, 0.1) !important;
    color: var(--bs-primary) !important;
    transform: translateX(4px);
}

.sidebar .nav-link.active {
    background-color: var(--bs-primary) !important;
    color: white !important;
}

.sidebar .nav-link.active:hover {
    background-color: var(--bs-primary) !important;
    color: white !important;
    opacity: 0.9;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color) 0%, var(--color) 100%);
}

.activity-item {
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.activity-item:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.quick-action-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #334155;
}

.quick-action-btn:hover {
    border-color: var(--bs-primary) !important;
    background-color: rgba(41, 40, 92, 0.05) !important;
    transform: translateY(-2px);
    color: var(--bs-primary) !important;
}

.profile-section {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.logo-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

/* Ticket Styles */
.ticket-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.ticket-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #dc3545 0%, #ff6b6b 100%);
}

.priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    color: #dc3545;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(220, 53, 69, 0.2);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ecfdf5 100%);
    color: #198754;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(25, 135, 84, 0.2);
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.1);
}

.ticket-number {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #475569;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.info-stat {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.info-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Message Thread Styles */
.message-thread {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.message-thread-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.message-item {
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.message-item:hover {
    background-color: #fafbfc;
}

.message-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.message-user {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.message-agent {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
}

.message-avatar {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

/* Service Filter Cards */
.service-filter-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.service-filter-card:hover {
    border-color: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 40, 92, 0.15);
}

.service-filter-card.active {
    border-color: var(--bs-primary) !important;
    background: linear-gradient(135deg, rgba(41, 40, 92, 0.05) 0%, rgba(41, 40, 92, 0.1) 100%) !important;
}

.service-filter-icon {
    font-size: 2rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.service-filter-card.active .service-filter-icon,
.service-filter-card.active .service-filter-content h6 {
    color: var(--bs-primary) !important;
}

.service-filter-content h6 {
    color: #475569;
    transition: all 0.3s;
}

.service-filter-check {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.25rem;
    color: var(--bs-primary) !important;
    opacity: 0;
    transition: all 0.3s;
}

.service-filter-card.active .service-filter-check {
    opacity: 1;
}

/* Filter Navigation Pills */
.filter-pills .nav-link {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.filter-pills .nav-link:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    background-color: rgba(41, 40, 92, 0.05);
}

.filter-pills .nav-link.active {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
}




/* ===== CSS EXTRACTED FROM HTML FILES ===== */

/* CSS from destination pages (car_rental_locations, flight_destinations, hotel_destinations, transfer_locations) */
.hover-shadow {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-shadow:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.nav-tabs .nav-link {
    color: #495057;
    border: 1px solid transparent;
}

.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.active {
    color: var(--bs-primary);
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* Credit Card Styles from user-cards.html */
.credit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    transition: all 0.3s;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.credit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.credit-card.visa {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.credit-card.mastercard {
    background: linear-gradient(135deg, #eb0029 0%, #f90 100%);
}

.credit-card.amex {
    background: linear-gradient(135deg, #006fcf 0%, #002f5f 100%);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(0,0,0,0.2);
}

.add-card {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 2rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.add-card:hover {
    border-color: #0d6efd;
    background-color: #f0f9ff;
    transform: translateY(-2px);
}

/* Invoice Card Styles from user-invoices.html */
.invoice-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s;
}

.invoice-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Passenger Card Styles from user-passengers.html */
.passenger-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s;
}

.passenger-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

/* Form Section Styles from user-profile.html and user-support-create.html */
.form-section {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.form-section:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.form-label {
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 4px rgba(41, 40, 92, 0.1);
}

.upload-zone {
    border: 2px dashed #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background-color: #f8fafc;
}

.upload-zone:hover {
    border-color: var(--bs-primary);
    background-color: rgba(41, 40, 92, 0.05);
}

/* Toggle Switch Styles from user-profile.html */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--bs-primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Priority Card Styles from user-support-create.html */
.priority-card {
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.priority-card:hover {
    border-color: #cbd5e1;
}

.priority-card.selected {
    border-color: var(--bs-primary);
    background-color: rgba(41, 40, 92, 0.05);
}

.priority-low.selected {
    border-color: #198754;
    background-color: #f0fff4;
}

.priority-medium.selected {
    border-color: #ffc107;
    background-color: #fffbf0;
}

.priority-high.selected {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Ticket Card Styles from user-support-tickets.html */
.ticket-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s;
    margin-bottom: 1rem;
    cursor: pointer;
}

.ticket-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.priority-high {
    border-left: 4px solid #dc3545;
}

.priority-medium {
    border-left: 4px solid #ffc107;
}

.priority-low {
    border-left: 4px solid #198754;
}

/* Attachment Item Styles from user-support-view.html */
.attachment-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.attachment-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

/* Booking Header Styles from user-trip-detail.html */
.booking-header {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--bs-primary);
}

.flight-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.airport-code {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.flight-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    max-width: 150px;
}

.flight-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #e2e8f0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.boarding-pass {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.boarding-pass::before,
.boarding-pass::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.boarding-pass::before {
    left: -20px;
}

.boarding-pass::after {
    right: -20px;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.45rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
}

.timeline-item.completed::before {
    background: var(--bs-success);
    border-color: var(--bs-success);
}

/* Trip Card Styles from user-trips.html */
.trip-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: box-shadow 0.3s, border-color 0.3s;
    margin-bottom: 1rem;
}

.trip-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}
