@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500..900;1,500..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --wl-primary: #0C6EFD;
  --wl-primary-rgb: 12, 110, 253;
  --wl-secondary: #00BFA6;
  --wl-secondary-rgb: 0, 191, 166;
  --wl-accent: #FFB703;
  --wl-dark: #1A1A1A;
  --wl-light: #F7F9FC;
  --wl-white: #FFFFFF;
  --wl-text-muted: #6C757D;
  --wl-border: #E9ECEF;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 12px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.12);
  --shadow-hover: 0 25px 60px rgba(12, 110, 253, 0.18);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--wl-dark);
  background-color: var(--wl-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--wl-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

a:hover {
  color: var(--wl-secondary);
}

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

::selection {
  background-color: var(--wl-primary);
  color: var(--wl-white);
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1400px;
    padding: 0 30px;
  }

  .page-hero {
    position: relative;
    height: 65vh;
    min-height: 520px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.88) 100%), url(https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
/* ==========================================================================
   Loading Animation (Preloader)
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--wl-dark);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-compass {
  position: relative;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--wl-accent);
  border-right-color: var(--wl-secondary);
  border-radius: 50%;
  animation: wlSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-compass::after {
  content: '\f14e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--wl-white);
  font-size: 28px;
}

@keyframes wlSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wl-light);
  font-weight: 600;
}

/* ==========================================================================
   Top Bar & Sticky Header
   ========================================================================== */
.header-top {
  background-color: var(--wl-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top a {
  color: rgba(255, 255, 255, 0.8);
}

.header-top a:hover {
  color: var(--wl-accent);
}

.header-top .top-divider {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.2);
}

.main-navbar {
  background-color: var(--wl-white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  transition: all var(--transition-normal);
  z-index: 1030;
}

.main-navbar.sticky-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--wl-dark) !important;
  letter-spacing: -0.5px;
}
.navbar-brand img{
  height: 56px;
}
.navbar-brand span {
  color: var(--wl-primary);
}

.navbar-brand .brand-dot {
  color: var(--wl-accent);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--wl-dark) !important;
  padding: 8px 16px !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--wl-primary), var(--wl-secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/* ==========================================================================
   Global Buttons & Shine Effects
   ========================================================================== */
.btn-wl-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wl-primary) 0%, #0052cc 100%);
  color: var(--wl-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 110, 253, 0.3);
  transition: all var(--transition-normal);
  z-index: 1;
}

.btn-wl-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-wl-primary:hover::after {
  left: 100%;
}

.btn-wl-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 110, 253, 0.45);
  color: var(--wl-white);
  background: linear-gradient(135deg, var(--wl-secondary) 0%, #008f7d 100%);
}

.btn-wl-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--wl-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--wl-dark);
  transition: all var(--transition-normal);
}

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

.btn-wl-accent {
  background: linear-gradient(135deg, var(--wl-accent) 0%, #e69c00 100%);
  color: var(--wl-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
  transition: all var(--transition-normal);
}

.btn-wl-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 183, 3, 0.5);
  color: var(--wl-dark);
}

/* ==========================================================================
   Section Titles & Subtitles
   ========================================================================== */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--wl-secondary);
  background-color: rgba(0, 191, 166, 0.1);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--wl-dark);
  margin-bottom: 20px;
}

.section-title span {
  position: relative;
  display: inline-block;
  color: var(--wl-primary);
}

.section-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 183, 3, 0.35);
  z-index: -1;
  border-radius: 4px;
}

/* ==========================================================================
   Hero Section Showcase
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(12, 110, 253, 0.4) 100%),
              url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: var(--wl-white);
  padding: 100px 0 160px;
}

.hero-content h1 {
  color: var(--wl-white);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ==========================================================================
   Search Form Design (Floating Card)
   ========================================================================== */
.search-filter-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.search-filter-card {
  background-color: var(--wl-white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.search-filter-card .nav-tabs {
  border-bottom: none;
  gap: 12px;
  margin-bottom: 28px;
}

.search-filter-card .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--wl-text-muted) !important;
  background-color: var(--wl-light);
  border: none;
  border-radius: 12px;
  padding: 12px 24px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-filter-card .nav-link:hover {
  background-color: rgba(12, 110, 253, 0.1);
  color: var(--wl-primary) !important;
}

.search-filter-card .nav-link.active {
  background-color: var(--wl-primary) !important;
  color: var(--wl-white) !important;
  box-shadow: 0 6px 16px rgba(12, 110, 253, 0.3);
}

.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--wl-dark);
  margin-bottom: 8px;
}

.form-control-custom {
  height: 56px;
  border-radius: 12px;
  border: 1.5px solid var(--wl-border);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wl-dark);
  background-color: var(--wl-light);
  transition: all var(--transition-fast);
}

.form-control-custom:focus {
  border-color: var(--wl-primary);
  background-color: var(--wl-white);
  box-shadow: 0 0 0 4px rgba(12, 110, 253, 0.15);
  outline: none;
}

