/* CSS Custom Properties (Variables) */
:root {
  /* Primary Colors */
  --navy-blue: #0d3d67;
  --white: #ffffff;
  
  /* Secondary Colors */
  --red: #ca3432;
  --red-hover: #a72c29;
  --light-blue: #4da6ff;
  --orange: #ff9f43;
  
  /* Neutral Colors */
  --light-gray: #f5f6f8;
  --medium-gray: #a0a0a0;
  --white-bg: #ffffff;
  
  /* Feedback Colors */
  --success: #28a745;
  --warning: #f4c542;
  --error: #dc3545;
  
  /* Legacy variables for compatibility */
  --brand: var(--navy-blue);
  --accent: var(--orange);
  --ink: #111;
  --muted: var(--medium-gray);
  --bg: var(--light-gray);
  --danger: var(--error);
  --border: #e2e8f0;
  
  /* Shadows */
  --shadow: 0 2px 8px 0 rgba(13, 61, 103, 0.1), 0 1px 3px 0 rgba(13, 61, 103, 0.08);
  --shadow-lg: 0 8px 25px 0 rgba(13, 61, 103, 0.15), 0 4px 10px 0 rgba(13, 61, 103, 0.1);
  --shadow-card: 0 4px 12px 0 rgba(13, 61, 103, 0.08);
  
  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  font-size: 16px;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  letter-spacing: -0.025em;
}

h1 { 
  font-size: 2.5rem; 
  font-weight: 700;
  letter-spacing: -0.05em;
}

