:root {
  --dj-primary: #1e3c72;
  --dj-primary-dark: #12284b;
  --dj-primary-light: #2a5298;
  --dj-accent: #f59e0b;
  --dj-accent-hover: #d97706;
  --dj-success: #10b981;
  --dj-danger: #ef4444;

  --dj-white: #ffffff;
  --dj-gray-50: #f8fafc;
  --dj-gray-100: #f1f5f9;
  --dj-gray-200: #e2e8f0;
  --dj-gray-300: #cbd5e1;
  --dj-gray-400: #94a3b8;
  --dj-gray-500: #64748b;
  --dj-gray-600: #475569;
  --dj-gray-700: #334155;
  --dj-gray-800: #1e293b;
  --dj-gray-900: #0f172a;

  --dj-sp-8: 8px;
  --dj-sp-13: 13px;
  --dj-sp-21: 21px;
  --dj-sp-34: 34px;
  --dj-sp-55: 55px;
  --dj-sp-89: 89px;

  --dj-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --dj-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --dj-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --dj-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --dj-br-8: 8px;
  --dj-br-13: 13px;
  --dj-br-21: 21px;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--dj-gray-800);
  background-color: var(--dj-gray-50);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  color: var(--dj-gray-900);
}

/* Layout Helpers */
.dj-travel-section-background {
  background-color: var(--dj-gray-50);
}

.dj-d-none {
  display: none !important;
}

.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1240px !important;
  margin: 0 auto;
  padding: 0 15px;
}

a,
button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

/* --- Global Components --- */

/* Header & Navigation */
.dj-header {
  position: relative;
  z-index: 1000;
  background: var(--dj-white);
}

/* Header Refinements */
.dj-header-contact-bar {
  background: var(--dj-primary);
  color: var(--dj-white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10005 !important;
}

.dj-contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
}

.dj-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dj-white) !important;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.dj-contact-item:hover {
  opacity: 1;
}

.dj-contact-item a {
  color: var(--dj-white) !important;
  font-weight: 600;
}

.dj-header-right-section {
  display: flex;
  justify-content: flex-end;
}

.dj-header-auth-buttons {
  display: flex;
  gap: 20px;
}

.dj-header-auth-btn {
  color: var(--dj-white) !important;
  font-weight: 700;
  display: flex !important;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  font-size: 13px;
  white-space: nowrap;
}

.dj-header-auth-btn:hover {
  opacity: 1;
  color: var(--dj-accent) !important;
}

/* User Dropdown */
.dj-header-user-dropdown {
  position: relative;
}

.dj-header-user-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}

.dj-header-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: var(--dj-white);
  min-width: 200px;
  border-radius: var(--dj-br-8);
  box-shadow: var(--dj-shadow-xl);
  border: 1px solid var(--dj-gray-200);
  padding: 10px 0;
  z-index: 99999;
  display: none;
  animation: djFadeDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dj-header-user-dropdown:hover .dj-header-dropdown-menu {
  display: block;
}

.dj-header-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--dj-gray-700) !important;
  font-weight: 600;
  font-size: 14px;
}

.dj-header-dropdown-item:hover {
  background: var(--dj-gray-50);
  color: var(--dj-primary) !important;
}

.dj-header-dropdown-logout {
  color: var(--dj-danger) !important;
}

.dj-header-dropdown-divider {
  height: 1px;
  background: var(--dj-gray-100);
  margin: 8px 0;
}

/* Mobile TURSAB Badge */
.dj-mobile-tursab-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 8px;
}

/* Main Nav */
.dj-main-nav {
  border-bottom: 1px solid var(--dj-gray-100);
  background: var(--dj-white);
  box-shadow: var(--dj-shadow-sm);
}

.dj-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-nav-brand img {
  height: 65px;
  width: auto;
}

.dj-nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.dj-nav-link {
  color: var(--dj-gray-800) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 15px;
  position: relative;
}

.dj-nav-link-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dj-nav-link::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--dj-primary);
  transition: width 0.3s;
}

.dj-nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle & Menu */
.dj-mobile-toggle {
  display: none;
  background: var(--dj-gray-100);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--dj-br-8);
  font-size: 20px;
  color: var(--dj-gray-700);
  cursor: pointer;
}

.dj-travel-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--dj-white);
  z-index: 999999;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.dj-travel-mobile-menu.active {
  transform: translateX(0);
}

.dj-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  display: block !important;
}

.dj-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dj-travel-mobile-header {
  padding: 30px 25px;
  background: linear-gradient(135deg, var(--dj-primary) 0%, #1e40af 100%);
  color: var(--dj-white);
}

.dj-travel-mobile-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-travel-mobile-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--dj-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-travel-mobile-close {
  background: var(--dj-gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-gray-800);
  transition: all 0.2s;
}

.dj-travel-mobile-close:hover {
  background: var(--dj-gray-200);
  transform: rotate(90deg);
}

.dj-travel-mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 13px 0;
}

.dj-travel-mobile-item {
  border-bottom: 1px solid var(--dj-gray-100);
}

.dj-travel-mobile-link {
  display: flex;
  align-items: center;
  padding: 16px 25px;
  color: var(--dj-gray-800) !important;
  font-weight: 600;
  text-decoration: none;
  gap: 15px;
  transition: all 0.3s;
}

.dj-travel-mobile-link i:first-child {
  width: 24px;
  text-align: center;
  color: var(--dj-primary);
  font-size: 18px;
}

.dj-travel-mobile-link span {
  flex: 1;
}

.dj-travel-mobile-link i:last-child {
  font-size: 12px;
  color: var(--dj-gray-400);
}

.dj-travel-mobile-link:hover {
  background: var(--dj-gray-50);
  color: var(--dj-primary) !important;
}

.dj-travel-mobile-submenu {
  display: none;
  background: var(--dj-gray-50);
  padding: 8px 0;
}

.dj-travel-mobile-submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px 12px 64px;
  color: var(--dj-gray-600) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}

.dj-travel-mobile-submenu-item:hover {
  color: var(--dj-primary) !important;
  padding-left: 68px;
}

.dj-travel-mobile-submenu-item::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dj-gray-300);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .dj-nav-menu {
    display: none !important;
  }

  .dj-mobile-toggle {
    display: block;
  }

  .dj-contact-info {
    display: none;
  }
}

/* Tab Visibility Safeguard */
.tab-content>.tab-pane {
  display: none;
}

.tab-content>.tab-pane.active,
.tab-content>.tab-pane.show {
  display: block !important;
}

/* Hero Slider Base */
.dj-hero-slider-container {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: var(--dj-br-13);
  background: var(--dj-gray-100);
  margin-bottom: var(--dj-sp-21);
}

.dj-hero-slider {
  height: 100%;
  position: relative;
  width: 100%;
}

.dj-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.dj-hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* --- Home Components --- */

/* Hero & Search Engine Grid */
.dj-mobile-reorder {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}

@media (max-width: 991px) {
  .dj-mobile-reorder {
    flex-direction: column !important;
  }

  .dj-mobile-reorder>div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Search Engine Widget */
.dj-booking-widget {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-xl);
  overflow: hidden;
  border: 1px solid var(--dj-gray-200);
}

.dj-booking-tabs {
  background: var(--dj-gray-100);
  padding: 5px;
}

.dj-booking-tabs .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--dj-gray-500);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--dj-br-8);
  flex: 1;
  text-align: center;
}

.dj-booking-tabs .nav-tabs .nav-link.active {
  background: var(--dj-white);
  color: var(--dj-primary);
  box-shadow: var(--dj-shadow-sm);
}

/* Search Engine Widget Form Elements */
.dj-booking-form {
  padding-top: var(--dj-sp-13);
}

.dj-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-gray-700);
  margin-bottom: var(--dj-sp-8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dj-form-control {
  width: 100% !important;
  padding: 12px 16px;
  border-radius: var(--dj-br-8);
  border: 1.5px solid var(--dj-gray-200);
  background: var(--dj-white);
  color: var(--dj-gray-800);
  font-weight: 600;
  font-size: 15px;
  box-sizing: border-box;
}

.dj-form-control:focus {
  border-color: var(--dj-primary);
  box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
  outline: none;
}

/* Custom Dropdown for Dates/Airports */
.dj-checkbox-dropdown {
  position: relative;
}

.dj-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.dj-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--dj-white);
  border-radius: var(--dj-br-8);
  box-shadow: var(--dj-shadow-xl);
  border: 1px solid var(--dj-gray-200);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.dj-dropdown-menu.show {
  display: block;
  animation: djFadeDown 0.2s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dj-dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.dj-dropdown-item:hover {
  background: var(--dj-gray-50);
}

.dj-dropdown-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--dj-primary);
}

/* Search Button */
.dj-search-btn-tour,
.dj-search-btn-hotel,
.dj-search-btn-flight {
  width: 100%;
  padding: 16px;
  border-radius: var(--dj-br-8);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  color: var(--dj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--dj-sp-13);
}