/* ==========================================================================
   Global Cards & Interactions (Destinations & Tours)
   ========================================================================== */
.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background-color: var(--wl-dark);
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dest-card:hover .dest-card-img {
  transform: scale(1.12);
}

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: background var(--transition-normal);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(180deg, rgba(12, 110, 253, 0.2) 0%, rgba(26,26,26,0.92) 100%);
}

.dest-badge {
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--wl-white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
}

.dest-info h3 {
  color: var(--wl-white);
  font-size: 26px;
  margin-bottom: 6px;
  transition: transform var(--transition-normal);
}

.dest-card:hover .dest-info h3 {
  transform: translateY(-4px);
  color: var(--wl-accent);
}

.dest-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* Tour Cards */
.tour-card {
  background-color: var(--wl-white);
  border-radius: 20px;
  border: 1px solid var(--wl-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(12, 110, 253, 0.3);
}

.tour-card-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-thumb img {
  transform: scale(1.08);
}

.tour-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--wl-accent) 0%, #e69c00 100%);
  color: var(--wl-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
}

.tour-wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--wl-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.tour-wishlist-btn:hover {
  background-color: #ff3b30;
  color: var(--wl-white);
  transform: scale(1.1);
}

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

.tour-location {
  font-size: 13px;
  color: var(--wl-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.tour-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.tour-title a {
  color: var(--wl-dark);
}

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

.tour-meta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dashed var(--wl-border);
  border-bottom: 1px dashed var(--wl-border);
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--wl-text-muted);
}

.tour-meta-grid span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-price .price-label {
  font-size: 12px;
  color: var(--wl-text-muted);
  display: block;
  line-height: 1;
}

.tour-price .price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--wl-primary);
}

/* ==========================================================================
   Breadcrumb Design
   ========================================================================== */
.breadcrumb-hero-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(12,110,253,0.7) 100%),
              url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: var(--wl-white);
  text-align: center;
  border-radius: 24px;
  margin: 40px 0;
  overflow: hidden;
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 16px;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.breadcrumb-custom a:hover {
  color: var(--wl-accent);
}

.breadcrumb-custom .separator {
  color: var(--wl-accent);
  font-size: 12px;
}

.breadcrumb-custom .current {
  color: var(--wl-white);
  font-weight: 700;
}

/* ==========================================================================
   Pagination Design
   ========================================================================== */
.pagination-wl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.pagination li{
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li a{
  padding: 4px 14px;
}

.page-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  background-color: var(--wl-light);
  color: var(--wl-dark);
  border: 1px solid var(--wl-border);
  transition: all var(--transition-fast);
}

.page-btn:hover {
  background-color: rgba(12, 110, 253, 0.1);
  color: var(--wl-primary);
  border-color: var(--wl-primary);
  transform: translateY(-2px);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--wl-primary) 0%, #0052cc 100%);
  color: var(--wl-white);
  border-color: var(--wl-primary);
  box-shadow: 0 6px 15px rgba(12, 110, 253, 0.35);
}

/* ==========================================================================
   Promotional Parallax CTA
   ========================================================================== */
.cta-parallax {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(12, 110, 253, 0.88) 0%, rgba(0, 191, 166, 0.85) 100%),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80') fixed center/cover no-repeat;
  color: var(--wl-white);
  text-align: center;
  margin: 80px 0;
}

