/* 
  MANODHIRA TOURISM - VANILLA CSS DESIGN SYSTEM
  Strictly 0% Third-Party CSS Frameworks (No Bootstrap, No Tailwind)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Righteous&family=Syne:wght@800;900&family=Bebas+Neue&display=swap');

:root {
  /* Colors */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --secondary: #64748b;
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 40px rgba(37, 99, 235, 0.18);

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--text-main);
  background-color: var(--light-bg);
}

/* Custom Scrollbar Animation */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 10px;
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #3b82f6 #f1f5f9;
}

/* Smooth Select Dropdowns */
select,
.v-form-control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563eb' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

select:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
}

select:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

/* Floating Label Inputs (Top Border Floating - No Overlap) */
.v-form-group:focus-within .v-form-label,
.form-group:focus-within label {
  color: var(--primary);
}

.v-floating-group {
  position: relative;
  margin-bottom: 22px;
}

.v-floating-group .v-floating-control,
.v-floating-control {
  width: 100%;
  height: 52px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-floating-group .v-floating-label,
.v-floating-label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  padding: 0 4px;
  pointer-events: none;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-floating-group .v-floating-control:focus,
.v-floating-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.v-floating-group .v-floating-control:focus ~ .v-floating-label,
.v-floating-group .v-floating-control:not(:placeholder-shown) ~ .v-floating-label,
.v-floating-control:focus ~ .v-floating-label,
.v-floating-control:not(:placeholder-shown) ~ .v-floating-label {
  top: -10px;
  left: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2563eb;
  background: #ffffff;
  padding: 0 6px;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container & Layout Grids */
.v-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.v-grid {
  display: grid;
  gap: 24px;
}

.v-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.v-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.v-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .v-grid-4,
  .v-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .v-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .v-grid-4 .v-card {
    padding: 20px 12px !important;
  }

  .v-grid-4 .v-card h4 {
    font-size: 0.95rem !important;
  }

  .v-grid-4 .v-card p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }

  .v-grid-4 .v-card div[style*="width: 64px"] {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
  }

  .v-grid-3,
  .v-grid-2 {
    grid-template-columns: 1fr;
  }
}

.v-flex {
  display: flex;
  align-items: center;
}

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

/* Preloader Glassmorphism with Backdrop Blur & Brand Typography */
#v-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#v-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.v-preloader-inner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.v-loader-box {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.v-preloader-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  animation: vHeartBeat 1.4s infinite ease-in-out;
}

.v-spinner {
  position: absolute;
  inset: 0;
  width: 96px;
  height: 96px;
  border: 3.5px solid rgba(37, 99, 235, 0.12);
  border-top-color: var(--primary);
  border-right-color: #f97316;
  border-radius: 50%;
  animation: vSpin 0.85s linear infinite;
}

.v-preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.v-preloader-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
}

.v-preloader-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-top: 2px;
}

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

@keyframes vHeartBeat {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.35));
  }
}

/* Header & Navigation - Transparent by Default, Glassmorphism Blur on Scroll */
.v-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-header.scrolled,
body:not(.has-hero) .v-header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

.v-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.v-logo img {
  height: 48px;
}

.v-auth-logo {
  height: 42px;
  display: inline-block;
  margin: 0 auto;
}

.v-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.v-nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

body.has-hero .v-header:not(.scrolled) .v-nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Header My Dashboard / Login Pill Button High Contrast Styling */
body.has-hero .v-header:not(.scrolled) .v-header-login-btn {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.has-hero .v-header:not(.scrolled) .v-header-login-btn i {
  color: #ffffff !important;
}

body.has-hero .v-header:not(.scrolled) .v-header-login-btn:hover {
  background: #ffffff !important;
  color: #2563eb !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

body.has-hero .v-header:not(.scrolled) .v-header-login-btn:hover i {
  color: #2563eb !important;
}

.v-header.scrolled .v-header-login-btn.v-btn-outline,
body:not(.has-hero) .v-header .v-header-login-btn.v-btn-outline {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: rgba(37, 99, 235, 0.06) !important;
}

.v-header.scrolled .v-header-login-btn.v-btn-outline i,
body:not(.has-hero) .v-header .v-header-login-btn.v-btn-outline i {
  color: var(--primary) !important;
}

.v-header.scrolled .v-header-login-btn.v-btn-outline:hover,
body:not(.has-hero) .v-header .v-header-login-btn.v-btn-outline:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.v-header.scrolled .v-header-login-btn.v-btn-outline:hover i,
body:not(.has-hero) .v-header .v-header-login-btn.v-btn-outline:hover i {
  color: #ffffff !important;
}

.v-nav-link:hover,
.v-nav-link.active {
  color: var(--primary);
}

.v-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
}

body.has-hero .v-header:not(.scrolled) .v-nav-link:hover {
  color: #ffffff !important;
}

body.has-hero .v-header:not(.scrolled) .v-nav-link.active {
  color: #38bdf8 !important;
  font-weight: 700;
}

body.has-hero .v-header:not(.scrolled) .v-nav-link.active::after {
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

/* Dropdown Navigation Menu with Smooth Slide-Down Animation */
.v-dropdown {
  position: relative;
}

.v-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  pointer-events: none;
}

.v-dropdown:hover .v-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.v-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: all 0.2s ease;
  text-decoration: none;
}