.dj-search-btn-tour {
  background: linear-gradient(135deg, var(--dj-success) 0%, #059669 100%);
}

.dj-search-btn-hotel {
  background: linear-gradient(135deg, var(--dj-accent) 0%, var(--dj-accent-hover) 100%);
}

.dj-search-btn-flight {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.dj-search-btn-tour:hover,
.dj-search-btn-hotel:hover,
.dj-search-btn-flight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Loading States */
.dj-tour-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 20px;
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  margin: 20px 0;
  width: 100%;
}

.dj-spinner {
  width: 55px;
  height: 55px;
  border: 5px solid var(--dj-gray-100);
  border-top-color: var(--dj-primary);
  border-radius: 50%;
  animation: djSpin 1s linear infinite;
}

@keyframes djSpin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Popular Routes & Destinations (Home) --- */
.dj-popular-routes-title, .dj-section-title {
  font-size: 34px !important;
  font-weight: 800 !important;
  color: var(--dj-gray-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.dj-popular-routes-title i, .dj-section-title i {
  color: var(--dj-primary);
  font-size: 28px;
}

.dj-routes-filter-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--dj-gray-800);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dj-routes-filter-title i {
  color: var(--dj-primary);
  opacity: 0.8;
}

.dj-routes-destinations-grid .row {
  margin: 0 -10px;
}

.dj-destination-card {
  position: relative;
  background: var(--dj-white);
  border-radius: var(--dj-br-8);
  overflow: hidden;
  box-shadow: var(--dj-shadow-lg);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dj-gray-100);
  margin-bottom: 25px;
}

.dj-destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dj-shadow-xl);
  border-color: var(--dj-primary-light);
}

.dj-destination-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.dj-destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dj-destination-card:hover .dj-destination-card-img {
  transform: scale(1.1);
}

.dj-destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dj-destination-card:hover .dj-destination-card-overlay {
  opacity: 1;
}

.dj-destination-card-overlay-icon {
  color: var(--dj-white);
  font-size: 34px;
  transform: scale(0.6);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dj-destination-card:hover .dj-destination-card-overlay-icon {
  transform: scale(1);
}

.dj-destination-card-info {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}

.dj-destination-card-content {
  flex: 1;
}

.dj-destination-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-gray-900);
  text-decoration: none !important;
  display: block;
  margin-bottom: 5px;
}

.dj-destination-card-desc {
  font-size: 14px;
  color: var(--dj-gray-600);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dj-destination-country {
  color: var(--dj-primary);
  font-weight: 600;
}

.dj-destination-visa {
  color: var(--dj-gray-500);
  font-weight: 700;
}

.dj-destination-card-button {
  width: 44px;
  height: 44px;
  background: var(--dj-gray-50);
  color: var(--dj-gray-900);
  border-radius: var(--dj-br-13);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.dj-destination-card:hover .dj-destination-card-button {
  background: var(--dj-primary);
  color: var(--dj-white);
  transform: rotate(-15deg);
}

/* --- Calendar & Accordion Refinements --- */
.dj-calendar-month-header {
  background: var(--dj-white);
  padding: 21px 34px;
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 21px;
  border: 1px solid var(--dj-gray-100);
}

.dj-date-header {
  background: var(--dj-white);
  padding: 16px 24px;
  border-radius: var(--dj-br-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--dj-gray-100);
  margin-bottom: 13px;
}

.dj-date-header:hover, .dj-date-header.active {
  background: var(--dj-gray-50);
  border-color: var(--dj-primary-light);
}

.dj-date-text {
  font-weight: 700;
  color: var(--dj-gray-800);
  font-size: 16px;
}

.dj-date-arrow i {
  transition: transform 0.3s ease;
}

.dj-date-header.active .dj-date-arrow i {
  transform: rotate(180deg);
}

.dj-date-tours {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
}

.dj-date-tours.active {
  max-height: 2000px;
  margin-bottom: 21px;
}

.dj-expand-all-btn {
  background: var(--dj-primary-light);
  color: var(--dj-primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--dj-br-8);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.dj-expand-all-btn:hover {
  background: var(--dj-primary);
  color: var(--dj-white);
}

/* --- Premium Dashboard Reservation Detail --- */
.dj-res-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dj-gray-400);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.dj-res-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dj-gray-800);
}

/* .dj-res-detail-card-premium border-top removed as per user request */

/* --- TravelEngine Grid & Result Refinements --- */
#tourResultsContainer {
  margin: 0 -15px;
}

.tour-card-wrapper {
  padding: 0;
}

.tour-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

/* Hero Slider Navigation */
.dj-hero-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.dj-slider-prev,
.dj-slider-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--dj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.dj-slider-prev:hover,
.dj-slider-next:hover {
  background: var(--dj-white);
  color: var(--dj-primary);
}

.dj-hero-banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dj-hero-banner-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dj-hero-banner-indicators span.active {
  background: var(--dj-white);
  width: 24px;
  border-radius: 10px;
}

/* TURSAB Banner */
.dj-tursab-certification-banner {
  background: linear-gradient(135deg, var(--dj-primary) 0%, var(--dj-primary-light) 100%);
  border-radius: var(--dj-br-8);
  padding: 15px 25px;
  color: var(--dj-white);
  box-shadow: var(--dj-shadow-md);
  margin: 20px 0;
}

.dj-tursab-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-tursab-icon {
  font-size: 24px;
}

.dj-tursab-title {
  font-weight: 700;
  font-size: 16px;
}

.dj-tursab-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Promo Cards */
.dj-promo-card {
  border-radius: var(--dj-br-13);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--dj-gray-200);
  background: var(--dj-white);
  height: 100%;
}

.dj-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dj-shadow-xl);
}

.dj-promo-card-egypt {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: var(--dj-white);
}

.dj-promo-card-luxury {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  color: var(--dj-white);
}

.dj-promo-card-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 32px;
  opacity: 0.2;
}

/* Footer Refinements */
.footer {
  padding: 80px 0 0;
  background: var(--dj-dark);
  color: var(--dj-white);
}

.footer-section {
  height: 100%;
}

.section-header h6 {
  color: var(--dj-white);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.section-header h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--dj-primary);
  border-radius: 2px;
}

.footer-link {
  color: var(--dj-gray-400) !important;
  text-decoration: none !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--dj-white) !important;
  transform: translateX(5px);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white) !important;
  transition: all 0.3s;
  margin-right: 10px;
}

.social-link:hover {
  background: var(--dj-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
}

.legal-links a {
  color: var(--dj-gray-500) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--dj-white) !important;
}

.dj-promo-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.dj-promo-card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  color: inherit;
}

.dj-promo-card-subtitle {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 20px;
  color: inherit;
}

.dj-promo-code {
  margin-bottom: 15px;
}

.dj-promo-code-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.dj-promo-code-value {
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.dj-promo-card-luxury .dj-promo-code-value {
  background: rgba(245, 158, 11, 0.2);
  color: var(--dj-accent);
  border-color: var(--dj-accent);
}

.dj-discount-amount {
  font-size: 24px;
  font-weight: 900;
  display: block;
  line-height: 1.2;
}

.dj-discount-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Tour Destination Category Tabs */
.dj-hotel-destination-tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  list-style: none;
  border-bottom: 1px solid var(--dj-gray-200);
}

.dj-hotel-destination-tabs::-webkit-scrollbar {
  height: 4px;
}

.dj-hotel-destination-tabs::-webkit-scrollbar-thumb {
  background: var(--dj-gray-300);
  border-radius: 4px;
}

.dj-hotel-tab {
  white-space: nowrap;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: var(--dj-gray-600) !important;
  background: var(--dj-gray-100) !important;
  border: none !important;
}

.dj-hotel-tab.active {
  background: var(--dj-primary) !important;
  color: var(--dj-white) !important;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

/* Tour Card Base (Home & Engine) */
.dj-tour-card,
.tour-card,
.dj-hotel-card {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  overflow: hidden;
  box-shadow: var(--dj-shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid var(--dj-gray-200);
  display: flex;
  flex-direction: column;
}

.dj-tour-card:hover,
.tour-card:hover,
.dj-hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dj-shadow-xl);
  border-color: var(--dj-primary-light);
}

.card-image,
.dj-hotel-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.tour-card .card-image {
  height: 185px !important;
}

.card-image img,
.dj-hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dj-tour-card:hover img,
.tour-card:hover img,
.dj-hotel-card:hover img {
  transform: scale(1.1);
}

.card-info,
.dj-hotel-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title,
.dj-hotel-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dj-gray-900) !important;
}

.card-program,
.dj-hotel-location {
  font-size: 13px;
  color: var(--dj-gray-500);
  margin-bottom: 15px;
}

.dj-tour-price,
.dj-hotel-discounted-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--dj-success);
}

.dj-hotel-discount {
  display: inline-block;
  background: var(--dj-gray-100);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.dj-hotel-discount-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dj-primary);
  text-transform: uppercase;
}

.dj-hotel-price-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.dj-hotel-original-price {
  font-size: 13px;
  color: var(--dj-gray-400);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.dj-hotel-discounted-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--dj-success);
}

/* --- Product Page Components --- */

/* Breadcrumbs */
.dj-travel-breadcrumb-section {
  padding: 15px 0;
  background: var(--dj-gray-100);
}

.dj-breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.dj-breadcrumb-link {
  color: var(--dj-primary) !important;
}

.dj-breadcrumb-separator {
  margin: 0 10px;
  font-size: 10px;
  color: var(--dj-gray-400);
}

.dj-breadcrumb-current {
  color: var(--dj-gray-500);
  font-weight: 800;
}

.dj-travel-container {
  background: var(--dj-gray-50);
}

.dj-travel-main-section {
  margin-top: 30px;
}

/* Section Container */
.dj-travel-section-container {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-md);
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid var(--dj-gray-200);
}

.dj-travel-section-header {
  padding: 14px 18px;
  background: var(--dj-gray-50);
  border-bottom: 1px solid var(--dj-gray-100);
  cursor: pointer;
}

.dj-travel-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-travel-section-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--dj-primary);
  font-size: 16px;
}

.dj-section-chevron {
  font-size: 14px;
  color: var(--dj-gray-400);
  transition: transform 0.3s;
}