.cta-parallax h2 {
  color: var(--wl-white);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-parallax p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   Newsletter Mega Design
   ========================================================================== */
.newsletter-card {
  background: linear-gradient(135deg, var(--wl-dark) 0%, #2a3442 100%);
  border-radius: 28px;
  padding: 60px;
  color: var(--wl-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 80px;
}

.newsletter-card::before {
  content: '\f5b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: 260px;
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(-15deg);
  pointer-events: none;
}

.newsletter-input-group {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
}

.newsletter-input-group input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  color: var(--wl-white);
  font-size: 15px;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input:focus {
  outline: none;
}

/* ==========================================================================
   Mega Footer
   ========================================================================== */
.mega-footer {
  background-color: var(--wl-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 0;
  font-size: 15px;
}

.mega-footer h4 {
  color: var(--wl-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.mega-footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--wl-secondary);
  border-radius: 2px;
}

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

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-list a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--wl-secondary);
  transition: transform var(--transition-fast);
}

.footer-link-list a:hover {
  color: var(--wl-accent);
  transform: translateX(5px);
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-info i {
  color: var(--wl-secondary);
  font-size: 18px;
  margin-top: 4px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--wl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  background-color: var(--wl-primary);
  transform: translateY(-4px);
}

.footer-bottom {
  background-color: #121212;
  padding: 24px 0;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Scroll To Top Button
   ========================================================================== */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #0c6efd;
  color: var(--wl-white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(12, 108, 253, 0.329);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-responsive{
  max-width: 100%;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(12, 110, 253, 0.6);
}

/* ==========================================================================
   Utilities & Badges
   ========================================================================== */
.bg-light-cloud {
  background-color: var(--wl-light);
}

.rating-stars {
  color: var(--wl-accent);
  font-size: 14px;
}

.feature-box {
  background-color: var(--wl-white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--wl-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--wl-secondary);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: rgba(0, 191, 166, 0.12);
  color: var(--wl-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.feature-box:hover .feature-icon-wrapper {
  background-color: var(--wl-secondary);
  color: var(--wl-white);
  transform: rotate(10deg);
}

/* Offcanvas custom */
.offcanvas-custom {
  background-color: var(--wl-dark);
  color: var(--wl-white);
}

.offcanvas-custom .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ==========================================================================
   Destination Showcase Rebuild Section
   ========================================================================== */
.showcase-card {
  background: var(--wl-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--wl-border);
  position: relative;
  outline: none;
}

.showcase-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--wl-dark);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.showcase-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 40%, rgba(26,26,26,0.85) 100%);
  opacity: 0.7;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--wl-secondary) 0%, #008f7d 100%);
  color: var(--wl-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.2);
  z-index: 2;
}

.showcase-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--wl-white);
  transition: background-color 0.4s ease;
}

.showcase-rating {
  font-size: 13px;
  color: var(--wl-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 500;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--wl-dark);
  margin-bottom: 12px;
  transition: color 0.4s ease;
  line-height: 1.3;
}

.showcase-desc {
  font-size: 14px;
  color: var(--wl-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--wl-border);
  padding-top: 16px;
  margin-top: auto;
}

.showcase-price {
  display: flex;
  flex-direction: column;
}

.showcase-price .price-label {
  font-size: 11px;
  color: var(--wl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-price .price-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--wl-primary);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--wl-primary) 0%, #0052cc 100%);
  color: var(--wl-white) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 7px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 10px rgba(12, 110, 253, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore:hover,
.btn-explore:focus-visible {
  background: linear-gradient(135deg, var(--wl-secondary) 0%, #008f7d 100%);
  box-shadow: 0 6px 15px rgba(0, 191, 166, 0.3);
  transform: translateY(-2px);
  outline: none;
}

/* Showcase Hover & Keyboard Focus States */
.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(12, 110, 253, 0.25);
}

.showcase-card:hover .showcase-img,
.showcase-card:focus-within .showcase-img {
  transform: scale(1.1);
}

.showcase-card:hover .showcase-img-overlay,
.showcase-card:focus-within .showcase-img-overlay {
  opacity: 0.95;
}

.showcase-card:hover .showcase-title,
.showcase-card:focus-within .showcase-title {
  color: var(--wl-primary);
}

.showcase-card:hover .btn-explore,
.showcase-card:focus-within .btn-explore {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Verified Traveler Testimonials — Premium Swiper Section
   All selectors are namespaced under .testimonials-* to avoid conflicts.
   ========================================================================== */

/* Section background */
#testimonials {
  background: linear-gradient(135deg, #f0f4ff 0%, #f9fafb 60%, #e8f5f1 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative orbs */
#testimonials::before,
#testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#testimonials::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12,110,253,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}
#testimonials::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,191,166,0.07) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

#testimonials .container {
  position: relative;
  z-index: 1;
}

/* Swiper overflow fix */
.testimonials-swiper {
  overflow: hidden;
  padding-bottom: 60px !important;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gradient top-border reveal on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wl-primary), var(--wl-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}

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

/* Large decorative quote mark */
.testimonial-quote-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12,110,253,0.1) 0%, rgba(0,191,166,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--wl-primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Star rating */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars i {
  font-size: 14px;
  color: #FFAD00;
}

/* Review text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 28px;
}

/* Trip meta pill */
.testimonial-trip-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(12,110,253,0.08) 0%, rgba(0,191,166,0.08) 100%);
  border: 1px solid rgba(12,110,253,0.15);
  color: var(--wl-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

/* Divider */
.testimonial-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 20px;
}

/* Avatar footer row */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar container for zoom effect */
.testimonial-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

/* Verified badge */
.testimonial-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--wl-primary);
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover .testimonial-verified-badge {
  transform: scale(1.25);
}

/* Traveler info */
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--wl-dark);
  margin: 0 0 3px;
}

.testimonial-country {
  font-size: 12px;
  color: var(--wl-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-date {
  font-size: 11px;
  color: var(--wl-text-muted);
  margin-top: 2px;
}

/* ---- Navigation Arrows ---- */
.testimonials-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.testimonials-prev,
.testimonials-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--wl-border);
  background: #fff;
  color: var(--wl-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  user-select: none;
  -webkit-user-select: none;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: linear-gradient(135deg, var(--wl-primary), var(--wl-secondary));
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(12,110,253,0.3);
}

.testimonials-prev.swiper-button-disabled,
.testimonials-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---- Pagination Dots ---- */
.testimonials-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(12,110,253,0.25);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--wl-primary);
  width: 28px;
  border-radius: 4px;
}