.v-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

/* Mobile Nav Toggle - High-Visibility Container Everywhere */
.v-mobile-toggle {
  display: none;
  background: rgba(37, 99, 235, 0.1) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.25) !important;
  color: #0f172a !important;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

body.has-hero .v-header:not(.scrolled) .v-mobile-toggle {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.v-header.scrolled .v-mobile-toggle,
body:not(.has-hero) .v-header .v-mobile-toggle {
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  color: #0f172a !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12) !important;
}

@media (max-width: 991px) {
  .v-mobile-toggle {
    display: inline-flex !important;
  }
}

/* Buttons */
.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.v-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.v-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  color: var(--text-white);
}

.v-btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.v-btn-accent:hover {
  transform: translateY(-2px);
  color: var(--text-white);
}

.v-btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-main);
}

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

.v-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Hero & Banner Section */
.v-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-white);
}

.v-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.v-hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 60px 0;
}

.v-hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.v-hero-title-mega {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin-bottom: 24px;
}

.v-hero-big-text {
  font-family: 'Righteous', 'Syne', sans-serif;
  font-size: clamp(4.2rem, 9.8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    1px 1px 0px #cbd5e1,
    2px 2px 0px #94a3b8,
    3px 3px 0px #64748b,
    4px 4px 0px #475569,
    5px 5px 0px #334155,
    6px 6px 0px #1e293b,
    7px 7px 0px #0f172a,
    8px 8px 15px rgba(0, 0, 0, 0.7),
    0px 18px 35px rgba(0, 0, 0, 0.85);
  display: block;
  transform: perspective(600px) rotateX(6deg);
  transform-origin: center bottom;
  margin-bottom: 6px;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.v-hero-big-text:hover {
  transform: perspective(600px) rotateX(0deg) translateY(-4px);
}

.v-hero-sub-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: -0.5px;
  margin-top: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
  display: block;
}

.v-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
}

.v-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  max-width: 640px;
}

/* Cloud Slide Animation Layer */
.v-pattern-layer {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: repeat-x;
  background-size: auto 100%;
  z-index: 15;
  pointer-events: none;
  animation: cloudSlide 90s linear infinite;
  -webkit-animation: cloudSlide 90s linear infinite;
}

@keyframes cloudSlide {
  0% {
    background-position: 0px bottom;
  }

  100% {
    background-position: 1920px bottom;
  }
}

/* Cards & Surfaces - Compact Professional Tour Package Card */
.v-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
}

.v-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

/* 1:1 Square Ratio for Tour Card Images */
.v-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8fafc;
}

.v-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.v-card:hover .v-card-image img {
  transform: scale(1.06);
}

/* Overlay gradient for badge legibility on top of image */
.v-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

/* Badges on Image Corners */
.v-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(37, 99, 235, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.v-card-badge.v-badge-featured {
  background: rgba(245, 158, 11, 0.92);
}

/* Day Detail Badge in Top-Right Corner of Image */
.v-card-duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Compact Info Section Below Image */
.v-card-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  justify-content: flex-start;
  gap: 6px;
}

.v-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.v-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v-card-title a:hover {
  color: var(--primary);
}

/* Card Footer */
.v-card-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.v-card-price-group {
  display: flex;
  flex-direction: column;
}

.v-card-price-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  line-height: 1;
  margin-bottom: 2px;
}