.dj-travel-section-header[aria-expanded="true"] .dj-section-chevron {
  transform: rotate(180deg);
}

.dj-travel-section-content {
  padding: 25px;
  font-size: 14px;
}

/* Image Gallery */
.dj-image-gallery {
  margin-bottom: 25px;
  border-radius: var(--dj-br-8);
  overflow: hidden;
  box-shadow: var(--dj-shadow-lg);
}

.dj-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Glider Navigation Overrides */
.dj-image-gallery .glider-contain {
  position: relative;
}

.dj-image-gallery .glider-prev,
.dj-image-gallery .glider-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  border-radius: 50% !important;
  color: var(--dj-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  left: auto;
  right: auto;
}

.dj-image-gallery .glider-prev {
  left: 20px !important;
}

.dj-image-gallery .glider-next {
  right: 20px !important;
}

.dj-image-gallery .glider-prev:hover,
.dj-image-gallery .glider-next:hover {
  background: var(--dj-white) !important;
  color: var(--dj-primary-dark) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.dj-image-gallery .glider-prev i,
.dj-image-gallery .glider-next i {
  font-size: 18px;
}

/* Tour Meta Grid */
.dj-tour-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.dj-meta-item {
  background: var(--dj-gray-50);
  padding: 15px;
  border-radius: var(--dj-br-8);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--dj-gray-100);
}

.dj-meta-icon {
  width: 40px;
  height: 40px;
  background: var(--dj-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-primary);
  font-size: 18px;
  box-shadow: var(--dj-shadow-sm);
}

.dj-meta-content h6 {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--dj-gray-500);
  letter-spacing: 0.5px;
}

.dj-meta-content span {
  font-weight: 800;
  font-size: 14px;
  color: var(--dj-gray-900);
}

/* Share Actions */
.dj-share-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--dj-gray-100);
}

.dj-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dj-share-buttons {
  display: flex;
  gap: 10px;
}

.dj-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white) !important;
  font-size: 16px;
}

.dj-share-whatsapp {
  background: #25d366;
}

.dj-share-telegram {
  background: #0088cc;
}

.dj-share-x {
  background: #000000;
}

.dj-share-facebook {
  background: #1877f2;
}

/* Reservation Form */
.dj-form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--dj-br-8);
  border: 1.5px solid var(--dj-gray-200);
  appearance: none;
  background: var(--dj-white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 16px center/16px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dj-gray-800);
}

.dj-summary-card {
  background: var(--dj-gray-50);
  border: 1px dashed var(--dj-gray-300);
  border-radius: var(--dj-br-8);
  padding: 15px;
  margin: 20px 0;
}

.dj-summary-title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dj-gray-100);
  color: var(--dj-gray-900);
}

.dj-room-config {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dj-gray-100);
}

.dj-room-config:last-child {
  border-bottom: none;
}

.dj-room-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--dj-gray-900);
  margin-bottom: 10px;
}

.dj-room-title i {
  font-size: 18px;
  color: var(--dj-primary);
}

.dj-guest-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: rgba(248, 250, 252, 0.5);
  padding: 20px;
  border-radius: var(--dj-br-13);
  border: 1px solid var(--dj-gray-100);
}

.dj-guest-counter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dj-guest-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--dj-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dj-guest-label i {
  font-size: 14px;
}

.dj-counter-control {
  display: flex;
  align-items: center;
  background: var(--dj-white);
  border: 1.5px solid var(--dj-gray-200);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  box-shadow: var(--dj-shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dj-counter-control:focus-within {
  border-color: var(--dj-primary);
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.dj-counter-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--dj-gray-50);
  color: var(--dj-gray-800);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dj-counter-btn:hover {
  background: var(--dj-primary);
  color: var(--dj-white);
}

.dj-counter-val {
  width: 45px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--dj-gray-900);
  outline: none;
}

.dj-total-card {
  background: var(--dj-primary);
  border-radius: var(--dj-br-8);
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.dj-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-total-value {
  font-size: 24px;
  font-weight: 900;
}

.dj-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dj-summary-label {
  font-size: 13px;
  color: var(--dj-gray-600);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.dj-summary-value {
  font-weight: 800;
  color: var(--dj-gray-900);
  font-size: 14px;
}

.dj-reservation-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--dj-accent) 0%, var(--dj-accent-hover) 100%);
  color: var(--dj-white) !important;
  border: none;
  border-radius: var(--dj-br-8);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.dj-reservation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.dj-details-btn {
  padding: 8px 15px !important;
  font-size: 13px !important;
  height: auto !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.dj-help-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dj-gray-500) !important;
}

/* Pricing Table / Rows */
.dj-pricing-hotel-row {
  border-bottom: 1px solid var(--dj-gray-100);
  display: flex;
  flex-direction: column;
}

.dj-pricing-hotel-info {
  padding: 20px 25px;
}

.dj-pricing-hotel-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--dj-gray-900);
}

.dj-pricing-hotel-stars i {
  font-size: 10px;
  color: #ffc107;
}

.dj-travel-table-group {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--dj-gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dj-travel-table-group-header {
  background: var(--dj-gray-50);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dj-gray-100);
}

.dj-travel-table-group-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dj-gray-900);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dj-travel-table-group-title i {
  color: var(--dj-primary);
  font-size: 20px;
}

.dj-pricing-hotel-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--dj-gray-50);
  padding: 15px 25px 25px 25px;
  gap: 12px;
}

@media (min-width: 768px) {
  .dj-pricing-hotel-prices {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* --- Tour Services Section --- */
.dj-tour-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .dj-tour-services-grid {
    grid-template-columns: 1fr;
  }
}

.dj-service-card {
  display: flex;
  flex-direction: column;
}

.dj-service-header {
  margin-bottom: 20px;
}

.dj-service-header i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.dj-service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-gray-900);
  margin-bottom: 5px;
}

.dj-service-subtitle {
  font-size: 13px;
  color: var(--dj-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.dj-service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dj-service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--dj-gray-800);
  line-height: 1.6;
}

.dj-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dj-gray-500);
}

.dj-price-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--dj-white);
  border-radius: var(--dj-br-8);
  border: 1px solid var(--dj-gray-100);
  transition: all 0.3s ease;
}

.dj-price-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--dj-primary-light);
}

.dj-price-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dj-price-icon {
  font-size: 16px;
  color: var(--dj-primary);
  width: 20px;
  text-align: center;
}

.dj-price-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--dj-gray-500);
  letter-spacing: 0.5px;
}

.dj-price-value {
  font-size: 16px;
  font-weight: 900;
  color: var(--dj-gray-900);
  margin-left: 28px;
}

/* Accommodation Section - Sidebar */
.dj-accommodation-section {
  background: var(--dj-gray-50) !important;
  border: 1px solid var(--dj-gray-200) !important;
  border-radius: var(--dj-br-13) !important;
  padding: 21px !important;
  margin-bottom: 21px !important;
}

.dj-section-subtitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--dj-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex !important;
  align-items: center !important;
}

.dj-accommodation-container {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.dj-hotel-rez-btn {
  background: var(--dj-primary) !important;
  color: var(--dj-white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  border: none !important;
  transition: all 0.3s ease !important;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.dj-hotel-rez-btn:hover {
  background: var(--dj-primary-dark) !important;
  color: var(--dj-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

/* Extra Tours & Services */
.dj-extra-tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dj-extra-tours-grid.dj-two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.dj-extra-tour-card {
  background: var(--dj-white);
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-13);
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dj-extra-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dj-shadow-lg);
  border-color: var(--dj-primary);
}

.dj-extra-tour-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.dj-extra-tour-header {
  display: flex;
  gap: 15px;
}

.dj-extra-tour-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--dj-gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-primary);
  font-size: 18px;
}

.dj-extra-tour-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--dj-gray-900);
  margin-bottom: 5px;
}

.dj-extra-tour-description {
  font-size: 13px;
  color: var(--dj-gray-600);
  margin: 0;
  line-height: 1.5;
}

.dj-extra-tour-pricing {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--dj-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-extra-tour-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--dj-primary);
}

.dj-price-strike {
  text-decoration: line-through;
  color: var(--dj-gray-400);
  font-size: 14px;
  margin-right: 8px;
}

.dj-price-new {
  color: var(--dj-red);
  font-weight: 800;
}

.dj-feature-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--dj-gray-100);
  color: var(--dj-gray-700);
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Visa Information Card */
.dj-visa-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dj-passport-type {
  margin-bottom: 10px;
}

.dj-passport-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--dj-gray-800);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-passport-title i {
  color: var(--dj-secondary);
  font-size: 18px;
}

.dj-visa-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--dj-primary);
  border-radius: var(--dj-br-8);
  padding: 15px;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
}

.dj-visa-card.dj-visa-required {
  border-left-color: var(--dj-red);
  background: rgba(239, 68, 68, 0.05);
}

.dj-visa-card.dj-visa-free {
  border-left-color: var(--dj-green);
  background: rgba(16, 185, 129, 0.05);
}

.dj-visa-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--dj-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--dj-shadow-sm);
}

.dj-visa-required .dj-visa-icon {
  color: var(--dj-red);
}

.dj-visa-free .dj-visa-icon {
  color: var(--dj-green);
}

.dj-visa-content {
  flex-grow: 1;
}

.dj-visa-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.dj-visa-description {
  font-size: 12.5px;
  color: var(--dj-gray-600);
  margin-bottom: 10px;
}

.dj-visa-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dj-visa-detail-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--dj-gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dj-visa-detail-item i {
  color: var(--dj-primary);
}

