/* Modern Travel Agency CSS with Bootstrap 5 Design */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --light: #f8fafc;
  --dark: #1e293b;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-2xl: 1rem;
  --border-radius-3xl: 1.5rem;
  --border-radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

.display-1 { font-size: 3.5rem; font-weight: 800; }
.display-2 { font-size: 3rem; font-weight: 800; }
.display-3 { font-size: 2.5rem; font-weight: 800; }
.display-4 { font-size: 2rem; font-weight: 800; }

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  z-index: 1030;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--gray-700) !important;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--border-radius-lg);
  margin: 0 0.25rem;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--border-radius-xl);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9)),
    url("https://images.pexels.com/photos/346885/pexels-photo-346885.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop")
      center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Cards */
.card {
  border: none;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
  position: relative;
}

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

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.destination-card {
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  background: white;
  border: 1px solid var(--gray-200);
  position: relative;
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
}

.destination-card .card-body {
  padding: 2rem;
}

.destination-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.destination-card .card-text {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.service-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.service-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-xl);
}

/* Stats Cards */
.stats-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stats-card h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stats-card p {
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 0;
}

/* Dashboard Cards */
.dashboard-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  box-shadow: var(--shadow-lg);
}

.dashboard-card h3 {
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
  background: var(--gradient-primary);
  min-height: 100vh;
  color: white;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 1rem 1.5rem;
  margin: 0.25rem 0;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  transform: translateX(8px);
  backdrop-filter: blur(10px);
}

.sidebar-header {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Forms */
.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  outline: none;
}

.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1rem;
  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.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.input-group-text {
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-right: none;
  color: var(--gray-600);
}

.input-group .form-control {
  border-left: none;
}

/* Auth Container */
.auth-container {
  min-height: 100vh;
  background: var(--gradient-warning);
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.auth-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-card {
  background: white;
  border-radius: var(--border-radius-3xl);
  padding: 3rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
}

.badge.bg-primary {
  background: var(--gradient-primary) !important;
}

/* Tables */
.table {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
}

.table thead th {
  background: var(--gray-100);
  border: none;
  font-weight: 600;
  color: var(--gray-700);
  padding: 1rem;
}

.table tbody td {
  padding: 1rem;
  border-color: var(--gray-200);
  vertical-align: middle;
}

/* Status Indicators */
.status-pending {
  color: var(--warning);
  font-weight: 600;
}

.status-confirmed {
  color: var(--success);
  font-weight: 600;
}

.status-cancelled {
  color: var(--danger);
  font-weight: 600;
}

/* Fun Stats */
.fun-stats-container {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-3xl);
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.fun-stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fun-stat {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.counter {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Video Section */
.video-section {
  background: var(--gray-100);
  padding: 5rem 0;
}

.video-container {
  position: relative;
  border-radius: var(--border-radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.video-thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact-form-container {
  background: white;
  border-radius: var(--border-radius-3xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.contact-info {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-3xl);
  padding: 3rem;
  color: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
}

/* Executive Cards */
.executive-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  height: 100%;
}

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

.executive-card img {
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--gray-200);
  transition: all 0.3s ease;
}

.executive-card:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

/* Wallet Balance */
.wallet-balance {
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.wallet-balance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wallet-balance h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

/* Booking Cards */
.booking-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.footer p, .footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer a:hover {
  color: white;
}

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

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--gray-800);
  color: var(--gray-300);
  border-radius: var(--border-radius-full);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.125rem;
  }

  section {
    padding: 3rem 0;
  }

  .destination-card,
  .service-card {
    margin-bottom: 2rem;
  }

  .auth-card {
    margin: 1rem;
    padding: 2rem;
  }

  .contact-form-container,
  .contact-info {
    margin-bottom: 2rem;
  }

  .fun-stats-container {
    padding: 3rem 2rem;
  }

  .counter {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .play-button {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .video-container {
    margin-bottom: 2rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    z-index: 1040;
    transition: left 0.3s ease;
  }

  .sidebar.show {
    left: 0;
  }

  .page-header {
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .stats-card {
    margin-bottom: 1rem;
  }

  .stats-card h3 {
    font-size: 1.5rem;
  }

  .wallet-balance {
    margin-bottom: 2rem;
  }

  .booking-card {
    margin-bottom: 1rem;
  }

  .contact-item {
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }

  .dashboard-card {
    margin-bottom: 1rem;
  }

  .table-responsive {
    font-size: 0.875rem;
  }

  .table td,
  .table th {
    padding: 0.75rem;
  }

  .btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .offcanvas {
    width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .fun-stats-container {
    padding: 2rem 1.5rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }

  .auth-card {
    padding: 1.5rem;
  }

  .dashboard-card {
    padding: 1.5rem;
  }

  .stats-card {
    padding: 1.5rem;
  }

  .stats-card h3 {
    font-size: 1.25rem;
  }

  .wallet-balance {
    padding: 1.5rem;
  }

  .table-responsive {
    font-size: 0.75rem;
  }

  .btn-group-vertical .btn {
    margin-bottom: 0.5rem;
  }

  .booking-card {
    padding: 1rem;
  }

  .btn-group-sm .btn {
    padding: 0.25rem;
    font-size: 0.75rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .offcanvas {
    width: 100%;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-info { background-color: var(--info) !important; }

.shadow { box-shadow: var(--shadow) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

.rounded { border-radius: var(--border-radius) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }
.rounded-2xl { border-radius: var(--border-radius-2xl) !important; }
.rounded-3xl { border-radius: var(--border-radius-3xl) !important; }
.rounded-full { border-radius: var(--border-radius-full) !important; } 