.v-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.v-card-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff !important;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.v-card-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.v-card-price-unit {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.v-card-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.v-card-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #1e40af 100%);
  transform: translateX(2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
  color: #ffffff !important;
}

/* Stacked Form Controls (No side-by-side truncation) */
.v-form-group-stacked {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.v-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.v-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
}

.v-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.v-form-value-stacked {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  word-break: break-all;
}

/* Vanilla Tabs Component */
.v-tabs-header {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 24px;
  overflow-x: auto;
}

.v-tab-btn {
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.v-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.v-tab-pane {
  display: none;
}

.v-tab-pane.active {
  display: block;
}

/* Vanilla Data Table */
.v-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.v-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.v-table th {
  background: var(--light-bg);
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.v-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.v-table tr:last-child td {
  border-bottom: none;
}

/* Badges */
.v-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.v-badge-success {
  background: #d1fae5;
  color: #065f46;
}

.v-badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.v-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* Section Title */
.v-sec-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

.v-sec-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.v-sec-heading {
  font-size: 2.25rem;
}

/* Animated Vector Shape Footer */
.v-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
  padding-bottom: 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.v-footer-vector-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
  animation: footerSlide 90s linear infinite;
  -webkit-animation: footerSlide 90s linear infinite;
}

@keyframes footerSlide {
  0% {
    background-position: 0px bottom;
  }

  100% {
    background-position: 1920px bottom;
  }
}

@-webkit-keyframes footerSlide {
  0% {
    background-position: 0px bottom;
  }

  100% {
    background-position: 1920px bottom;
  }
}

/* Summernote Rich Content Viewer Styling */
.summernote-content {
  color: var(--text-main);
  line-height: 1.75;
  font-size: 0.98rem;
  overflow-wrap: break-word;
}

.summernote-content p {
  margin-bottom: 14px;
}

.summernote-content h1,
.summernote-content h2,
.summernote-content h3,
.summernote-content h4,
.summernote-content h5,
.summernote-content h6 {
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.summernote-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
}

.summernote-content h3 {
  font-size: 1.25rem;
}

.summernote-content h4 {
  font-size: 1.1rem;
}

.summernote-content ul,
.summernote-content ol {
  margin-top: 8px;
  margin-bottom: 18px;
  padding-left: 24px;
}

.summernote-content ul li,
.summernote-content ol li {
  margin-bottom: 8px;
  position: relative;
}

.summernote-content hr {
  border: 0;
  border-top: 1px solid var(--border-light);
  margin: 24px 0;
}

.summernote-content table {
  width: 100% !important;
  border-collapse: collapse;
  margin: 20px 0;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.summernote-content th,
.summernote-content td {
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  font-size: 0.9rem;
}

.summernote-content th {
  background: var(--light-bg);
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.summernote-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 14px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.summernote-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 18px;
  margin: 16px 0;
  background: #f8fafc;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Custom Interactive Quantity Stepper Component */
.v-qty-stepper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 4px 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.v-qty-stepper-wrapper:focus-within,
.v-qty-stepper-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.v-qty-stepper-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-qty-stepper-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.06);
}

.v-qty-stepper-btn:active {
  transform: scale(0.94);
}

.v-qty-stepper-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-grow: 1;
}

.v-qty-input {
  width: 36px;
  border: none;
  background: transparent;
  text-align: right;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  outline: none;
  -moz-appearance: textfield;
}

.v-qty-input::-webkit-outer-spin-button,
.v-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.v-qty-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Custom Styled Form Select with Custom Arrow & Smooth Focus Animation */
select.v-form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563eb' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px !important;
  padding-right: 40px !important;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  cursor: pointer;
}

select.v-form-control:hover {
  border-color: var(--primary);
}

select.v-form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

/* Header Dropdown Menu - Ultra Smooth Slide & Fade Animation */
.v-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14) !important;
  padding: 10px 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.v-dropdown:hover .v-dropdown-menu,
.v-dropdown.active .v-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.v-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.v-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding-left: 24px;
}

/* NATIVE APP MOBILE STYLING & HORIZONTAL CATEGORY CARDS SWIPER */
.v-mobile-app-bottom-bar {
  display: none;
}

.v-mobile-drawer-overlay {
  display: none;
}