.dj-visa-important-notes {
  background: var(--dj-gray-50);
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-13);
  padding: 20px;
}

.dj-visa-important-notes h6 {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--dj-gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dj-visa-important-notes h6 i {
  color: var(--dj-primary);
}

.dj-visa-important-notes ul {
  padding-left: 20px;
  margin: 0;
}

.dj-visa-important-notes li {
  font-size: 13px;
  color: var(--dj-gray-600);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Popular Tours Slider */
.dj-popular-tours-slider-wrapper {
  position: relative;
  padding: 10px 0;
}

.dj-tour-card {
  background: var(--dj-white);
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-13);
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 10px;
}

.dj-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dj-shadow-lg);
  border-color: var(--dj-primary);
}

.dj-tour-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dj-tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dj-tour-card:hover .dj-tour-card-image img {
  transform: scale(1.1);
}

.dj-tour-card-body {
  padding: 15px;
}

.dj-tour-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dj-gray-900);
  margin-bottom: 10px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dj-tour-card-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--dj-primary);
  margin-bottom: 12px;
}

/* Glider Customization */
.glider-prev,
.glider-next {
  width: 40px;
  height: 40px;
  background: var(--dj-white) !important;
  border-radius: 50% !important;
  box-shadow: var(--dj-shadow-md);
  color: var(--dj-primary) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
  position: absolute !important;
  top: 45% !important;
  z-index: 10;
}

.glider-prev:hover,
.glider-next:hover {
  background: var(--dj-primary) !important;
  color: var(--dj-white) !important;
}

.glider-prev {
  left: -20px !important;
}

.glider-next {
  right: -20px !important;
}

.glider-dots {
  margin-top: 20px !important;
}

.glider-dot {
  width: 10px;
  height: 10px;
  background: var(--dj-gray-300) !important;
}

.glider-dot.active {
  background: var(--dj-primary) !important;
  width: 25px;
  border-radius: 5px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .dj-tour-meta-grid {
    grid-template-columns: 1fr;
  }

  .dj-pricing-hotel-row {
    grid-template-columns: 1fr;
  }

  .glider-prev {
    left: 5px !important;
  }

  .glider-next {
    right: 5px !important;
  }
}

/* Sticky Sidebar Logic */
@media (min-width: 992px) {
  .dj-product-main-row {
    display: flex;
    align-items: flex-start;
  }

  .dj-product-main-row>.col-lg-4 {
    position: sticky;
    top: 20px;
    height: fit-content;
  }
}

/* Extra Services & Tabs */
.dj-extra-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.dj-extra-service-item {
  background: var(--dj-gray-50);
  padding: 15px;
  border-radius: var(--dj-br-8);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--dj-gray-100);
  font-weight: 700;
  font-size: 14px;
}

.dj-extra-service-icon {
  color: var(--dj-success);
  font-size: 18px;
}

/* Footer */
.footer {
  background: var(--dj-gray-900);
  color: var(--dj-white);
  padding: 80px 0 40px;
}

.dj-footer-certification-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dj-br-13);
  padding: 25px;
}

.dj-cert-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.dj-cert-icon {
  width: 44px;
  height: 44px;
  background: var(--dj-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white);
  font-size: 20px;
}

.dj-cert-title {
  display: flex;
  flex-direction: column;
}

.dj-cert-company {
  font-weight: 800;
  font-size: 16px;
  color: var(--dj-white);
}

.dj-cert-subtitle {
  font-size: 11px;
  color: var(--dj-gray-400);
  line-height: 1.4;
}

.dj-footer-certification-card img {
  width: 100%;
  height: auto;
  border-radius: var(--dj-br-8);
}

.footer-widget-title {
  color: var(--dj-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-widget-title i {
  color: var(--dj-accent);
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--dj-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-link {
  color: var(--dj-gray-400) !important;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link:hover {
  color: var(--dj-white) !important;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white) !important;
  font-size: 18px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--dj-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  font-size: 13px;
  color: var(--dj-gray-500);
}

.legal-links a {
  color: var(--dj-gray-500) !important;
  font-weight: 600;
}

.legal-links a:hover {
  color: var(--dj-white) !important;
}

.copyright a {
  color: var(--dj-accent) !important;
  font-weight: 700;
}

/* Floating Elements */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-contact a {
  width: 60px;
  height: 60px;
  background: var(--dj-success);
  color: var(--dj-white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  animation: dj-pulse 2s infinite;
}

@keyframes dj-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* KVKK Banner */
.dj-kvkk-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  color: var(--dj-white);
  padding: 20px;
  z-index: 2100;
  display: none;
  animation: djSlideUp 0.5s ease;
}

.dj-kvkk-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.dj-kvkk-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.dj-kvkk-accept-btn {
  background: var(--dj-accent);
  color: var(--dj-white);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes djSlideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .dj-kvkk-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .floating-contact {
    bottom: 80px;
  }
}

/* --- TravelEngine Page Components --- */

/* Search Listing Layout */
.dj-filter-container-pro {
  margin-bottom: 25px;
}

.dj-filter-card {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-md);
  border: 1px solid var(--dj-gray-200);
}

.dj-filter-header {
  padding: 12px 18px;
}

.dj-filter-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dj-results-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dj-gray-100);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--dj-gray-800);
}

.dj-results-count {
  color: var(--dj-primary);
}

.dj-filter-controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dj-clear-btn {
  background: var(--dj-gray-100);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-gray-600) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.dj-clear-btn:hover {
  background: #fee2e2;
  color: var(--dj-danger) !important;
}

.dj-sort-selector {
  position: relative;
}

.dj-sort-btn {
  background: var(--dj-white);
  border: 1.5px solid var(--dj-gray-200);
  padding: 10px 18px;
  border-radius: var(--dj-br-13);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--dj-shadow-sm);
}

.dj-sort-btn:hover {
  border-color: var(--dj-primary);
  background: var(--dj-gray-50);
}

.dj-sort-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-2xl);
  border: 1px solid var(--dj-gray-200);
  z-index: 1100;
  display: none;
  overflow: hidden;
  animation: djFadeUp 0.3s ease-out;
}

.dj-sort-selector.open .dj-sort-menu {
  display: block;
}

.dj-sort-option {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 14px;
  color: var(--dj-gray-700);
}

.dj-sort-option:hover {
  background: var(--dj-gray-50);
  color: var(--dj-primary);
}

.dj-sort-option.active {
  background: var(--dj-gray-100);
  color: var(--dj-primary);
}

.dj-sort-check {
  margin-left: auto;
  opacity: 0;
  color: var(--dj-primary);
}

.dj-sort-option.active .dj-sort-check {
  opacity: 1;
}

/* Active Filter Chips */
.dj-filter-header-bottom {
  border-top: 1px solid var(--dj-gray-100);
  margin-top: 20px;
  padding-top: 20px;
}

.dj-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dj-filter-chip {
  background: var(--dj-primary);
  color: var(--dj-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(11, 75, 175, 0.2);
  transition: all 0.3s ease;
}

.dj-filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(11, 75, 175, 0.3);
}

.dj-filter-chip.dj-filter-empty {
  background: var(--dj-gray-100);
  color: var(--dj-gray-400);
  box-shadow: none;
}

/* Results Grid */
.dj-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1199px) {
  .dj-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dj-results-grid {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.dj-tour-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.dj-pagination-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dj-white);
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-8);
  font-weight: 700;
  color: var(--dj-gray-700) !important;
}

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

.dj-pagination-btn:hover:not(.disabled) {
  border-color: var(--dj-primary);
  color: var(--dj-primary) !important;
}

.dj-pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



/* Interaction Helpers */
.dj-kvkk-banner.show {
  display: block;
}

.dj-travel-mobile-item-expanded .dj-travel-mobile-submenu {
  display: block;
}

.dj-travel-mobile-submenu {
  display: none;
  padding-left: 20px;
  background: var(--dj-gray-50);
}

.dj-travel-mobile-link i.fa-chevron-down {
  transition: transform 0.3s;
}

.dj-travel-mobile-item-expanded .dj-travel-mobile-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Animation & WOW.js Helpers */
.wow {
  visibility: hidden;
}

.fadeIn {
  animation-name: djFadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.wow.animated {
  visibility: visible;
}

@keyframes djFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes djFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modalbox Styling (Login/Register) */
.dj-modal-dialog {
  max-width: 480px;
}

.dj-modal-content {
  border-radius: var(--dj-br-8);
  border: none;
  box-shadow: var(--dj-shadow-2xl);
  overflow: hidden;
}

.dj-modal-header {
  padding: 20px 40px 0px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-modal-title {
  font-weight: 800;
  font-size: 24px;
  color: var(--dj-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dj-modal-body {
  padding: 15px 40px 40px;
}

.dj-tab-buttons {
  display: flex;
  background: var(--dj-gray-100);
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.login-tab-btn,
.register-type-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dj-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.login-tab-btn.active,
.register-type-btn.active {
  background: var(--dj-white);
  color: var(--dj-primary);
  box-shadow: var(--dj-shadow-sm);
}

.dj-login-form,
.dj-register-form {
  display: block;
}

.login-tab-pane:not(.active) {
  display: none;
}

.dj-form-group {
  margin-bottom: 10px;
}

.dj-form-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--dj-gray-700);
  margin-bottom: 8px;
  padding-left: 2px;
}

.dj-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.dj-input-group i:first-child {
  position: absolute;
  left: 18px;
  color: var(--dj-primary);
  opacity: 0.6;
}

.dj-form-input {
  width: 100%;
  padding: 14px 45px;
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-13);
  background: var(--dj-gray-50);
  font-size: 14px;
  font-weight: 600;
  color: var(--dj-gray-800);
  transition: all 0.3s;
}

.dj-form-input:focus {
  background: var(--dj-white);
  border-color: var(--dj-primary);
  box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
  outline: none;
}

.password-toggle {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dj-gray-400);
  cursor: pointer;
  padding: 5px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dj-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.dj-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dj-gray-600);
  cursor: pointer;
}