h2 { 
  font-size: 2rem; 
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 { 
  font-size: 1.5rem; 
  font-weight: 600;
  letter-spacing: -0.025em;
}

h4 { 
  font-size: 1.25rem; 
  font-weight: 600;
  letter-spacing: -0.025em;
}

h5 { 
  font-size: 1.125rem; 
  font-weight: 600;
  letter-spacing: -0.025em;
}

h6 { 
  font-size: 1rem; 
  font-weight: 600;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Line Clamp Utility */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price Utility */
.price {
  font-weight: 600;
  color: var(--brand);
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.875rem;
}

.price-discount {
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Chip/Badge Utility */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.chip-primary {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.chip-success {
  background-color: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.chip-warning {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(13, 61, 103, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 8px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--navy-blue);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  opacity: 0.8;
}

.nav-link:hover {
  background-color: rgba(13, 61, 103, 0.1);
  color: var(--navy-blue);
  opacity: 1;
}

/* Product Type Selector */
.product-type-selector {
  display: flex;
  background-color: var(--light-gray);
  border-radius: var(--radius);
  padding: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.product-type-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  background: transparent;
  border-radius: var(--radius);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--navy-blue);
  opacity: 0.7;
  font-size: 1rem;
}

.product-type-btn:hover {
  opacity: 1;
  background-color: rgba(13, 61, 103, 0.1);
}

.product-type-btn.active {
  background-color: var(--white);
  color: var(--navy-blue);
  opacity: 1;
  box-shadow: var(--shadow);
}

/* Product Type Selector Form */
.product-type-selector-form {
  margin: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.product-tabs {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--medium-gray);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  flex-shrink: 0;
}

.product-tab:hover {
  background-color: var(--light-gray);
  color: var(--navy-blue);
  transform: translateY(-2px);
}

.product-tab.active {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-tab i {
  font-size: 1.5rem;
}

.product-tab span {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
}

/* Search Form Styles */
.search-form {
  background-color: var(--white-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xl);
  margin: var(--spacing-md) 0;
  border: 1px solid rgba(13, 61, 103, 0.05);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid rgba(13, 61, 103, 0.1);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: var(--white-bg);
  color: var(--ink);
  font-family: var(--font-family);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  letter-spacing: -0.01em;
}

.form-control:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.1);
  transform: translateY(-1px);
}

.form-control:hover {
  border-color: rgba(13, 61, 103, 0.2);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select::-ms-expand {
  display: none;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
  font-family: var(--font-family);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--light-blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background-color: #3d8bff;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-accent:hover {
  background-color: #ff8c2a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-blue);
  border: 2px solid var(--navy-blue);
}

.btn-outline:hover {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-success {
  background-color: var(--success);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-success:hover {
  background-color: #218838;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* Card Styles */
.card {
  background-color: var(--white-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 61, 103, 0.05);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(13, 61, 103, 0.1);
}

.card-header {
  padding: var(--spacing-lg);
  border-bottom: 1px solid rgba(13, 61, 103, 0.1);
  background-color: var(--light-gray);
}

.card-body {
  padding: var(--spacing-lg);
}

.card-footer {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--light-gray);
  border-top: 1px solid rgba(13, 61, 103, 0.1);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Bootstrap Grid System */
.container {
  width: 100%;
  min-width: 1400px;
  max-width: 1400px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container { max-width: 1400px; }
}

@media (min-width: 768px) {
  .container { max-width: 1400px; }
}

@media (min-width: 992px) {
  .container { max-width: 1400px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1400px; }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Extra small devices (portrait phones, less than 576px) */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Filter Panel */
.filter-panel {
  background-color: var(--white-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  border: 1px solid rgba(13, 61, 103, 0.05);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.filter-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand);
}

.filter-label {
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background-color: var(--white-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 61, 103, 0.05);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(13, 61, 103, 0.1);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.product-card-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--light-gray);
  border-top: 1px solid rgba(13, 61, 103, 0.1);
}

.product-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--red);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  background: url('https://themes.stackbros.in/booking-next/assets/10-q9S64wU-.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: #0d3d67;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #0d3d67;
  line-height: 1.6;
}

/* Popular Routes */
/* Features Banner Section */
.features-banner {
  background: linear-gradient(135deg, #0c3c66 0%, #ca3432 100%);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}

.banner-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.banner-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.banner-item i {
  font-size: 1.25rem;
  color: var(--white);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.features-banner:hover .banner-track {
  animation-play-state: paused;
}

/* Travel Slogan Section */
.travel-slogan {
  padding: 4rem 0;
  background-color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.slogan-text {
  position: relative;
  z-index: 2;
}

/* Slogan section uses hero-title class */

.text-fill {
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.text-fill.travel {
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: 120% 120%;
  background-position: center;
  font-size: 120px;
  font-weight: 900;
}

.text-fill.adventure {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: 120% 120%;
  background-position: center;
}

.text-fill:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .text-fill {
    background: none;
    -webkit-text-fill-color: var(--navy-blue);
    text-fill-color: var(--navy-blue);
  }
}

.popular-routes {

  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--muted);
  font-size: 1.125rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.route-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  position: relative;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.route-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.route-card-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.route-card-bg {
  background-image: url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-bg-2 {
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-bg-3 {
  background-image: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-bg-4 {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-bg-5 {
  background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-bg-6 {
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.route-card-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.route-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.route-validity {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.route-card .btn {
  background-color: var(--white);
  color: var(--navy-blue);
  border: none;
  font-weight: var(--font-weight-semibold);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.route-card .btn:hover {
  background-color: var(--light-gray);
  color: var(--navy-blue);
  transform: translateY(-2px);
}

/* Airlines Section */
.airlines-section {
  padding: 3rem 0;
  background-color: var(--light-gray);
}

.airlines-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.airline-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 150px;
}

.airline-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

.airline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.airline-icon.turkish-airlines {
  background-color: #c41e3a;
  color: var(--white);
}

.airline-icon.sunexpress {
  background-color: #0066cc;
  position: relative;
}

.sun-circle {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #ff6600, #ffaa00);
  border-radius: 50%;
  position: relative;
}

.sun-circle::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background-color: #ff6600;
  border-radius: 1px;
}

.airline-name {
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
}

.airline-name.turkish-airlines {
  color: var(--ink);
  font-size: 0.8rem;
}

.airline-name.pegasus {
  color: #c41e3a;
  font-style: italic;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}

.airline-name.sunexpress-text {
  color: #0066cc;
  font-size: 0.9rem;
}

.airline-name.ajet {
  color: #1e3a8a;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
}

.airline-name.all-airlines {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.airline-divider {
  width: 1px;
  height: 40px;
  background-color: var(--light-gray);
  margin: 0 1rem;
}

/* Popular Destinations Section */
.popular-destinations {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
  line-height: 1.2;
  margin: 0;
}

.highlight-badge {
  display: inline-block;
  background-color: var(--success);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0.5rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.destination-card {
  position: relative;
  min-width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-image {
  width: 100%;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-info {
  text-align: center;
  position: relative;
}

.destination-info::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2rem;
  background-color: var(--white);
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.tours-count {
  display: inline-block;
  background-color: var(--success);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.destination-name {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  font-weight: var(--font-weight-medium);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-description {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.blog-card .btn {
  width: 100%;
  justify-content: center;
}

/* Campaign Banner */
.campaign-banner {
  background: #0c3c66;
  color: var(--white);
  padding: var(--spacing-md) 0;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.campaign-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.campaign-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.campaign-close:hover {
  opacity: 1;
}

/* Footer */
/* Footer */
.footer {
  background-color: var(--light-gray);
  color: var(--navy-blue);
  padding: 3rem 0 1rem;
  margin-top: var(--spacing-2xl);
}

/* Footer Top Section */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}
.footer-logo img
{max-height: 50px;}
.logo-text-blue {
  color: var(--light-blue);
}

.logo-text-gray {
  color: var(--medium-gray);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin: 0 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
  background-color: #000000;
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-icon.linkedin {
  background-color: #0077b5;
}

.footer-apps {
  display: flex;
  gap: 1rem;
}

.app-download {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy-blue);
  transition: all 0.3s ease;
  min-width: 160px;
}

.app-download:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.app-download i {
  font-size: 1.5rem;
}

.app-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-label {
  font-size: 0.75rem;
  color: var(--medium-gray);
  line-height: 1;
}

.app-action {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

/* Footer Links Section */
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--navy-blue);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--navy-blue);
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}

.footer-certifications {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cert-badge {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  min-width: 200px;
}

.cert-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cert-content strong {
  font-size: 0.75rem;
  color: var(--navy-blue);
  line-height: 1.2;
}

.cert-content span {
  font-size: 0.75rem;
  color: var(--medium-gray);
}

.cert-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.qr-code {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-placeholder {
  width: 40px;
  height: 40px;
  background: repeating-linear-gradient(
    45deg,
    #000,
    #000 2px,
    transparent 2px,
    transparent 4px
  );
}

.cert-qr span {
  font-size: 0.75rem;
  color: var(--medium-gray);
  text-align: center;
}

.cert-iata {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
}

.iata-logo {
  background-color: var(--light-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
}

.cert-iata span {
  font-size: 0.75rem;
  color: var(--medium-gray);
  text-align: center;
}

.cert-partners {
  display: flex;
  gap: 1rem;
}

.partner-logo {
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--navy-blue);
}

.partner-logo.roof-stacks {
  background-color: #ff9f43;
  color: var(--white);
}

.partner-logo.har-group {
  background-color: var(--navy-blue);
  color: var(--white);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin: 0;
}

.footer-payments {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.payment-logo {
  padding: 0.5rem 0.75rem;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--navy-blue);
  min-width: 60px;
  text-align: center;
}

.payment-logo.visa {
  background-color: #1a1f71;
  color: var(--white);
}

.payment-logo.mastercard {
  background-color: #eb001b;
  color: var(--white);
}

.payment-logo.garantipay {
  background-color: #00a651;
  color: var(--white);
}

.payment-logo.secure {
  background-color: #28a745;
  color: var(--white);
  font-size: 1rem;
}

.payment-logo.pci {
  background-color: var(--navy-blue);
  color: var(--white);
}

/* Flight Search Results Page */
.search-summary {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-info h2 {
  color: var(--navy-blue);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.5rem 0;
}

.search-info p {
  color: var(--medium-gray);
  margin: 0;
}

.filters-sidebar {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 2rem;
}

.filter-section h4 {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group h5 {
  color: var(--navy-blue);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.filter-option:hover {
  background-color: var(--light-gray);
}

.filter-option input[type="checkbox"] {
  margin: 0;
}

.filter-option span:first-of-type {
  flex: 1;
  color: var(--navy-blue);
  font-size: 0.875rem;
}

.filter-option .count {
  color: var(--medium-gray);
  font-size: 0.75rem;
}

.price-range {
  margin-top: 1rem;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--medium-gray);
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slot {
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  background-color: var(--white);
  border-radius: var(--radius);
  color: var(--navy-blue);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background-color: var(--light-gray);
}

.time-slot.active {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.results-info h3 {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.25rem 0;
}

.results-info p {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.875rem;
}

.sort-options select {
  min-width: 200px;
}

.flight-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flight-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.flight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.flight-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.airline-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.airline-logo {
  background-color: var(--light-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.airline-name {
  font-size: 0.875rem;
  color: var(--navy-blue);
  font-weight: var(--font-weight-medium);
}

.departure-info,
.arrival-info {
  text-align: center;
  min-width: 120px;
}

.departure-info .time,
.arrival-info .time {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
  margin-bottom: 0.25rem;
}

.departure-info .location,
.arrival-info .location {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.flight-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}

.flight-details::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--light-gray);
  z-index: 1;
}

.duration {
  font-size: 0.875rem;
  color: var(--navy-blue);
  font-weight: var(--font-weight-medium);
  background-color: var(--white);
  padding: 0 1rem;
  z-index: 2;
  position: relative;
}

.flight-type {
  font-size: 0.75rem;
  color: var(--medium-gray);
  background-color: var(--white);
  padding: 0 1rem;
  z-index: 2;
  position: relative;
}

.flight-icon {
  background-color: var(--white);
  padding: 0 1rem;
  z-index: 2;
  position: relative;
}

.flight-icon i {
  color: var(--light-blue);
  font-size: 1.25rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
}

.price {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--red);
}

.price-info .btn {
  min-width: 100px;
}

.flight-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.flight-details-link a {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.flight-details-link a:hover {
  text-decoration: underline;
}

.baggage-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.baggage-info i {
  color: var(--light-blue);
}

.expand-icon {
  color: var(--medium-gray);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.expand-icon:hover {
  background-color: var(--light-gray);
  color: var(--navy-blue);
}

/* Hotel Search Results Page */
.map-section {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.map-container {
  margin-bottom: 1rem;
}

.map-placeholder {
  background-color: var(--light-gray);
  border-radius: var(--radius);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-size: 2rem;
}

.contact-section {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-section p {
  color: var(--navy-blue);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--success);
}

.contact-image {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image i {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background-color: var(--success);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.clear-link {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.875rem;
}

.clear-link:hover {
  text-decoration: underline;
}

.price-range-display {
  color: var(--navy-blue);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.favorite-icon {
  color: var(--red);
  font-size: 1.5rem;
  cursor: pointer;
}

.sort-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.sort-tab {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  color: var(--medium-gray);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.sort-tab:hover {
  color: var(--navy-blue);
}

.sort-tab.active {
  color: var(--light-blue);
  border-bottom-color: var(--light-blue);
}

.hotel-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hotel-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hotel-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.hotel-header h4 {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.hotel-rating .stars {
  color: var(--orange);
  font-size: 1rem;
}

.hotel-location {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hotel-amenities {
  margin-bottom: 1rem;
}

.amenity-tag {
  background-color: var(--orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hotel-room {
  margin-bottom: 1rem;
}

.room-type {
  color: var(--navy-blue);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.25rem;
}

.cancellation {
  color: var(--medium-gray);
  font-size: 0.75rem;
}

.hotel-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  min-width: 200px;
  border-left: 1px solid var(--light-gray);
}

.discount {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
}

.price-original {
  color: var(--medium-gray);
  font-size: 0.875rem;
  text-decoration: line-through;
}

.price-current {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

.price-note {
  color: var(--medium-gray);
  font-size: 0.75rem;
}

.hotel-pricing .btn {
  width: 100%;
  min-width: 120px;
}

/* Transfer Search Results Page */
.date-navigation {
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-nav-btn {
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  color: var(--navy-blue);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-nav-btn:hover {
  background-color: var(--light-blue);
  color: var(--white);
  border-color: var(--light-blue);
}

.current-date {
  font-weight: var(--font-weight-semibold);
  color: var(--navy-blue);
  font-size: 1rem;
}

.results-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.sort-dropdown {
  min-width: 250px;
}

.bus-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bus-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
}

.bus-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.bus-company {
  flex: 1;
  min-width: 150px;
}

.company-logo {
  background-color: var(--light-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
  text-align: center;
}

.route-info {
  font-size: 0.875rem;
  color: var(--medium-gray);
  text-align: center;
}

.bus-timing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.time-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--navy-blue);
}

.time-info i {
  color: var(--light-blue);
}

.duration {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.bus-seating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 80px;
  justify-content: center;
}

.bus-seating i {
  color: var(--light-blue);
  font-size: 1.25rem;
}

.bus-seating span {
  font-size: 0.875rem;
  color: var(--navy-blue);
  font-weight: var(--font-weight-medium);
}

.bus-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.bus-pricing .price {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--red);
}

.bus-pricing .btn {
  min-width: 100px;
}

.transfer-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.transfer-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.transfer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.transfer-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.transfer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transfer-info {
  padding: 1.5rem;
}

.transfer-info h4 {
  color: var(--navy-blue);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.25rem 0;
}

.transfer-subtitle {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.transfer-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy-blue);
}

.feature-item i {
  color: var(--light-blue);
  width: 16px;
}

.transfer-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.transfer-pricing .price {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--red);
}

.price-label {
  font-size: 0.75rem;
  color: var(--medium-gray);
}

.transfer-info .btn {
  width: 100%;
}

/* Car Rental Search Results Page */
.car-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.car-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.3s ease;
}

.car-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.car-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.car-image {
  width: 200px;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-company-logo {
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--red);
  text-align: center;
}

.car-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.car-details h4 {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.car-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.spec-badge {
  background-color: var(--light-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rental-conditions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy-blue);
}

.condition-item i {
  color: var(--orange);
  font-size: 1rem;
}

.car-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 1rem;
  border-left: 1px solid var(--light-gray);
}

.daily-price {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--success);
}

.price-label {
  font-size: 0.75rem;
  color: var(--medium-gray);
}

.total-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--navy-blue);
}

.total-label {
  font-size: 0.75rem;
  color: var(--medium-gray);
  text-align: center;
}

.car-pricing .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.skeleton-title {
  height: 1.5rem;
  width: 60%;
  margin-bottom: 1rem;
}

.skeleton-card {
  height: 300px;
  border-radius: var(--radius-lg);
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-error {
  border-left: 4px solid var(--danger);
}

.toast-warning {
  border-left: 4px solid var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
  }

  .product-type-selector {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .product-type-btn {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-form {
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
  }
  
  .product-tabs {
    gap: 0.25rem;
    padding: 0.25rem;
  }
  
  .product-tab {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }
  
  .product-tab i {
    font-size: 1.25rem;
  }
  
  .product-tab span {
    font-size: 0.75rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .filter-panel {
    order: 2;
  }

  .results-list {
    order: 1;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-social {
    margin: 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-certifications {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-payments {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Slogan uses hero-title responsive styles */
  
  .text-fill.travel {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .destination-image {
    height: 150px;
  }
  
  .destination-name {
    font-size: 1rem;
  }
  
  .banner-item {
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }
  
  .banner-item i {
    font-size: 1rem;
  }
  
  .search-summary {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .filters-sidebar {
    position: static;
    margin-bottom: 1rem;
  }
  
  .flight-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .flight-details::before {
    display: none;
  }
  
  .flight-extras {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .map-section {
    margin-bottom: 1rem;
  }
  
  .contact-section {
    margin-bottom: 1rem;
  }
  
  .hotel-card {
    flex-direction: column;
  }
  
  .hotel-image {
    width: 100%;
    height: 200px;
  }
  
  .sort-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Slogan uses hero-title responsive styles */
  
  .text-fill.travel {
    font-size: 60px;
  }

  .campaign-content {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .campaign-close {
    position: static;
    transform: none;
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
  }

  .airlines-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .airline-item {
    min-width: auto;
    width: 100%;
  }

  .airline-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

@media (max-width: 992px) {
  .container {
    min-width: auto;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .row {
    margin: 0;
  }
  
  .col-3,
  .col-9 {
    width: 100%;
    padding: 0;
  }
  
  .filters-sidebar {
    margin-bottom: 2rem;
  }
  
  .hotel-card {
    flex-direction: column;
  }
  
  .hotel-image {
    width: 100%;
    height: 250px;
  }
  
  .hotel-pricing {
    border-left: none;
    border-top: 1px solid var(--light-gray);
    min-width: auto;
  }
  
  .flight-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .flight-details::before {
    display: none;
  }
  
  .search-summary {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .sort-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .sort-tab {
    flex: 1;
    min-width: 150px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .search-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .product-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0.5rem;
  }
  
  .product-tab {
    min-width: 70px;
    padding: 0.5rem 0.75rem;
  }
  
  .product-tab i {
    font-size: 1rem;
  }
  
  .product-tab span {
    font-size: 0.7rem;
  }
  
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .route-card {
    height: 200px;
  }
  
  .route-content h3 {
    font-size: 1.25rem;
  }
  
  .route-content p {
    font-size: 0.875rem;
  }
  
  .airlines-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .airline-item {
    width: 100%;
    text-align: center;
  }
  
  .airline-divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card {
    height: auto;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-content h3 {
    font-size: 1.125rem;
  }
  
  .blog-meta {
    font-size: 0.75rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-apps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .app-download {
    width: 100%;
    max-width: 200px;
  }
  
  .features-banner {
    padding: 1rem 0;
  }
  
  .banner-track {
    gap: 2rem;
  }
  
  .banner-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  
  .banner-item i {
    font-size: 0.9rem;
  }
  
  .text-fill.travel {
    font-size: 50px;
  }
  
  .travel-slogan {
    padding: 2rem 0;
  }
  
  .slogan-text {
    text-align: center;
  }
  
  .popular-routes {
    padding: 2rem 0;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .campaign-banner {
    padding: 1rem;
  }
  
  .campaign-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .campaign-close {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
  
  .hotel-pricing {
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
  
  .price-current {
    font-size: 1.25rem;
  }
  
  .hotel-pricing .btn {
    width: 100%;
    max-width: 200px;
  }
  
  .flight-card {
    padding: 1rem;
  }
  
  .flight-info {
    gap: 0.5rem;
  }
  
  .departure-info,
  .arrival-info {
    min-width: 80px;
  }
  
  .departure-info .time,
  .arrival-info .time {
    font-size: 1.25rem;
  }
  
  .price {
    font-size: 1.125rem;
  }
  
  .price-info .btn {
    min-width: 80px;
    padding: 0.5rem 1rem;
  }
  
  .filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .filter-options {
    gap: 0.5rem;
  }
  
  .filter-option {
    padding: 0.4rem;
  }
  
  .time-slot {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .map-placeholder {
    height: 120px;
    font-size: 1.5rem;
  }
  
  .contact-section {
    padding: 1rem;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .phone-number {
    font-size: 1.125rem;
  }
  
  .contact-image {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .search-form {
    padding: 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  .product-card-body {
    padding: 1rem;
  }

  .hero {
    padding: 1.5rem 0;
    min-height: 40vh;
  }

  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .product-tab {
    min-width: 60px;
    padding: 0.4rem 0.6rem;
  }
  
  .product-tab i {
    font-size: 0.9rem;
  }
  
  .product-tab span {
    font-size: 0.65rem;
  }
  
  .route-card {
    height: 150px;
  }
  
  .route-content h3 {
    font-size: 1rem;
  }
  
  .route-content p {
    font-size: 0.75rem;
  }
  
  .text-fill.travel {
    font-size: 40px;
  }
  
  .banner-item {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .banner-item i {
    font-size: 0.8rem;
  }
  
  .blog-content h3 {
    font-size: 1rem;
  }
  
  .blog-meta {
    font-size: 0.7rem;
  }
  
  .hotel-header h4 {
    font-size: 1rem;
  }
  
  .price-current {
    font-size: 1.125rem;
  }
  
  .flight-card {
    padding: 0.75rem;
  }
  
  .departure-info .time,
  .arrival-info .time {
    font-size: 1rem;
  }
  
  .price {
    font-size: 1rem;
  }
  
  .filter-section h4 {
    font-size: 1.125rem;
  }
  
  .filter-group h5 {
    font-size: 0.9rem;
  }
  
  .filter-option span:first-of-type {
    font-size: 0.8rem;
  }
  
  .filter-option .count {
    font-size: 0.7rem;
  }
  
  .time-slot {
    padding: 0.5rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .map-placeholder {
    height: 100px;
    font-size: 1.25rem;
  }
  
  .contact-section {
    padding: 0.75rem;
  }
  
  .contact-section p {
    font-size: 0.8rem;
  }
  
  .phone-number {
    font-size: 1rem;
  }
  
  .contact-image {
    width: 35px;
    height: 35px;
  }
  
  .contact-image i {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
  }
  
  .date-navigation {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .bus-card {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .bus-company,
  .bus-timing,
  .bus-seating,
  .bus-pricing {
    min-width: auto;
  }
  
  .transfer-results {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .transfer-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .results-meta {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  
  .sort-dropdown {
    min-width: 200px;
    width: 100%;
  }
  
  .bus-results {
    gap: 0.75rem;
  }
  
  .bus-card {
    padding: 1rem;
  }
  
  .company-logo {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .time-info {
    font-size: 1rem;
  }
  
  .bus-pricing .price {
    font-size: 1.125rem;
  }
  
  .car-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .car-image-section {
    min-width: auto;
    width: 100%;
  }
  
  .car-image {
    width: 100%;
    height: 200px;
  }
  
  .car-pricing {
    border-left: none;
    border-top: 1px solid var(--light-gray);
    min-width: auto;
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .filter-panel {
    display: none !important;
  }

  .card {
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--brand);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Additional Modern Styles */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy-blue), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-success {
  background-color: var(--success);
  color: var(--white);
}

.badge-warning {
  background-color: var(--warning);
  color: var(--white);
}

.badge-error {
  background-color: var(--error);
  color: var(--white);
}

.badge-info {
  background-color: var(--light-blue);
  color: var(--white);
}

/* Loading Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