@media (max-width: 991px) {

  /* Responsive Booking Ticket Cards */
  .v-booking-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .v-booking-price-box {
    text-align: left !important;
    border-left: none !important;
    border-top: 1px solid var(--border-light) !important;
    padding-left: 0 !important;
    padding-top: 16px !important;
  }

  .v-booking-price-box>div {
    justify-content: flex-start !important;
  }

  /* Sticky App Bottom Nav Bar */
  .v-mobile-app-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.08);
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
  }

  .v-app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    flex: 1;
    padding: 6px 0;
    transition: all 0.2s ease;
  }

  .v-app-nav-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
  }

  .v-app-nav-item.active {
    color: var(--primary);
  }

  .v-app-nav-item.active i {
    transform: translateY(-2px) scale(1.1);
  }

  body {
    padding-bottom: 68px !important;
  }

  /* Elevated Z-Index for header when mobile drawer is open */
  .v-header:has(.v-nav-menu.open),
  .v-header.drawer-open {
    z-index: 10000 !important;
  }

  /* Upgraded Native App Mobile Slide-In Drawer */
  .v-nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 295px !important;
    max-width: 84vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    box-shadow: 10px 0 35px rgba(15, 23, 42, 0.25) !important;
    flex-direction: column !important;
    padding: 20px 18px !important;
    gap: 8px !important;
    z-index: 11000 !important;
    overflow-y: auto !important;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .v-nav-menu.open {
    left: 0 !important;
  }

  .v-mobile-drawer-top {
    display: none !important;
  }

  .v-nav-menu.open .v-mobile-drawer-top {
    display: block !important;
    width: 100% !important;
  }

  body.has-hero .v-header:not(.scrolled) .v-nav-menu .v-nav-link,
  .v-nav-menu .v-nav-link {
    color: #1e293b !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.02rem !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
  }

  body.has-hero .v-header:not(.scrolled) .v-nav-menu .v-nav-link:hover,
  body.has-hero .v-header:not(.scrolled) .v-nav-menu .v-nav-link.active,
  .v-nav-menu .v-nav-link:hover,
  .v-nav-menu .v-nav-link.active {
    color: var(--primary) !important;
    background: rgba(37, 99, 235, 0.08) !important;
  }

  .v-nav-menu .v-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--border-light) !important;
    background: #f8fafc !important;
    border-radius: 14px !important;
    padding: 8px 10px !important;
    margin: 6px 0 10px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
    pointer-events: auto !important;
  }

  .v-nav-menu .v-dropdown-item {
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    color: #334155 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
  }

  .v-mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10500;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .v-mobile-drawer-overlay.active {
    display: block;
    opacity: 1;
  }

  /* MOBILE HOME PAGE CATEGORY-WISE HORIZONTAL SIDE SWIPER */
  .v-mobile-swipe-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 4px 18px 4px !important;
    scrollbar-width: none !important;
    /* Firefox */
  }

  .v-mobile-swipe-grid::-webkit-scrollbar {
    display: none !important;
    /* Chrome/Safari */
  }

  /* Compact Reduced Tour Cards for Horizontal Swipe */
  .v-mobile-swipe-grid>.v-card {
    min-width: 260px !important;
    max-width: 260px !important;
    width: 260px !important;
    flex: 0 0 260px !important;
    scroll-snap-align: start !important;
    margin-bottom: 0 !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08) !important;
  }

  .v-mobile-swipe-grid .v-card-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .v-mobile-swipe-grid .v-card-body {
    padding: 14px !important;
  }

  .v-mobile-swipe-grid .v-card-title {
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
    height: 2.7em !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
  }

  .v-mobile-swipe-grid .v-card-footer {
    padding-top: 10px !important;
  }

  .v-mobile-swipe-grid .v-card-price {
    font-size: 1.1rem !important;
  }

  .v-mobile-swipe-grid .v-card-btn {
    padding: 6px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 20px !important;
  }

  /* UNIFIED CATEGORY PILL CHIPS DESIGN SYSTEM (Desktop & Mobile) */
  .v-category-bar-section {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  }

  .v-category-pills-container {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 4px 8px 4px;
    scrollbar-width: none;
    /* Firefox */
  }

  .v-category-pills-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .v-category-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
  }

  .v-category-pill.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    border: 1px solid transparent;
    transform: translateY(-2px);
  }

  .v-category-pill:not(.active) {
    background: #f8fafc;
    color: #475569 !important;
    border: 1px solid var(--border-light);
  }

  .v-category-pill:not(.active):hover {
    background: #ffffff;
    color: var(--primary) !important;
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  }

  @media (max-width: 768px) {

    /* MOBILE TOUR PACKAGES PAGE (tour.php) REDESIGN */
    .v-category-hero-section {
      padding: 110px 16px 36px 16px !important;
    }

    .v-category-hero-title {
      font-size: 1.75rem !important;
      margin-bottom: 6px !important;
    }

    .v-category-hero-desc {
      font-size: 0.92rem !important;
    }

    /* Sticky App Category Swiper Bar */
    .v-category-bar-section {
      position: sticky !important;
      top: 70px !important;
      z-index: 950 !important;
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      padding: 10px 0 !important;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
    }

    .v-category-pills-container {
      gap: 8px !important;
      padding: 2px 4px 6px 4px !important;
    }

    .v-category-pill {
      padding: 8px 18px !important;
      font-size: 0.84rem !important;
    }

    /* 2-Column Mobile Tour Cards Grid for tour.php */
    .v-tour-grid-mobile {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px !important;
    }

    .v-tour-grid-mobile .v-card {
      border-radius: 16px !important;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06) !important;
      margin-bottom: 0 !important;
    }

    .v-tour-grid-mobile .v-card-image {
      width: 100% !important;
      aspect-ratio: 1 / 1 !important;
      height: auto !important;
      border-radius: 16px 16px 0 0 !important;
    }

    .v-tour-grid-mobile .v-card-body {
      padding: 10px 10px 12px 10px !important;
    }

    .v-tour-grid-mobile .v-card-title {
      font-size: 0.88rem !important;
      line-height: 1.3 !important;
      height: 2.6em !important;
      overflow: hidden !important;
      margin-bottom: 8px !important;
      font-weight: 700 !important;
    }

    .v-tour-grid-mobile .v-card-footer {
      padding-top: 6px !important;
      border-top: 1px solid #f1f5f9 !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 6px !important;
    }

    .v-tour-grid-mobile .v-card-price-group {
      width: 100% !important;
    }

    .v-tour-grid-mobile .v-card-price-label {
      font-size: 0.65rem !important;
      text-transform: uppercase !important;
      letter-spacing: 0.5px !important;
    }

    .v-tour-grid-mobile .v-card-price {
      font-size: 1.05rem !important;
      font-weight: 800 !important;
      color: var(--primary) !important;
    }

    .v-tour-grid-mobile .v-card-btn {
      width: 100% !important;
      text-align: center !important;
      justify-content: center !important;
      padding: 6px 0 !important;
      font-size: 0.8rem !important;
      border-radius: 20px !important;
      font-weight: 700 !important;
    }

    .v-tour-grid-mobile .v-card-badge {
      font-size: 0.65rem !important;
      padding: 3px 8px !important;
      border-radius: 20px !important;
    }

    .v-tour-grid-mobile .v-card-duration-badge {
      font-size: 0.65rem !important;
      padding: 3px 8px !important;
      border-radius: 20px !important;
    }

    /* MOBILE CONTACT PAGE (contact.php) REDESIGN */
    .v-contact-hero {
      padding: 110px 16px 32px 16px !important;
    }

    .v-contact-hero-title {
      font-size: 1.75rem !important;
      margin-bottom: 6px !important;
    }

    .v-whatsapp-highlight-card {
      padding: 22px 16px !important;
      border-radius: 20px !important;
      margin-bottom: 24px !important;
    }

    .v-whatsapp-highlight-card h2 {
      font-size: 1.45rem !important;
      margin-bottom: 8px !important;
    }

    .v-whatsapp-highlight-card p {
      font-size: 0.9rem !important;
    }

    .v-whatsapp-highlight-card .v-whatsapp-btn-pulse {
      width: 100% !important;
      justify-content: center !important;
      padding: 14px 18px !important;
      font-size: 1.05rem !important;
    }

    .v-contact-grid-wrapper {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }

    .v-quick-contact-box {
      padding: 20px 16px !important;
      border-radius: 20px !important;
    }

    .v-pill-call-btn {
      padding: 12px 16px !important;
      font-size: 0.95rem !important;
    }

    .v-social-large-btn {
      width: 52px !important;
      height: 52px !important;
      font-size: 1.4rem !important;
    }

    /* Completely hide header hamburger toggle button when side drawer is open */
    .v-header-inner:has(.v-nav-menu.open) .v-mobile-toggle,
    .v-nav-menu.open~.v-mobile-toggle {
      display: none !important;
    }
  }
}