.dj-checkbox input {
  width: 18px;
  height: 18px;
  border: 2px solid var(--dj-gray-300);
  border-radius: 4px;
  accent-color: var(--dj-primary);
}

.dj-forgot-password {
  color: var(--dj-primary) !important;
  font-weight: 700;
  font-size: 13px;
}

.dj-btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--dj-primary);
  color: var(--dj-white);
  border: none;
  border-radius: var(--dj-br-13);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.dj-btn-submit:hover {
  background: var(--dj-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.dj-switch-form {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--dj-gray-500);
  font-weight: 600;
}

.dj-switch-form a {
  color: var(--dj-primary) !important;
  font-weight: 800;
}

/* Hotel & Flight Card Refinements */
.dj-hotel-card,
.dj-flight-card {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dj-hotel-card:hover,
.dj-flight-card:hover {
  transform: translateY(-8px);
}

/* Bootstrap Safeguards */
.modal:not(.show) {
  display: none !important;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

/* Grid & Layout Refinements */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-8,
.col-lg-4,
.col-4,
.col-6 {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }

  .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}

.col-4 {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
}

.col-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.dj-b-r-50 {
  border-radius: 50px !important;
}

/* --- Robust Layout Utilities --- */
.dj-hide-force {
  display: none !important;
}

.dj-grid-3-col {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dj-grid-3-col>div {
  width: 100% !important;
  max-width: 100% !important;
}

/* Animations & WOW.js Compatibility */
.wow {
  visibility: hidden;
}

.fadeIn {
  animation: djFadeIn 1s forwards;
}

@keyframes djFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

.box-list-tours.fadeIn {
  visibility: visible !important;
  opacity: 1 !important;
}

/* --- Global Breadcrumbs --- */
.dj-breadcrumb-wrapper {
  background: var(--dj-gray-100);
  padding: 15px 0;
  border-bottom: 1px solid var(--dj-gray-200);
}

.dj-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.dj-breadcrumb-link {
  color: var(--dj-primary) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.dj-breadcrumb-link:hover {
  color: var(--dj-primary-light) !important;
}

.dj-breadcrumb-separator {
  color: var(--dj-gray-400);
  font-size: 10px;
}

/* --- Dashboard Redesign --- */
.dj-user-dashboard {
  background: var(--dj-gray-50);
  padding: 40px 0;
  min-height: 80vh;
}

.dj-user-nav {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  padding: 15px;
  box-shadow: var(--dj-shadow-md);
  margin-bottom: 30px;
}

.dj-user-nav-item {
  display: flex !important;
  align-items: center;
  padding: 12px 18px;
  color: var(--dj-gray-700) !important;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  margin-bottom: 8px;
  text-decoration: none !important;
}

.dj-user-nav-item i {
  margin-right: 12px;
  font-size: 17px;
  width: 24px;
}

.dj-user-nav-item:hover,
.dj-user-nav-item.active {
  background: var(--dj-primary);
  color: var(--dj-white) !important;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.25);
}

.dj-user-content {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  padding: 35px;
  box-shadow: var(--dj-shadow-md);
  border: 1px solid var(--dj-gray-100);
}

.dj-user-tab {
  display: none;
}

.dj-user-tab.active {
  display: block;
  animation: djFadeIn 0.4s ease-out;
}

.dj-user-stats-row {
  margin-bottom: 30px;
}

.dj-user-stat-card {
  background: var(--dj-white);
  padding: 24px;
  border-radius: var(--dj-br-13);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--dj-gray-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dj-user-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dj-shadow-lg);
}

.dj-user-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dj-stat-blue .dj-user-stat-icon {
  background: #eff6ff;
  color: #1e40af;
}

.dj-stat-green .dj-user-stat-icon {
  background: #f0fdf4;
  color: #166534;
}

.dj-stat-orange .dj-user-stat-icon {
  background: #fff7ed;
  color: #9a3412;
}

.dj-stat-purple .dj-user-stat-icon {
  background: #faf5ff;
  color: #6b21a8;
}

.dj-user-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--dj-gray-900);
}

.dj-user-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dj-gray-500);
}

.dj-user-table {
  width: 100%;
}

.dj-user-table th {
  background: var(--dj-gray-50);
  padding: 16px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--dj-gray-600);
  border: none;
}

.dj-user-table td {
  padding: 18px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--dj-gray-50);
}

.dj-res-number {
  font-weight: 800;
  color: var(--dj-primary);
}

/* --- Contact Page Redesign --- */
.card-contact {
  background: var(--dj-white);
  padding: 40px;
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-md);
  border: 1px solid var(--dj-gray-100);
  transition: all 0.3s;
  text-align: center;
}

.card-contact:hover {
  transform: translateY(-10px);
  box-shadow: var(--dj-shadow-xl);
}

.card-icon {
  width: 65px;
  height: 65px;
  background: var(--dj-primary-light);
  color: var(--dj-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
}

.form-contact {
  background: var(--dj-white);
  padding: 50px;
  border-radius: var(--dj-br-13);
  box-shadow: var(--dj-shadow-lg);
  border: 1px solid var(--dj-gray-100);
}

.form-group label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dj-gray-800);
}

.btn-book {
  background: var(--dj-primary);
  color: var(--dj-white) !important;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 800;
  border: none;
  transition: all 0.3s;
}

.btn-book:hover {
  background: var(--dj-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

/* --- Calendar Page Redesign --- */
.dj-calendar-header-card {
  padding: 60px;
  background: linear-gradient(135deg, var(--dj-primary) 0%, var(--dj-primary-light) 100%);
  color: var(--dj-white);
  border-radius: var(--dj-br-13);
  text-align: center;
  margin-bottom: 40px;
}

.dj-calendar-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.dj-tour-item {
  display: flex;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid var(--dj-gray-100);
  gap: 40px;
  transition: background 0.2s;
}

.dj-tour-item:hover {
  background: var(--dj-gray-50);
}

.dj-tour-info {
  flex-grow: 1;
}

.dj-tour-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-gray-900);
  margin-bottom: 10px;
}

.dj-tour-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  min-width: 180px;
}

.dj-tour-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--dj-success);
}

.dj-tour-details-btn {
  background: var(--dj-primary);
  color: var(--dj-white) !important;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.3s;
}

/* --- Group Request Redesign --- */
.dj-group-request-section {
  background: linear-gradient(135deg, var(--dj-primary) 0%, var(--dj-primary-light) 100%);
  min-height: 100vh;
  padding: 60px 0;
}

.dj-group-request-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.dj-group-request-header {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dj-white);
}

.dj-group-request-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.dj-group-request-form {
  background: var(--dj-white);
  border-radius: 16px;
  box-shadow: var(--dj-shadow-xl);
  padding: 40px;
  position: relative;
  border: 1px solid var(--dj-gray-100);
}

.dj-form-section {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--dj-gray-50);
  border-radius: 12px;
  border: 1px solid var(--dj-gray-100);
}

.dj-form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dj-gray-900);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dj-gray-200);
}

.dj-section-icon {
  width: 32px;
  height: 32px;
  background: var(--dj-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white);
  font-size: 14px;
}

.dj-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.dj-service-option {
  cursor: pointer;
  border: 1px solid var(--dj-gray-200);
  border-radius: 10px;
  padding: 20px 10px;
  background: var(--dj-white);
  transition: all 0.2s;
  text-align: center;
}

.dj-service-option:hover {
  border-color: var(--dj-primary);
  background: var(--dj-primary-light);
}

.dj-service-option input[type="checkbox"]:checked+.dj-service-content {
  color: var(--dj-primary);
}

.dj-submit-button {
  background: var(--dj-primary);
  color: var(--dj-white);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-submit-button:hover {
  background: var(--dj-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

/* --- Reservation Form & Booking UI --- */
.booking-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-bottom: 15px;
  height: 48px;
}

.booking-icon {
  width: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-gray-400);
  font-size: 18px;
}

.booking-label {
  width: 110px;
  min-width: 110px;
  font-size: 15px;
  color: var(--dj-gray-900);
  font-weight: 700;
}

.booking-dropdown select.form-control {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--dj-gray-200);
  padding: 0 16px;
  font-size: 14px;
  background: var(--dj-white);
  transition: border-color 0.2s;
}