/* ULTRA-PROFESSIONAL DESKTOP FOOTER DESIGN SYSTEM (GLOBAL / DESKTOP FIRST) */
.v-footer {
  background: linear-gradient(180deg, #0f172a 0%, #090d16 100%) !important;
  color: #94a3b8 !important;
  padding: 60px 0 30px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer .v-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer-vector-bg {
  position: absolute !important;
  inset: 0 !important;
  background-repeat: repeat !important;
  opacity: 0.04 !important;
  pointer-events: none !important;
}

.v-footer-grid-desktop {
  display: grid !important;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr !important;
  gap: 40px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer-brand-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 320px !important;
}

.v-footer-logo,
.v-footer-brand-box img.v-footer-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 52px !important;
  object-fit: contain !important;
  margin-bottom: 16px !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
}

.v-footer-cert-badge {
  background: rgba(37, 99, 235, 0.16) !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  color: #60a5fa !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  letter-spacing: 0.3px !important;
}

.v-footer-desc {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 20px !important;
}

.v-footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.v-social-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.v-social-btn:hover {
  transform: translateY(-3px) !important;
  background: var(--primary, #2563eb) !important;
  border-color: var(--primary, #2563eb) !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4) !important;
}

.v-social-wa {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
}

.v-social-wa:hover {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.v-footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.v-footer-col h4 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 0 16px 0 !important;
  position: relative !important;
  padding-bottom: 8px !important;
  font-family: 'Outfit', sans-serif !important;
}

.v-footer-col h4::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 32px !important;
  height: 2.5px !important;
  background: var(--primary, #2563eb) !important;
  border-radius: 2px !important;
}

.v-footer-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.v-footer-col a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
}

.v-footer-col a:hover {
  color: #ffffff !important;
  padding-left: 6px !important;
}

.v-footer-address {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  gap: 10px !important;
  align-items: flex-start !important;
  margin-bottom: 14px !important;
}

.v-footer-address i {
  color: var(--primary, #2563eb) !important;
  font-size: 1.1rem !important;
  margin-top: 2px !important;
}

.v-footer-map-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(37, 99, 235, 0.15) !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  color: #60a5fa !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.v-footer-map-btn:hover {
  background: var(--primary, #2563eb) !important;
  color: #ffffff !important;
}

.v-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 40px !important;
  padding-top: 24px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* TABLET AND MID-DESKTOP RESPONSIVE (769px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .v-footer-grid-desktop {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

/* MOBILE FOOTER SPECIFIC STYLES (<= 768px) */
@media (max-width: 768px) {
  .v-footer {
    padding: 36px 0 90px 0 !important;
  }

  .v-footer-grid-desktop {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .v-footer-brand-box {
    align-items: center !important;
    text-align: center !important;
    max-width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 24px !important;
  }

  .v-footer-desc {
    max-width: 90% !important;
  }

  .v-footer-socials {
    justify-content: center !important;
  }

  .v-footer-col {
    width: 100% !important;
  }

  .v-footer-col-contact {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 16px !important;
  }

  .v-footer-col h4::after {
    left: 0 !important;
  }

  .v-footer-bottom {
    margin-top: 28px !important;
    padding-top: 16px !important;
    font-size: 0.78rem !important;
  }
}

/* Always hide mobile drawer top header by default */
.v-mobile-drawer-top {
  display: none !important;
}

@media (max-width: 991px) {
  .v-mobile-drawer-top {
    display: none !important;
  }

  .v-nav-menu.open .v-mobile-drawer-top {
    display: block !important;
    width: 100% !important;
  }
}

/* UNIFIED CATEGORY PILL CHIPS DESIGN SYSTEM (Desktop & Mobile) */
.v-category-bar-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.v-category-pills-container {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 6px 8px 6px;
  scrollbar-width: none;
  /* Firefox */
}

.v-category-pills-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.v-category-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.v-category-pill.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35) !important;
  border: 1px solid transparent !important;
  transform: translateY(-2px);
}

.v-category-pill:not(.active) {
  background: #f8fafc !important;
  color: #475569 !important;
  border: 1px solid #e2e8f0 !important;
}

.v-category-pill:not(.active):hover {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-color: rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08) !important;
}

/* DESKTOP HEADER VS MOBILE DRAWER ISOLATION */
@media (min-width: 992px) {

  .v-mobile-drawer-top,
  .v-mobile-only-icon,
  .v-mobile-drawer-overlay,
  .v-mobile-toggle {
    display: none !important;
  }

  .v-nav-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: row !important;
    padding: 0 !important;
    gap: 32px !important;
    overflow-y: visible !important;
    z-index: auto !important;
  }

  .v-nav-btn-item {
    margin-top: 0 !important;
  }

  .v-header-login-btn {
    width: auto !important;
    padding: 8px 22px !important;
    font-size: 0.88rem !important;
    border-radius: 30px !important;
  }
}

@media (max-width: 991px) {
  .v-mobile-toggle {
    display: inline-flex !important;
  }

  .v-mobile-drawer-top {
    display: none !important;
  }

  .v-nav-menu.open .v-mobile-drawer-top {
    display: block !important;
    width: 100% !important;
  }

  .v-mobile-only-icon {
    display: inline-block !important;
    margin-right: 8px !important;
    color: var(--primary) !important;
  }

  .v-header-login-btn {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 10px !important;
    padding: 12px 20px !important;
  }
}

/* ==========================================================================
   FLATPICKR BRAND THEME DATEPICKER OVERRIDES
   ========================================================================== */
.flatpickr-calendar {
  background: #ffffff !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2) !important;
  border: 1px solid #e2e8f0 !important;
  font-family: 'Outfit', sans-serif !important;
  padding: 12px !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
  background: var(--primary, #2563eb) !important;
  border-color: var(--primary, #2563eb) !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
}

.flatpickr-day:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  border-radius: 10px !important;
  color: #2563eb !important;
}

.flatpickr-day.today {
  border-color: #2563eb !important;
  color: #2563eb !important;
  font-weight: 800 !important;
}

.flatpickr-months .flatpickr-month {
  color: #0f172a !important;
  fill: #0f172a !important;
  margin-bottom: 8px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: 800 !important;
  color: #0f172a !important;
}

span.flatpickr-weekday {
  color: #64748b !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
}

/* ==========================================================================
   FINAL DESKTOP & MOBILE FOOTER OVERRIDES (GUARANTEED GLOBAL FIX)
   ========================================================================== */
.v-footer {
  background: linear-gradient(180deg, #0f172a 0%, #090d16 100%) !important;
  color: #94a3b8 !important;
  padding: 60px 0 30px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer .v-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer-vector-bg {
  position: absolute !important;
  inset: 0 !important;
  background-repeat: repeat !important;
  opacity: 0.04 !important;
  pointer-events: none !important;
}

.v-footer-grid-desktop {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr !important;
  gap: 40px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.v-footer-brand-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 320px !important;
  width: 100% !important;
}

.v-footer-logo,
.v-footer-brand-box img.v-footer-logo,
.v-footer img {
  height: 48px !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 52px !important;
  object-fit: contain !important;
  margin-bottom: 16px !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
}

.v-footer-cert-badge {
  background: rgba(37, 99, 235, 0.16) !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  color: #60a5fa !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  letter-spacing: 0.3px !important;
}

.v-footer-desc {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 20px !important;
}

.v-footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.v-social-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.v-social-btn:hover {
  transform: translateY(-3px) !important;
  background: var(--primary, #2563eb) !important;
  border-color: var(--primary, #2563eb) !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4) !important;
}

.v-social-wa {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
}

.v-social-wa:hover {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.v-footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.v-footer-col h4 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 0 16px 0 !important;
  position: relative !important;
  padding-bottom: 8px !important;
  font-family: 'Outfit', sans-serif !important;
}

.v-footer-col h4::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 32px !important;
  height: 2.5px !important;
  background: var(--primary, #2563eb) !important;
  border-radius: 2px !important;
}

.v-footer-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.v-footer-col a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
}

.v-footer-col a:hover {
  color: #ffffff !important;
  padding-left: 6px !important;
}

.v-footer-address {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  gap: 10px !important;
  align-items: flex-start !important;
  margin-bottom: 14px !important;
}

.v-footer-address i {
  color: var(--primary, #2563eb) !important;
  font-size: 1.1rem !important;
  margin-top: 2px !important;
}

.v-footer-map-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(37, 99, 235, 0.15) !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  color: #60a5fa !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.v-footer-map-btn:hover {
  background: var(--primary, #2563eb) !important;
  color: #ffffff !important;
}

.v-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 40px !important;
  padding-top: 24px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* TABLET AND MID-DESKTOP RESPONSIVE (769px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .v-footer-grid-desktop {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

/* MOBILE FOOTER SPECIFIC STYLES (<= 768px) */
@media (max-width: 768px) {
  .v-footer {
    padding: 36px 0 90px 0 !important;
  }

  .v-footer-grid-desktop {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .v-footer-brand-box {
    align-items: center !important;
    text-align: center !important;
    max-width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 24px !important;
  }

  .v-footer-desc {
    max-width: 90% !important;
  }

  .v-footer-socials {
    justify-content: center !important;
  }

  .v-footer-col {
    width: 100% !important;
  }

  .v-footer-col-contact {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 16px !important;
  }

  .v-footer-col h4::after {
    left: 0 !important;
  }

  .v-footer-bottom {
    margin-top: 28px !important;
    padding-top: 16px !important;
    font-size: 0.78rem !important;
  }
}

/* TOUR DETAILS PAGE MOBILE RESPONSIVE FIXES */
.v-tour-details-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  align-items: start;
  gap: 28px;
  width: 100%;
}

.v-tour-details-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.v-tour-sidebar-wrapper {
  position: sticky;
  top: 110px;
  width: 100%;
}

.v-booking-sidebar-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .v-tour-details-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .v-tour-details-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .v-tour-sidebar-wrapper {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .v-booking-sidebar-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
  }

  /* Prevent Summernote rich text tables/lists from bursting out on mobile */
  .summernote-content {
    word-break: break-word !important;
    overflow-x: auto !important;
    max-width: 100% !important;
  }

  .summernote-content table {
    display: block !important;
    overflow-x: auto !important;
    width: 100% !important;
  }

  .summernote-content img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ==========================================================================
   TRENDY DESTINATIONS & TESTIMONIALS SECTIONS
   ========================================================================== */
/* ==========================================================================
   TRENDY ASYMMETRIC BENTO GRID DESTINATIONS & TESTIMONIAL SWIPER
   ========================================================================== */
.v-dest-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.v-dest-bento-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
  cursor: default;
}

.v-dest-bento-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.25);
}

.v-dest-bento-item.span-2 {
  grid-column: span 2;
}

.v-dest-bento-item.row-2 {
  grid-row: span 2;
}

.v-dest-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-dest-bento-item:hover .v-dest-bento-img {
  transform: scale(1.12);
}

.v-dest-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 25%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.35s ease;
}

.v-dest-bento-item:hover .v-dest-bento-overlay {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0.94) 100%);
}

.v-dest-bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.v-dest-bento-item.row-2 .v-dest-bento-title,
.v-dest-bento-item.span-2 .v-dest-bento-title {
  font-size: 1.65rem;
}

.v-dest-bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 4px 12px;
  border-radius: 30px;
  width: max-content;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}

.v-dest-bento-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.v-dest-bento-item:hover .v-dest-bento-arrow {
  background: #2563eb;
  color: #ffffff;
  transform: rotate(45deg) scale(1.1);
  border-color: #2563eb;
}

@media (max-width: 991px) {
  .v-dest-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
  }
  .v-dest-bento-item.span-2 {
    grid-column: span 2;
  }
  .v-dest-bento-item.row-2 {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .v-dest-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .v-dest-bento-overlay {
    padding: 14px;
  }
  .v-dest-bento-title {
    font-size: 1rem !important;
  }
  .v-dest-bento-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
  .v-dest-bento-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    top: 10px;
    right: 10px;
  }
}

/* TESTIMONIALS DARK GLASSMORPHISM & SWIPER CAROUSEL */
/* LIGHT THEME CUSTOM TESTIMONIAL SLIDER (PURE VANILLA JS) */
.v-testi-light-section {
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.v-testi-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px 0;
}

.v-testi-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.v-testi-slide-item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .v-testi-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .v-testi-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.v-testi-card-light {
  background: #ffffff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 24px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
}

.v-testi-card-light:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.v-testi-stars-light {
  color: #f59e0b;
  font-size: 1rem;
  display: flex;
  gap: 4px;
}

.v-testi-quote-light {
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 24px;
  flex: 1;
}

.v-testi-user-light {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.v-testi-avatar-light {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-weight: 800;
  font-size: 1.1rem;
}

.v-testi-name-light {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.v-testi-role-light {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.v-testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.v-testi-nav-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: scale(1.05);
}

.v-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.v-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.35s ease;
}

.v-testi-dot.active {
  width: 32px;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   USER DASHBOARD MOBILE RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 768px) {
  .v-user-hero {
    padding: 105px 0 35px 0 !important;
  }

  .v-user-hero-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .v-user-info-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .v-user-avatar {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.8rem !important;
  }

  .v-user-title {
    font-size: 1.45rem !important;
  }

  .v-user-logout-btn {
    align-self: flex-start !important;
    padding: 7px 16px !important;
    font-size: 0.82rem !important;
  }

  .v-user-main-section {
    padding: 24px 0 110px 0 !important;
  }

  .v-tabs-header {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px !important;
    padding: 6px !important;
    margin-bottom: 20px !important;
  }

  .v-tabs-header::-webkit-scrollbar {
    display: none;
  }

  .v-tab-btn {
    flex: 1 0 auto !important;
    white-space: nowrap !important;
    padding: 9px 14px !important;
    font-size: 0.84rem !important;
  }

  .v-booking-card-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .v-booking-price-box {
    border-left: none !important;
    border-top: 1px dashed var(--border-light) !important;
    padding-left: 0 !important;
    padding-top: 16px !important;
    margin-top: 12px !important;
    text-align: left !important;
  }

  .v-booking-price-box-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .v-booking-action-btns {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .v-booking-action-btns .v-btn {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
  }
}