.room-guest-box {
  background: #f0f6ff;
  border: 1px solid var(--dj-gray-200);
  border-radius: 12px;
  box-shadow: var(--dj-shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

.room-guest-header {
  background: linear-gradient(135deg, var(--dj-primary) 0%, var(--dj-primary-light) 100%);
  color: var(--dj-white);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
}

.guest-stepper-group {
  border-radius: 8px !important;
  border: 1px solid var(--dj-primary) !important;
  background: var(--dj-white);
  width: 100px;
}

.guest-stepper-btn {
  border: none !important;
  background: transparent !important;
  color: var(--dj-primary) !important;
  font-weight: 700;
}

.guest-stepper-btn:hover {
  background: var(--dj-primary) !important;
  color: var(--dj-white) !important;
}

.guest-stepper-input {
  border: none !important;
  background: transparent !important;
  font-weight: 700;
  color: var(--dj-primary);
  text-align: center;
}

/* Special Offers Sidebar Box */
.dj-special-offers-box {
  margin-top: 24px;
}

.dj-special-offers-header {
  background: linear-gradient(135deg, var(--dj-primary), #3b82f6);
  color: white !important;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--dj-primary), #3b82f6);
  color: white !important;
}

.dj-special-offers-title {
  color: white !important;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: white !important;
}

.dj-special-offers-content {
  padding: 16px;
}

.dj-quick-link-item {
  background: var(--dj-white);
  border: 1.5px solid var(--dj-gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: var(--dj-gray-50);
  border: 1px solid var(--dj-gray-200);
  border-radius: var(--dj-br-13);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none !important;
}

.dj-quick-link-item:hover {
  background: white;
  border-color: var(--dj-primary);
  box-shadow: var(--dj-shadow-md);
  transform: translateY(-3px);
}

.dj-quick-link-icon {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--dj-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  box-shadow: var(--dj-shadow-sm);
  transition: all 0.3s ease;
}

.dj-quick-link-item:hover .dj-quick-link-icon {
  background: var(--dj-primary);
  color: white;
}

.dj-quick-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dj-quick-link-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-gray-800);
}

.dj-quick-link-desc {
  font-size: 11px;
  font-weight: 600;
  color: var(--dj-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dj-sliding-text {
  display: inline-block;
  animation: dj-pulse 2s infinite;
}

@keyframes dj-pulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

/* Phase 18: Product Page Refinement */
.dj-product-main-row {
  align-items: flex-start;
}

.dj-pricing-hotel-row {
  grid-template-columns: 1.2fr 2fr !important;
}

.dj-price-label {
  font-size: 11px !important;
  color: var(--dj-gray-600) !important;
  margin-bottom: 2px;
}

.dj-price-value {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--dj-primary) !important;
}

.dj-reservation-pricing-btn {
  background: linear-gradient(135deg, var(--dj-primary), #3b82f6) !important;
  border: none !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--dj-shadow-sm) !important;
}

.dj-reservation-pricing-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--dj-shadow-md) !important;
  filter: brightness(1.1);
}

.dj-reservation-pricing-btn.dj-date-passed {
  background: var(--dj-gray-300) !important;
  cursor: not-allowed !important;
}

/* --- Popular Tours Card Styling --- */
.dj-tour-card {
  background: var(--dj-white);
  border-radius: var(--dj-br-13);
  overflow: hidden;
  box-shadow: var(--dj-shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dj-gray-200);
}

.dj-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dj-shadow-lg);
  border-color: var(--dj-primary-light);
}

.dj-tour-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dj-tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dj-tour-card:hover .dj-tour-card-image img {
  transform: scale(1.1);
}

.dj-tour-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dj-tour-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dj-gray-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 54px;
}

.dj-tour-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-primary);
  margin-top: auto;
}

/* --- Calendar View Styles --- */
.dj-calendar-section {
  transition: all 0.3s ease;
}

/* Grid View */
.dj-calendar-grid .dj-calendar-month-card {
  margin-bottom: 40px;
}

.dj-calendar-grid .dj-calendar-dates {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.dj-calendar-grid .dj-date-group {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .dj-calendar-grid .dj-date-group {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .dj-calendar-grid .dj-date-group {
    width: 100%;
  }
}

.dj-calendar-grid .dj-date-header {
  height: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

.dj-calendar-grid .dj-date-info {
  flex-direction: column;
  gap: 15px;
}

.dj-calendar-grid .dj-date-info i {
  font-size: 30px;
  margin: 0;
}

.dj-calendar-grid .dj-date-arrow {
  display: none;
}

.dj-calendar-grid .dj-date-tours {
  display: block;
  max-height: none;
  opacity: 1;
  visibility: visible;
  padding-top: 15px;
}

/* List View (Default) */
.dj-calendar-list .dj-date-group {
  margin-bottom: 15px;
}

.dj-calendar-list .dj-date-tours {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
  opacity: 0;
}

.dj-calendar-list .dj-date-tours.active {
  max-height: 2000px;
  opacity: 1;
  transition: all 0.3s cubic-bezier(1, 0, 1, 0);
  padding: 20px;
}

/* --- Contact Card Styling --- */
.dj-contact-section {
  background-color: var(--dj-gray-50);
}

.box-contact-form {
  padding: 60px 0;
  border-top: 1px solid var(--dj-gray-100);
}

.dj-contact-card {
  background: var(--dj-white);
  padding: 40px 30px;
  border-radius: var(--dj-br-8);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid var(--dj-gray-200);
  box-shadow: var(--dj-shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dj-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--dj-shadow-xl);
  border-color: var(--dj-primary-light);
}

.dj-contact-card.active {
  background: linear-gradient(135deg, var(--dj-primary) 0%, var(--dj-primary-light) 100%);
  border-color: transparent;
}

.dj-contact-icon {
  width: 70px;
  height: 70px;
  background: var(--dj-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: var(--dj-primary);
  transition: all 0.3s ease;
}

.dj-contact-card:hover .dj-contact-icon {
  background: var(--dj-primary);
  color: var(--dj-white);
  transform: scale(1.1) rotate(10deg);
}

.dj-contact-card.active .dj-contact-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--dj-white);
}

.dj-contact-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dj-gray-900);
}

.dj-contact-card.active .dj-contact-title {
  color: var(--dj-white);
}

.dj-contact-text {
  color: var(--dj-gray-600);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.dj-contact-card.active .dj-contact-text,
.dj-contact-card.active .dj-contact-text a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.dj-contact-text a {
  color: var(--dj-primary);
  font-weight: 700;
  text-decoration: none;
}

.dj-contact-text a:hover {
  text-decoration: underline;
}

/* ================================
   RESERVATION PAGE PREMIUM DESIGN
   ================================ */

.card-modern {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  margin-bottom: 30px;
  background: var(--dj-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.card-header-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-bottom: 1px solid var(--dj-gray-200) !important;
  padding: 15px 20px !important;
}

.card-header-modern h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-gray-900);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-header-modern h5 i {
  color: var(--dj-primary);
  font-size: 24px;
}

.card-body-modern {
  padding: 35px 30px !important;
}

.reservation-summary-card {
  position: sticky;
  top: 100px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--dj-gray-200);
}

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

.summary-label {
  color: var(--dj-gray-600);
  font-weight: 500;
}

.summary-value {
  color: var(--dj-gray-900);
  font-weight: 700;
}

.total-price-display {
  background: var(--dj-primary);
  color: var(--dj-white);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-top: 25px;
}

.total-price-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-price-amount {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.dj-form-floating {
  margin-bottom: 20px;
}

.dj-form-floating .form-control,
.dj-form-floating .form-select {
  border: 2px solid var(--dj-gray-200);
  border-radius: 12px;
  padding: 15px 20px;
  height: auto;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dj-form-floating .form-control:focus,
.dj-form-floating .form-select:focus {
  border-color: var(--dj-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Dashboard Nav Missing Classes */
.dj-user-sidebar {
  background: var(--dj-white);
  border-radius: var(--dj-br-12);
  box-shadow: var(--dj-shadow-lg);
  padding: 24px;
}

.dj-user-profile-card {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dj-gray-100);
  margin-bottom: 20px;
}

.dj-user-avatar i {
  font-size: 64px;
  color: var(--dj-gray-300);
  margin-bottom: 12px;
}

.dj-user-fullname {
  font-size: 18px;
  font-weight: 700;
  color: var(--dj-gray-800);
  margin-bottom: 4px;
}

.dj-user-email {
  font-size: 14px;
  color: var(--dj-gray-500);
  display: block;
  margin-bottom: 12px;
}

.dj-user-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--dj-br-8);
  font-size: 13px;
  font-weight: 600;
  background: rgba(30, 60, 114, 0.1);
  color: var(--dj-primary);
}

.dj-user-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dj-user-nav-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--dj-gray-700) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--dj-br-8);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.dj-user-nav-item:hover,
.dj-user-nav-item.active {
  background: var(--dj-gray-50);
  color: var(--dj-primary) !important;
}

.dj-user-nav-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.dj-user-nav-divider {
  height: 1px;
  background: var(--dj-gray-100);
  margin: 8px 0;
}

.dj-nav-logout:hover {
  background: rgba(239, 68, 68, 0.05);
  color: var(--dj-danger) !important;
}

/* Dashboard UI Refinement Classes */
.dj-dashboard-card {
  background: var(--dj-white);
  border-radius: var(--dj-br-12);
  box-shadow: var(--dj-shadow-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.dj-user-table-compact {
  font-size: 13px !important;
}

.dj-user-table-compact th {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dj-gray-500);
}

.dj-user-table-compact td {
  padding: 12px 8px !important;
  vertical-align: middle;
}

.dj-user-stat-value-compact {
  font-size: 24px !important;
}

.dj-user-stat-label-compact {
  font-size: 12px !important;
}

.dj-res-number-compact {
  font-size: 13px !important;
}

.dj-user-tab h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.dj-user-card-header h5 {
  font-size: 16px;
}

.dj-profile-field {
  margin-bottom: 15px;
}

.dj-profile-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--dj-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.dj-profile-field span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dj-gray-800);
}

/* Home Routes Filter Missing Classes */
.dj-routes-filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.dj-routes-filter-dropdown {
  background: var(--dj-white);
  border: 1.5px solid var(--dj-gray-200);
  padding: 10px 16px;
  border-radius: var(--dj-br-8);
  color: var(--dj-gray-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.dj-routes-filter-dropdown:hover {
  border-color: var(--dj-primary);
  color: var(--dj-primary);
}

.dj-routes-filter-menu {
  border: none;
  box-shadow: var(--dj-shadow-xl);
  border-radius: var(--dj-br-8);
  padding: 8px;
  min-width: 220px;
}

.dj-routes-filter-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--dj-gray-700) !important;
  text-decoration: none;
  border-radius: var(--dj-br-8);
  font-weight: 500;
  transition: all 0.2s ease;
}

.dj-routes-filter-menu-item:hover,
.dj-routes-filter-menu-item-active {
  background: var(--dj-gray-50);
  color: var(--dj-primary) !important;
}

.dj-routes-filter-menu-item-icon {
  width: 16px;
  text-align: center;
  color: var(--dj-gray-400);
}

.dj-routes-filter-menu-item:hover .dj-routes-filter-menu-item-icon,
.dj-routes-filter-menu-item-active .dj-routes-filter-menu-item-icon {
  color: var(--dj-primary);
}

/* Interactive Reservation Tour */
.dj-tour-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.dj-tour-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dj-tour-tip {
  position: absolute;
  background: var(--dj-white);
  padding: 24px;
  border-radius: var(--dj-br-13);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  z-index: 9100;
  width: 320px;
  border: 1px solid var(--dj-gray-200);
  opacity: 0;
  transform: translateY(15px);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dj-tour-tip.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dj-tour-tip::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--dj-white);
  transform: rotate(45deg);
  z-index: -1;
}

/* Tip Position Variations */
.dj-tour-tip-left::after {
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid var(--dj-gray-200);
  border-top: 1px solid var(--dj-gray-200);
}

.dj-tour-tip-right::after {
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px solid var(--dj-gray-200);
  border-bottom: 1px solid var(--dj-gray-200);
}

.dj-tour-tip-bottom::after {
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid var(--dj-gray-200);
  border-top: 1px solid var(--dj-gray-200);
}

.dj-tour-tip-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--dj-primary), var(--dj-primary-light));
  color: var(--dj-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.dj-tour-tip-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--dj-gray-900);
  margin-bottom: 8px;
  display: block;
}

.dj-tour-tip-text {
  font-size: 14px;
  color: var(--dj-gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  display: block;
}

.dj-tour-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--dj-gray-100);
}

.dj-tour-next-btn,
.dj-tour-back-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--dj-br-8);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dj-tour-next-btn {
  background: var(--dj-primary);
  color: var(--dj-white);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.dj-tour-back-btn {
  background: var(--dj-gray-100);
  color: var(--dj-gray-700);
}

.dj-tour-next-btn:hover {
  background: var(--dj-primary-dark);
  color: var(--dj-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 60, 114, 0.3);
}

.dj-tour-back-btn:hover {
  background: var(--dj-gray-200);
  transform: translateY(-2px);
}

.dj-tour-highlight {
  position: relative;
  z-index: 9200 !important;
  pointer-events: auto !important;
  transition: all 0.3s ease;
}

/* Ensure parents don't clip tour tip */
.dj-travel-section-container.active-tour {
  z-index: 9150 !important;
  position: relative;
}

/* --- SWEETALERT Z-INDEX FIX --- */
.swal2-container {
  z-index: 30000 !important;
}

/* --- Extra Tour Cards & Quantity Selectors --- */
.dj-extra-tour-card {
  background: var(--dj-white);
  border: 1.5px solid var(--dj-gray-100);
  border-radius: var(--dj-br-13);
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.dj-extra-tour-card:hover {
  border-color: var(--dj-primary-light);
  box-shadow: var(--dj-shadow-lg);
  transform: translateY(-2px);
}

.dj-extra-tour-card.active {
  border-color: var(--dj-primary);
  background: rgba(30, 60, 114, 0.02);
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.08);
}

.package-icon {
  width: 48px;
  height: 48px;
  background: var(--dj-gray-50);
  color: var(--dj-primary);
  border-radius: var(--dj-br-8);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.dj-extra-tour-card.active .package-icon {
  background: var(--dj-primary);
  color: var(--dj-white);
}

.package-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--dj-gray-900);
}

.price-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.price-tag.main {
  background: rgba(30, 60, 114, 0.1);
  color: var(--dj-primary);
}

.price-tag.tl {
  background: rgba(16, 185, 129, 0.1);
  color: var(--dj-success);
}

.btn-detail-toggle {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-detail-toggle:hover {
  background: rgba(30, 60, 114, 0.05);
}

.dj-quantity-selector {
  display: flex;
  align-items: center;
  background: var(--dj-gray-50);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--dj-gray-200);
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
}

.qty-btn.minus {
  background: var(--dj-white);
  color: var(--dj-gray-500);
}

.qty-btn.plus {
  background: var(--dj-primary);
  color: var(--dj-white);
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-value {
  min-width: 32px;
  text-align: center;
  font-weight: 800;
  color: var(--dj-primary);
  font-size: 14px;
}

.description-content {
  padding: 20px 24px 24px 88px;
  font-size: 13.5px;
  color: var(--dj-gray-600);
  line-height: 1.6;
}

/* --- Guest Information Sections --- */
.guest-card {
  border: 1.5px solid var(--dj-gray-100);
  background: var(--dj-white);
  box-shadow: var(--dj-shadow-sm);
  margin-bottom: 24px;
}

.guest-section {
  position: relative;
  padding: 10px 0;
}

.guest-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--dj-gray-800);
  display: flex !important;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--dj-gray-50);
}

.guest-title.text-success {
  color: #10b981 !important;
  border-bottom-color: rgba(16, 185, 129, 0.1);
}

.guest-title.text-info {
  color: #0ea5e9 !important;
  border-bottom-color: rgba(14, 165, 233, 0.1);
}

.dj-divider {
  margin: 24px 0;
  border: none;
  border-top: 1.5px dashed var(--dj-gray-200);
  opacity: 1;
}

.badge.bg-primary-light {
  background: rgba(30, 60, 114, 0.08);
  font-weight: 700;
  font-size: 13px;
}

/* Search Engine Inputs - Counter & Dates */
.dj-counter-input {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  border: 1.5px solid var(--dj-gray-200);
  border-radius: var(--dj-br-8);
  height: 48px;
  background: var(--dj-white);
  overflow: hidden;
  position: relative;
}

.dj-counter-input:focus-within {
  border-color: var(--dj-primary);
  box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
}

.dj-counter-btn {
  background: none;
  border: none;
  color: var(--dj-gray-600);
  font-size: 18px;
  width: 40px;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.dj-counter-btn:hover {
  background: var(--dj-gray-50);
  color: var(--dj-primary);
}

.dj-counter-value {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: var(--dj-gray-800);
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
  height: 100%;
  width: 100%;
}

.dj-counter-value:focus {
  outline: none;
}

.dj-counter-value::-webkit-outer-spin-button,
.dj-counter-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dj-counter-icon {
  position: absolute;
  right: 12px;
  color: var(--dj-gray-400);
  pointer-events: none;
}

input[type="date"].dj-form-control {
  height: 48px;
  display: flex;
  align-items: center;
}

.dj-form-control.dj-dropdown-toggle {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- PREMİUM FOOTER REDESİGN --- */
.footer {
  background: #0f172a;
  padding: 80px 0 0 0;
  color: #94a3b8;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dj-primary), var(--dj-accent));
}

.dj-footer-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dj-white);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
  font-family: 'Urbanist', sans-serif;
}

.dj-footer-title i {
  color: var(--dj-accent);
  font-size: 22px;
}

.dj-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dj-footer-list li {
  margin-bottom: 14px;
}

.dj-footer-list .footer-link {
  color: #e2e8f0;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.dj-footer-list .footer-link i {
  font-size: 10px;
  color: var(--dj-accent);
  transition: transform 0.3s ease;
}

.dj-footer-list .footer-link:hover {
  color: var(--dj-white);
  transform: translateX(8px);
}

.dj-footer-list .footer-link:hover i {
  color: var(--dj-white);
}

.dj-footer-certification-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: var(--dj-br-16);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.dj-footer-certification-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.dj-cert-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.dj-cert-icon i {
  font-size: 28px;
  color: var(--dj-accent);
}

.dj-cert-title {
  display: flex;
  flex-direction: column;
}

.dj-cert-company {
  color: var(--dj-white);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.2px;
}

.dj-cert-subtitle {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}

.dj-footer-certification-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: var(--dj-br-8);
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
  display: block;
  margin: 0 auto;
  padding: 10px;
  background: white;
}

.dj-footer-certification-card:hover img {
  filter: brightness(1);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--dj-white);
}

.copyright p {
  color: #64748b;
  margin: 0;
}

.copyright a {
  color: var(--dj-accent);
  text-decoration: none;
  font-weight: 600;
}



/* --- BREADCRUMB STYLING (VISA PAGE) --- */
.dj-breadcrumb-wrapper {
  background: var(--dj-gray-50);
  border-bottom: 1px solid var(--dj-gray-200);
  padding: 15px 0;
  margin-bottom: 30px;
}

.dj-breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.dj-breadcrumb .breadcrumb-item a {
  color: var(--dj-gray-500);
  text-decoration: none;
  transition: all 0.2s;
}

.dj-breadcrumb .breadcrumb-item a:hover {
  color: var(--dj-primary);
}

.dj-breadcrumb .breadcrumb-item.active {
  color: var(--dj-gray-800);
  font-weight: 600;
}

.dj-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--dj-gray-400);
  font-size: 12px;
  padding: 0 10px;
}

.box-section.block-content-tourlist {
  padding-bottom: 60px;
}

.dj-calendar-header-card,
.dj-calendar-stats-card {
  background: var(--dj-white);
  border-radius: var(--dj-br-12);
  padding: 30px;
  box-shadow: var(--dj-shadow-lg);
  margin-bottom: 30px;
}

.dj-calendar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(30, 60, 114, 0.1);
  color: var(--dj-primary);
  border-radius: var(--dj-br-8);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.dj-calendar-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dj-gray-800);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.dj-calendar-description {
  font-size: 16px;
  color: var(--dj-gray-500);
  margin-bottom: 25px;
}

.dj-calendar-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.dj-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dj-gray-700);
  font-weight: 500;
}

.dj-feature-item i {
  color: var(--dj-primary);
}

.dj-calendar-dates-info {
  display: flex;
  gap: 20px;
  background: var(--dj-gray-50);
  padding: 20px;
  border-radius: var(--dj-br-12);
}

.dj-date-info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--dj-white);
  padding: 15px;
  border-radius: var(--dj-br-8);
  box-shadow: var(--dj-shadow-sm);
}

.dj-date-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 60, 114, 0.1);
  color: var(--dj-primary);
  border-radius: var(--dj-br-12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.dj-date-info-content {
  display: flex;
  flex-direction: column;
}

.dj-date-info-label {
  font-size: 13px;
  color: var(--dj-gray-500);
  font-weight: 500;
  margin-bottom: 4px;
}

.dj-date-info-date {
  font-size: 16px;
  font-weight: 700;
  color: var(--dj-gray-800);
}

.dj-stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--dj-gray-100);
  padding-bottom: 15px;
}

.dj-stats-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dj-gray-800);
  margin: 0;
}

.dj-view-controls {
  display: flex;
  gap: 10px;
}

.dj-view-btn {
  background: var(--dj-gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--dj-br-8);
  color: var(--dj-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.dj-view-btn:hover,
.dj-view-btn.active {
  background: var(--dj-primary);
  color: var(--dj-white);
}

.dj-monthly-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.dj-monthly-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--dj-gray-50);
  border: 1px solid var(--dj-gray-100);
  border-radius: var(--dj-br-8);
  transition: all 0.2s;
}

.dj-monthly-stat-item:hover {
  border-color: var(--dj-primary);
  box-shadow: var(--dj-shadow-md);
  transform: translateY(-2px);
}

.dj-monthly-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--dj-white);
  border-radius: var(--dj-br-8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-primary);
  font-size: 18px;
  box-shadow: var(--dj-shadow-sm);
}

.dj-monthly-stat-content {
  display: flex;
  flex-direction: column;
}

.dj-monthly-stat-month {
  font-size: 14px;
  font-weight: 700;
  color: var(--dj-gray-800);
}

.dj-monthly-stat-count {
  font-size: 13px;
  color: var(--dj-gray-500);
  margin-top: 2px;
}

.dj-border-bottom-custom {
  border-bottom: 1px solid var(--dj-gray-100);
}

.dj-reservation-guide-box {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(42, 82, 152, 0.05));
  border: 1px solid rgba(30, 60, 114, 0.1);
  border-radius: var(--dj-br-12);
  padding: 20px;
  margin-bottom: 25px;
  animation: dj-pulse-border 2s infinite ease-in-out;
}

.dj-guide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dj-primary);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dj-guide-header i {
  color: var(--dj-accent);
  font-size: 18px;
}

.dj-guide-text {
  color: var(--dj-gray-700);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

@keyframes dj-pulse-border {
  0% {
    border-color: rgba(30, 60, 114, 0.1);
    box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.05);
  }

  50% {
    border-color: rgba(30, 60, 114, 0.3);
    box-shadow: 0 0 10px 0 rgba(30, 60, 114, 0.1);
  }

  100% {
    border-color: rgba(30, 60, 114, 0.1);
    box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.05);
  }
}

/* --- Premium Trip Details Sidebar --- */
.trip-details-premium {
  display: flex !important;
  flex-direction: column;
  gap: 13px;
}

.detail-row-premium {
  display: flex !important;
  align-items: center;
  gap: 13px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--dj-gray-50);
}

.detail-row-premium:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Compact Summary Overrides --- */
.dj-summary-compact .p-4,
.dj-summary-compact .p-3 {
  padding: 15px 10px !important;
}

.dj-summary-compact .trip-details-premium {
  gap: 8px !important;
}

.dj-summary-compact .detail-row-premium {
  padding-bottom: 5px !important;
  gap: 10px !important;
}

.dj-summary-compact .detail-icon-premium {
  width: 30px !important;
  height: 30px !important;
  font-size: 13px !important;
}

.dj-summary-compact .detail-label-premium {
  font-size: 12px !important;
}

.dj-summary-compact .detail-value-premium {
  font-size: 13px !important;
}

.dj-summary-compact .included-services-premium {
  padding-top: 15px !important;
}

.dj-summary-compact .services-list-premium {
  gap: 5px !important;
}

.dj-summary-compact .service-item-premium {
  font-size: 12px !important;
}

.detail-icon-premium {
  width: 34px;
  height: 34px;
  background: rgba(30, 60, 114, 0.08);
  color: var(--dj-primary);
  border-radius: var(--dj-br-8);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.detail-content-premium {
  display: flex !important;
  flex-direction: column;
}

.detail-label-premium {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dj-gray-500);
  font-weight: 700;
  margin-bottom: 2px;
}

.detail-value-premium {
  font-size: 14px;
  color: var(--dj-gray-800);
  font-weight: 800;
  line-height: 1.3;
}

/* --- Premium Included Services --- */
.included-services-premium .services-title-premium {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.service-item-premium {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--dj-gray-700);
  font-weight: 600;
}

.service-item-premium i {
  margin-top: 3px;
  font-size: 11px;
}

.dj-card-airport-footer {
  font-size: 13px;
  font-weight: 700;
  color: var(--dj-gray-600);
  background: var(--dj-gray-50);
  padding: 5px 10px;
  border-radius: var(--dj-br-5);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.dj-card-airport-footer i {
  color: var(--dj-primary);
  font-size: 10px;
}

/* --- Mobile Header Auth Centering --- */
@media (max-width: 767px) {
  .dj-header-right-section {
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px;
    padding-bottom: 10px;
    width: 100%;
  }

  .dj-header-auth-buttons {
    justify-content: center !important;
    width: 100%;
    gap: 25px !important;
  }
  
  .dj-header-contact-bar {
    padding: 10px 0;
  }
}

/* --- DESTINATION PAGE PREMIUM DESIGN --- */
.destination-hero-section {
  padding: 55px 0;
  background: var(--dj-white);
  border-bottom: 1px solid var(--dj-gray-100);
}

.destination-country-badge {
  background: rgba(30, 60, 114, 0.1);
  color: var(--dj-primary);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visa-status-badge {
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visa-vize-gerekir, .visa-vize-isteniyor {
  background: rgba(239, 68, 68, 0.1);
  color: var(--dj-danger);
}

.visa-vizesiz, .visa-vize-gerekmez {
  background: rgba(16, 185, 129, 0.1);
  color: var(--dj-success);
}

.currency-badge {
  background: var(--dj-gray-100);
  color: var(--dj-primary-dark);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
}

.destination-title {
  font-size: 55px;
  font-weight: 900;
  margin-top: 13px;
  letter-spacing: -1.5px;
  background: linear-gradient(to right, var(--dj-primary), #1e40af);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destination-description {
  font-size: 18px;
  color: var(--dj-gray-600);
  line-height: 1.8;
  max-width: 90%;
}

.info-card {
  background: var(--dj-gray-50);
  border: 1px solid var(--dj-gray-100);
  padding: 21px;
  border-radius: var(--dj-br-13);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--dj-white);
  box-shadow: var(--dj-shadow-md);
  border-color: var(--dj-primary-light);
  transform: translateY(-3px);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--dj-primary);
  color: var(--dj-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-value {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--dj-gray-900);
}

.info-label {
  font-size: 13px;
  color: var(--dj-gray-500);
  font-weight: 600;
  text-transform: uppercase;
}

/* Service Grid */
.travel-services-section {
  margin-top: 55px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 15px;
  background: var(--dj-white);
  border: 1px solid var(--dj-gray-100);
  border-radius: var(--dj-br-8);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--dj-primary);
  border-color: var(--dj-primary);
  transform: scale(1.05);
}

.service-icon {
  font-size: 24px;
  color: var(--dj-primary);
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--dj-white);
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.service-desc {
  font-size: 12px;
  margin-bottom: 0;
  color: var(--dj-gray-500);
}

/* Gallery Section */
.destination-gallery {
  padding: 21px;
  background: var(--dj-gray-100);
  border-radius: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.gallery-main.gallery-item {
  aspect-ratio: 16/9;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 60, 114, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dj-white);
  font-size: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Attraction Cards */
.attraction-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.attraction-card .card-image {
  position: relative;
  aspect-ratio: 4/5;
}

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: var(--dj-white);
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.attraction-card .card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--dj-white) !important;
  margin-bottom: 8px;
}

.attraction-card .card-description {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 13px;
}

.attraction-card .rating-stars {
  color: #fbbf24;
  margin-right: 8px;
}

.attraction-card .rating-text {
  font-size: 12px;
  opacity: 0.8;
}

/* Weather & Facts */
.weather-card, .essential-info-card, .quick-facts, .featured-attraction {
  background: var(--dj-white);
  border-radius: var(--dj-br-21);
  box-shadow: var(--dj-shadow-md);
  margin-bottom: 34px;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px dashed var(--dj-gray-200);
}

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

.fact-label {
  color: var(--dj-gray-500);
  font-weight: 600;
}

.fact-value {
  color: var(--dj-gray-900);
  font-weight: 700;
}
