/* ============================================
   TRAVELGULLY - COMPLETE STYLESHEET
   FIXED MOBILE MENU - NO BLUR
   EXTRA BIGGER LOGO - JPG LOGO FIX
   FIXED SOCIAL ICON OVERLAP
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --primary-light: #7c8ff5;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary: #f093fb;
  --accent: #f5576c;
  --success: #48bb78;
  --warning: #f6ad55;
  --danger: #fc8181;
  --info: #63b3ed;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition: 0.3s ease;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.required { color: var(--danger); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 10000;
}

.skip-link:focus { top: 1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn i { font-size: 0.875em; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  color: var(--white);
}

.plane-animation {
  font-size: 4rem;
  animation: fly 2s ease-in-out infinite;
}

@keyframes fly {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
}

.preloader-content p {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.loading-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--white);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0; margin-left: 0; }
  50% { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 99998;
}

/* ============================================
   BACK TO TOP - FIXED POSITION
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  flex-shrink: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ============================================
   FLOATING BUTTONS - FIXED NO OVERLAP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: all var(--transition);
  flex-shrink: 0;
}

.whatsapp-float i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.whatsapp-float .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}

.call-float {
  position: fixed;
  bottom: 10.5rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  animation: ring 3s ease infinite;
  flex-shrink: 0;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  5%, 15% { transform: rotate(-15deg); }
  10%, 20% { transform: rotate(15deg); }
  25% { transform: rotate(0); }
}

/* ============================================
   TOP BAR - FIXED SOCIAL ICON OVERLAP
   ============================================ */
.top-bar {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.top-bar-item:hover { color: var(--white); }
.top-bar-item i { color: var(--primary-light); flex-shrink: 0; }

.top-bar-social {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  flex-shrink: 0;
}

.top-bar-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR - DESKTOP
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 90px;
}

/* ============================================
   LOGO - UNIFIED FIX
   Works with BOTH class="nav-logo" AND class="logo"
   Supports JPG logos properly
   ============================================ */
.nav-logo,
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1001;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img,
.logo img {
  width: auto;
  height: 80px;
  max-height: 80px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: height var(--transition), transform var(--transition);
  background: transparent;
  border: none;
  border-radius: 0;
  image-rendering: auto;
}

.nav-logo.logo-only img,
.logo.logo-only img {
  height: 85px;
  max-height: 85px;
}

.nav-logo img:hover,
.logo img:hover {
  transform: scale(1.05);
}

.nav-logo .logo-icon,
.logo .logo-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .logo-text,
.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-text .brand-name,
.logo .logo-text .brand-name {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo .logo-text .brand-tagline,
.logo .logo-text .brand-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-logo .highlight,
.logo .highlight {
  color: var(--primary);
}

.navbar.scrolled .nav-container {
  min-height: 75px;
}

.navbar.scrolled .nav-logo img,
.navbar.scrolled .logo img {
  height: 65px;
  max-height: 65px;
}

.navbar.scrolled .nav-logo.logo-only img,
.navbar.scrolled .logo.logo-only img {
  height: 70px;
  max-height: 70px;
}

/* Nav Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
  background: rgba(102,126,234,0.08);
}

.nav-links > li > a i:first-child {
  font-size: 1rem;
  opacity: 0.8;
}

.dropdown-arrow {
  font-size: 0.625rem;
  transition: transform var(--transition);
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Desktop Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 1000;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(102,126,234,0.08);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-menu li a i {
  width: 20px;
  text-align: center;
  color: var(--primary);
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.5rem 0;
}

/* Mega Dropdown - Desktop */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1000;
  overflow: hidden;
}

.has-dropdown:hover > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.mega-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-100);
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mega-col ul li a:hover {
  background: rgba(102,126,234,0.08);
  color: var(--primary);
  transform: translateX(5px);
}

.mega-col ul li a .flag {
  font-size: 1.125rem;
}

/* Mega Featured */
.mega-featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 200px;
}

.mega-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}

.mega-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.mega-featured-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mega-featured-content p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.mega-footer {
  background: var(--gray-50);
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--primary);
  color: var(--white);
}

.nav-phone i { color: var(--primary); flex-shrink: 0; }
.nav-phone:hover i { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1002;
  transition: all var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active {
  background: var(--primary);
}

.hamburger.active span {
  background: var(--white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Header/Footer - Hidden on Desktop */
.mobile-menu-header,
.mobile-menu-footer {
  display: none !important;
}

/* ============================================
   NAV OVERLAY - NO BLUR
   ============================================ */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
@media (max-width: 991px) {
  .top-bar { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-container {
    min-height: 80px;
    padding: 0.25rem 1rem;
  }

  .nav-logo img,
  .logo img {
    height: 65px;
    max-height: 65px;
  }

  .nav-logo.logo-only img,
  .logo.logo-only img {
    height: 70px;
    max-height: 70px;
  }

  .nav-logo .logo-text .brand-name,
  .logo .logo-text .brand-name {
    font-size: 1.375rem;
  }

  .nav-logo .logo-text .brand-tagline,
  .logo .logo-text .brand-tagline {
    font-size: 0.5625rem;
  }

  /* Mobile Menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links.active {
    right: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 80px;
  }

  .mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
  }

  .mobile-menu-logo img {
    width: auto;
    height: 55px;
    max-height: 55px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 4px;
  }

  .mobile-menu-logo img.logo-no-bg {
    background: none;
    border-radius: 0;
    padding: 0;
  }

  .mobile-menu-logo img.logo-light {
    filter: brightness(0) invert(1);
    background: none;
    border-radius: 0;
    padding: 0;
  }

  .mobile-menu-logo img.logo-white {
    filter: none;
    background: none;
    border-radius: 0;
    padding: 0;
  }

  .mobile-menu-logo .logo-icon {
    font-size: 2rem;
    line-height: 1;
  }

  .mobile-menu-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .mobile-menu-logo .logo-text .brand-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
  }

  .mobile-menu-logo .logo-text .brand-tagline {
    font-size: 0.5625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-menu-logo .highlight {
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  /* Menu Items */
  .nav-links > li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
  }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    border-radius: 0;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    background: #f5f7ff;
    color: #667eea;
  }

  .nav-links > li > a i:first-child {
    width: 22px;
    text-align: center;
    color: #667eea;
    flex-shrink: 0;
  }

  /* Dropdown Arrow */
  .has-dropdown > a {
    position: relative;
  }

  .has-dropdown > a .dropdown-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.625rem;
    color: #999;
    transition: transform 0.3s ease;
  }

  .has-dropdown.open > a .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Mobile Dropdowns */
  .dropdown-menu,
  .mega-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa !important;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.open > .dropdown-menu,
  .has-dropdown.open > .mega-dropdown {
    max-height: 1000px;
  }

  /* Mega Dropdown Mobile */
  .mega-dropdown-inner {
    display: block;
    padding: 0.5rem 0;
  }

  .mega-col {
    padding: 0.75rem 1.25rem;
  }

  .mega-col h4 {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #667eea;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #eee;
  }

  .mega-col ul li:last-child a {
    border-bottom: none;
  }

  .mega-col ul li a:hover {
    color: #667eea;
    padding-left: 0.5rem;
    background: transparent;
  }

  .mega-featured {
    display: none !important;
  }

  .mega-footer {
    padding: 0.75rem 1.25rem;
    background: #eee;
    margin-top: 0.5rem;
  }

  .mega-footer .view-all-link {
    font-size: 0.875rem;
  }

  /* Standard Dropdown Mobile */
  .dropdown-menu li a {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
  }

  .dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #667eea;
    transform: none;
  }

  /* Mobile Menu Footer */
  .mobile-menu-footer {
    display: block !important;
    padding: 1.25rem;
    margin-top: auto;
    background: #f5f5f5;
    border-top: 2px solid #667eea;
  }

  .mobile-menu-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1rem;
  }

  .mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #e0e0e0;
  }

  .mobile-menu-contact i {
    font-size: 1.125rem;
    color: #667eea;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
  }

  .mobile-menu-contact.whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
  }

  .mobile-menu-contact.whatsapp i {
    color: #ffffff;
  }

  /* MOBILE SOCIAL - FIXED NO OVERLAP */
  .mobile-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .mobile-social a {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #555;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .mobile-social a:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .mobile-cta {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .nav-links {
    width: 100%;
    max-width: 100%;
  }

  .nav-container {
    min-height: 70px;
    padding: 0.25rem 0.75rem;
  }

  .nav-logo img,
  .logo img {
    height: 55px;
    max-height: 55px;
  }

  .nav-logo.logo-only img,
  .logo.logo-only img {
    height: 58px;
    max-height: 58px;
  }

  .nav-logo .logo-text .brand-name,
  .logo .logo-text .brand-name {
    font-size: 1.125rem;
  }

  .nav-logo .logo-text .brand-tagline,
  .logo .logo-text .brand-tagline {
    display: none;
  }

  .mobile-menu-logo img {
    height: 48px;
    max-height: 48px;
  }

  .whatsapp-float .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  .whatsapp-float,
  .call-float,
  .back-to-top {
    right: 1rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1rem;
  }

  .whatsapp-float {
    bottom: 5rem;
  }

  .call-float {
    bottom: 9rem;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .mobile-social a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 0.9rem;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .nav-logo img,
  .logo img {
    height: 48px;
    max-height: 48px;
  }

  .nav-logo.logo-only img,
  .logo.logo-only img {
    height: 50px;
    max-height: 50px;
  }

  .mobile-menu-logo img {
    height: 42px;
    max-height: 42px;
  }

  .back-to-top {
    right: 0.75rem;
    bottom: 1.25rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 4.5rem;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .call-float {
    right: 0.75rem;
    bottom: 8rem;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .mobile-social a {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17,24,39,0.85) 0%, rgba(55,65,81,0.7) 50%, rgba(17,24,39,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i { color: #fbbf24; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-keywords a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--white);
  transition: all var(--transition);
}

.hero-keywords a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
}

.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 700; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; }
.stat-label { display: block; font-size: 0.875rem; opacity: 0.8; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-prev,
.hero-next {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-dots { display: flex; gap: 0.5rem; }

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--white);
  width: 30px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: var(--radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.5s infinite;
}

@keyframes wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Animations */
.animate-fadeInDown { animation: fadeInDown 1s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 1s ease forwards; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 5rem 0;
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.booking-info { padding: 2rem; }

.booking-info .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.booking-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.booking-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.booking-feature i { color: var(--success); flex-shrink: 0; }

.booking-trust {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 1.125rem; color: var(--text-primary); }
.trust-item span { font-size: 0.75rem; color: var(--text-muted); }

.service-areas { margin-bottom: 2rem; }

.service-areas h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-areas h4 i { color: var(--primary); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tags span {
  padding: 0.375rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.area-tags span:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.booking-contact p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.booking-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.booking-contact .contact-item:hover {
  background: var(--primary);
  color: var(--white);
}

.booking-contact .contact-item i {
  width: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.booking-contact .contact-item:hover i { color: var(--white); }

.booking-contact .contact-item.whatsapp {
  background: #25d366;
  color: var(--white);
}

.booking-contact .contact-item.whatsapp i { color: var(--white); }

/* Booking Form Container */
.booking-form-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.booking-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.form-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-header h3 i { color: var(--primary); }
.form-header p { font-size: 0.875rem; color: var(--text-muted); }

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group { position: relative; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group label i { color: var(--primary); font-size: 0.875rem; flex-shrink: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .error-text {
  display: none;
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.375rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--danger);
}

.form-group.error .error-text {
  display: block;
}

/* Phone Input */
.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input select {
  width: 100px;
  flex-shrink: 0;
}

.phone-input input {
  flex: 1;
}

/* Trip Type Options */
.trip-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.trip-option {
  flex: 1;
  min-width: 100px;
}

.trip-option input {
  display: none;
}

.trip-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.trip-option:hover span {
  border-color: var(--primary-light);
}

.trip-option input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Hotel Options */
.hotel-options {
  display: flex;
  gap: 0.625rem;
}

.hotel-option {
  flex: 1;
}

.hotel-option input {
  display: none;
}

.hotel-option span {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.hotel-option:hover span {
  border-color: var(--primary-light);
}

.hotel-option input:checked + span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-color: #f59e0b;
  color: var(--white);
}

/* Consent */
.form-consent {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.consent-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.consent-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-option span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.consent-option span a {
  color: var(--primary);
  text-decoration: underline;
}

.form-consent .error-text {
  display: none;
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.5rem;
  margin-left: 1.75rem;
}

.form-consent.error .error-text {
  display: block;
}

/* Submit Button */
#submitBtn {
  position: relative;
  margin-top: 0.5rem;
}

#submitBtn .btn-loader {
  display: none;
}

#submitBtn.loading .btn-text {
  display: none;
}

#submitBtn.loading .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-note i {
  margin-right: 0.25rem;
}

/* Form Messages */
.form-message {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.form-message i {
  font-size: 2rem;
  flex-shrink: 0;
}

.form-message strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.form-message p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.form-success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #10b981;
}

.form-success i {
  color: #059669;
}

.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: #059669;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.form-error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #f87171;
}

.form-error i {
  color: #dc2626;
}

.form-message.show {
  display: flex;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations-section {
  background: var(--gray-50);
}

.destinations-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Destination Card */
.destination-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.destination-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-link {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transform: scale(0);
  transition: all var(--transition);
}

.destination-card:hover .destination-link {
  transform: scale(1);
}

.destination-link:hover {
  background: var(--primary);
  color: var(--white);
}

.destination-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.destination-badge.hot { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.destination-badge.trending { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.destination-badge.honeymoon { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.destination-badge.premium { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.destination-badge.luxury { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.destination-badge.family { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.destination-badge.new { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.destination-badge.india { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }

.destination-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.destination-wishlist:hover,
.destination-wishlist.active {
  color: var(--danger);
}

.destination-content {
  padding: 1.5rem;
}

.destination-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.destination-location i {
  color: var(--primary);
  flex-shrink: 0;
}

.destination-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-title a {
  color: var(--text-primary);
  transition: color var(--transition);
}

.destination-title a:hover {
  color: var(--primary);
}

.destination-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.destination-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.destination-rating i {
  color: #fbbf24;
}

.destination-rating span {
  font-weight: 400;
  color: var(--text-muted);
}

.destination-tags {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}

.destination-tags span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.destination-tags span i {
  color: var(--primary);
  flex-shrink: 0;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.why-card > p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.why-features li i {
  color: var(--success);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.stat-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-card .stat-suffix {
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-card .stat-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-trust span i {
  color: #4ade80;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--gray-50);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  opacity: 0.3;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-trip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Testimonials Controls */
.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dots .dot.active {
  background: var(--primary);
  width: 25px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.trust-badge img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.trust-info {
  text-align: left;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-rating i {
  color: #fbbf24;
}

.trust-count {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 0.875rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: 3rem 0;
  background: var(--gray-50);
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.newsletter-content i {
  font-size: 3rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.newsletter-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.newsletter-form {
  flex: 1;
  max-width: 450px;
}

.newsletter-input {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--white);
  color: var(--text-primary);
}

.newsletter-input input::placeholder {
  color: var(--text-muted);
}

.newsletter-input .btn {
  white-space: nowrap;
}

.newsletter-note {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.75rem;
}

.newsletter-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.875rem;
}

.newsletter-success.show {
  display: flex;
}

/* ============================================
   FOOTER - FIXED SOCIAL ICON OVERLAP
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  color: var(--gray-900);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-main {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

/* FOOTER LOGO - JPG FIX */
.footer-about {
  padding-right: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo img {
  width: auto;
  height: 70px;
  max-height: 70px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 6px;
}

.footer-logo img.logo-no-bg {
  background: none;
  border-radius: 0;
  padding: 0;
}

.footer-logo img.logo-light {
  filter: brightness(0) invert(1);
  background: none;
  border-radius: 0;
  padding: 0;
}

.footer-logo .logo-icon {
  font-size: 2.75rem;
  line-height: 1;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo .logo-text .brand-name {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo .logo-text .brand-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-logo .highlight {
  color: var(--primary-light);
}

.footer-about > p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: var(--white);
}

.footer-contact-info a i {
  width: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
}

/* FOOTER SOCIAL - FIXED NO OVERLAP */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  transition: all var(--transition);
}

.footer-links li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 0.625rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

/* Footer Certifications */
.footer-certifications {
  margin-bottom: 1rem;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cert-badge:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  transform: translateY(-2px);
}

.cert-badge i {
  font-size: 12px;
  color: #ffd166;
  flex-shrink: 0;
}

.cert-badge.govt-approved {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 209, 102, 0.08));
  border-color: rgba(255, 107, 53, 0.25);
  color: #ffd166;
  font-size: 10px;
  padding: 8px 14px;
  width: 100%;
  justify-content: center;
  margin-bottom: 4px;
}

.cert-badge.govt-approved:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 209, 102, 0.15));
  border-color: rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

.cert-badge.govt-approved i {
  color: #ffd166;
  font-size: 14px;
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 2rem;
  color: var(--gray-400);
  transition: color var(--transition);
  flex-shrink: 0;
}

.payment-icons i:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--white);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-icon.fa-check-circle {
  color: var(--success);
}

.toast-icon.fa-exclamation-circle {
  color: var(--danger);
}

.toast-icon.fa-info-circle {
  color: var(--info);
}

.toast-message {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.toast-close {
  padding: 0.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-info {
    padding: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-controls {
    bottom: 8rem;
  }

  .booking-features {
    grid-template-columns: 1fr;
  }

  .booking-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trip-type-options {
    flex-direction: column;
  }

  .trip-option {
    min-width: 100%;
  }

  .hotel-options {
    flex-direction: column;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about {
    padding-right: 0;
  }

  .footer-logo img {
    height: 55px;
    max-height: 55px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Footer Social - Tablet */
  .footer-social {
    gap: 0.625rem;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .cert-badges {
    justify-content: center;
  }

  .cert-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .cert-badge.govt-approved {
    font-size: 9px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-keywords {
    gap: 0.5rem;
  }

  .hero-keywords a {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .booking-form-container {
    padding: 1.5rem;
  }

  .phone-input {
    flex-direction: column;
  }

  .phone-input select {
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-inner {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-logo img {
    height: 48px;
    max-height: 48px;
  }

  /* Footer Social - Small Screen */
  .footer-social {
    gap: 0.5rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 0.875rem;
  }

  /* Top Bar Social - Small Screen */
  .top-bar-social {
    gap: 0.375rem;
  }

  .top-bar-social a {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .footer-social a {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 0.8125rem;
  }
}

/* Print Styles */
@media print {
  .preloader,
  .scroll-progress,
  .back-to-top,
  .whatsapp-float,
  .call-float,
  .top-bar,
  .navbar,
  .hero-controls,
  .scroll-indicator,
  .newsletter-section,
  .footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ============================================
   DESTINATIONS PAGE CSS
   ============================================ */
:root {
  --dest-primary: #2563eb;
  --dest-primary-dark: #1d4ed8;
  --dest-primary-light: #3b82f6;
  --dest-primary-lighter: #93c5fd;
  --dest-secondary: #0891b2;
  --dest-accent: #f59e0b;
  --dest-accent-light: #fbbf24;
  --dest-success: #10b981;
  --dest-error: #ef4444;
  --dest-warning: #f59e0b;
  --dest-white: #ffffff;
  --dest-black: #000000;
  --dest-gray-50: #f9fafb;
  --dest-gray-100: #f3f4f6;
  --dest-gray-200: #e5e7eb;
  --dest-gray-300: #d1d5db;
  --dest-gray-400: #9ca3af;
  --dest-gray-500: #6b7280;
  --dest-gray-600: #4b5563;
  --dest-gray-700: #374151;
  --dest-gray-800: #1f2937;
  --dest-gray-900: #111827;
  --dest-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --dest-gradient-secondary: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  --dest-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --dest-gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  --dest-gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  --dest-font-display: 'Playfair Display', Georgia, serif;
  --dest-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --dest-space-xs: 0.25rem;
  --dest-space-sm: 0.5rem;
  --dest-space-md: 1rem;
  --dest-space-lg: 1.5rem;
  --dest-space-xl: 2rem;
  --dest-space-2xl: 3rem;
  --dest-space-3xl: 4rem;
  --dest-space-4xl: 6rem;
  --dest-radius-sm: 0.375rem;
  --dest-radius-md: 0.5rem;
  --dest-radius-lg: 0.75rem;
  --dest-radius-xl: 1rem;
  --dest-radius-2xl: 1.5rem;
  --dest-radius-full: 9999px;
  --dest-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --dest-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --dest-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --dest-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --dest-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --dest-transition-fast: 150ms ease;
  --dest-transition-base: 300ms ease;
  --dest-transition-slow: 500ms ease;
  --dest-container-max: 1280px;
  --dest-navbar-height: 95px;
}

/* Destinations Page Base */
.destinations-page {
  margin: 0;
  padding: 0;
  font-family: var(--dest-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dest-gray-700);
  background: var(--dest-white);
  overflow-x: hidden;
}

.destinations-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.destinations-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.destinations-page a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dest-transition-fast);
}

.destinations-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.destinations-page ul {
  list-style: none;
}

.dest-container {
  width: 100%;
  max-width: var(--dest-container-max);
  margin: 0 auto;
  padding: 0 var(--dest-space-lg);
}

/* Dest Preloader */
.dest-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dest-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dest-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.dest-preloader-content {
  text-align: center;
}

.dest-globe {
  font-size: 4rem;
  animation: dest-spin 3s linear infinite;
}

@keyframes dest-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dest-preloader-content p {
  margin-top: var(--dest-space-md);
  color: var(--dest-gray-600);
  font-weight: 500;
}

/* Dest Back to Top */
.dest-back-to-top {
  position: fixed;
  bottom: var(--dest-space-xl);
  right: var(--dest-space-xl);
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  border-radius: var(--dest-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--dest-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dest-transition-base);
  z-index: 100;
  flex-shrink: 0;
}

.dest-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dest-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--dest-shadow-xl);
}

/* Dest WhatsApp Float */
.dest-whatsapp-float {
  position: fixed;
  bottom: var(--dest-space-xl);
  left: var(--dest-space-xl);
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: #25d366;
  color: var(--dest-white);
  border-radius: var(--dest-radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--dest-shadow-lg);
  z-index: 100;
  transition: all var(--dest-transition-base);
}

.dest-whatsapp-float i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dest-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: var(--dest-shadow-xl);
  color: var(--dest-white);
}

@media (max-width: 768px) {
  .dest-whatsapp-float span {
    display: none;
  }

  .dest-whatsapp-float {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    padding: 0;
    justify-content: center;
  }
}

/* ============================================
   DESTINATIONS PAGE NAVBAR - JPG LOGO FIX
   ============================================ */
.dest-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--dest-navbar-height);
  background: transparent;
  z-index: 1000;
  transition: all var(--dest-transition-base);
}

.dest-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--dest-shadow-md);
  height: 85px;
}

.dest-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--dest-container-max);
  margin: 0 auto;
  padding: 0 var(--dest-space-lg);
}

/* DESTINATIONS PAGE LOGO - JPG FIX */
.dest-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--dest-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dest-white);
  z-index: 10;
  text-decoration: none;
  flex-shrink: 0;
}

.dest-nav-logo img {
  width: auto;
  height: 75px;
  max-height: 75px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: height var(--dest-transition-base);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 4px;
}

.dest-nav-logo img.logo-no-bg {
  background: none;
  border-radius: 0;
  padding: 0;
}

.dest-nav-logo img.logo-dark {
  filter: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 4px;
}

.dest-navbar.scrolled .dest-nav-logo img.logo-dark {
  filter: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.dest-nav-logo img.logo-white {
  filter: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.dest-navbar.scrolled .dest-nav-logo img.logo-white {
  filter: none;
}

.dest-nav-logo img:not(.logo-dark):not(.logo-white):not(.logo-no-bg) {
  transition: all var(--dest-transition-base);
}

.dest-navbar.scrolled .dest-nav-logo {
  color: var(--dest-gray-900);
}

.dest-navbar.scrolled .dest-nav-logo img {
  height: 62px;
  max-height: 62px;
  background: none;
  border-radius: 0;
  padding: 0;
}

.dest-logo-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.dest-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.dest-logo-text span {
  color: var(--dest-primary);
}

.dest-logo-text .brand-name {
  font-size: 1.625rem;
  font-weight: 700;
}

.dest-logo-text .brand-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dest-navbar.scrolled .dest-logo-text .brand-tagline {
  color: var(--dest-gray-500);
}

/* Dest Nav Links */
.dest-nav-links {
  display: flex;
  align-items: center;
  gap: var(--dest-space-xs);
}

.dest-nav-links li a {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
}

.dest-nav-links li a i {
  font-size: 1rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.dest-navbar.scrolled .dest-nav-links li a {
  color: var(--dest-gray-700);
}

.dest-nav-links li a:hover,
.dest-nav-links li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--dest-white);
}

.dest-navbar.scrolled .dest-nav-links li a:hover,
.dest-navbar.scrolled .dest-nav-links li a.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--dest-primary);
}

/* Dest Nav Actions */
.dest-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--dest-space-md);
}

.dest-nav-phone {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dest-white);
}

.dest-navbar.scrolled .dest-nav-phone {
  color: var(--dest-gray-700);
}

.dest-nav-phone i {
  color: var(--dest-accent);
  flex-shrink: 0;
}

.dest-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
}

.dest-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--dest-shadow-lg);
  color: var(--dest-white);
}

/* Dest Hamburger */
.dest-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

.dest-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dest-white);
  border-radius: var(--dest-radius-full);
  transition: all var(--dest-transition-base);
}

.dest-navbar.scrolled .dest-hamburger span {
  background: var(--dest-gray-800);
}

.dest-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.dest-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.dest-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dest Mobile Navigation */
@media (max-width: 1024px) {
  .dest-hamburger {
    display: flex;
  }

  .dest-nav-logo img {
    height: 60px;
    max-height: 60px;
  }

  .dest-navbar.scrolled .dest-nav-logo img {
    height: 52px;
    max-height: 52px;
  }

  .dest-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--dest-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--dest-space-2xl);
    box-shadow: var(--dest-shadow-2xl);
    transition: right var(--dest-transition-base);
  }

  .dest-nav-links.show {
    right: 0;
  }

  .dest-nav-links li a {
    color: var(--dest-gray-700);
    font-size: 1.125rem;
    padding: var(--dest-space-md);
    width: 100%;
    justify-content: center;
  }

  .dest-nav-links li a:hover,
  .dest-nav-links li a.active {
    background: var(--dest-gray-100);
    color: var(--dest-primary);
  }

  .dest-nav-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .dest-nav-logo img {
    height: 50px;
    max-height: 50px;
  }

  .dest-navbar.scrolled .dest-nav-logo img {
    height: 44px;
    max-height: 44px;
  }

  .dest-logo-text .brand-name {
    font-size: 1.25rem;
  }

  .dest-logo-text .brand-tagline {
    display: none;
  }
}

@media (max-width: 360px) {
  .dest-nav-logo img {
    height: 44px;
    max-height: 44px;
  }

  .dest-navbar.scrolled .dest-nav-logo img {
    height: 38px;
    max-height: 38px;
  }
}

/* Dest Hero */
.dest-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dest-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.dest-hero-slider {
  width: 100%;
  height: 100%;
}

.dest-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.dest-hero-slide.active {
  opacity: 1;
}

.dest-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--dest-space-xl);
}

.dest-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--dest-radius-full);
  color: var(--dest-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--dest-space-xl);
  animation: dest-fadeInDown 0.8s ease;
}

.dest-hero-badge i {
  color: var(--dest-accent);
  flex-shrink: 0;
}

@keyframes dest-fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ============================================
   TRAVELGULLY - DESTINATIONS PAGE CSS
   Separate stylesheet for destinations page
   ============================================ */

/* ==========================================
   1. CSS VARIABLES (Destinations Page)
   ========================================== */
:root {
  /* Primary Colors */
  --dest-primary: #2563eb;
  --dest-primary-dark: #1d4ed8;
  --dest-primary-light: #3b82f6;
  --dest-primary-lighter: #93c5fd;
  
  /* Secondary Colors */
  --dest-secondary: #0891b2;
  --dest-accent: #f59e0b;
  --dest-accent-light: #fbbf24;
  
  /* Status Colors */
  --dest-success: #10b981;
  --dest-error: #ef4444;
  --dest-warning: #f59e0b;
  
  /* Neutral Colors */
  --dest-white: #ffffff;
  --dest-black: #000000;
  --dest-gray-50: #f9fafb;
  --dest-gray-100: #f3f4f6;
  --dest-gray-200: #e5e7eb;
  --dest-gray-300: #d1d5db;
  --dest-gray-400: #9ca3af;
  --dest-gray-500: #6b7280;
  --dest-gray-600: #4b5563;
  --dest-gray-700: #374151;
  --dest-gray-800: #1f2937;
  --dest-gray-900: #111827;
  
  /* Gradients */
  --dest-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --dest-gradient-secondary: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  --dest-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --dest-gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  --dest-gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  
  /* Typography */
  --dest-font-display: 'Playfair Display', Georgia, serif;
  --dest-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --dest-space-xs: 0.25rem;
  --dest-space-sm: 0.5rem;
  --dest-space-md: 1rem;
  --dest-space-lg: 1.5rem;
  --dest-space-xl: 2rem;
  --dest-space-2xl: 3rem;
  --dest-space-3xl: 4rem;
  --dest-space-4xl: 6rem;
  
  /* Border Radius */
  --dest-radius-sm: 0.375rem;
  --dest-radius-md: 0.5rem;
  --dest-radius-lg: 0.75rem;
  --dest-radius-xl: 1rem;
  --dest-radius-2xl: 1.5rem;
  --dest-radius-full: 9999px;
  
  /* Shadows */
  --dest-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --dest-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --dest-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --dest-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --dest-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  
  /* Transitions */
  --dest-transition-fast: 150ms ease;
  --dest-transition-base: 300ms ease;
  --dest-transition-slow: 500ms ease;
  
  /* Layout */
  --dest-container-max: 1280px;
  --dest-navbar-height: 80px;
}

/* ==========================================
   2. RESET & BASE (Destinations Page)
   ========================================== */
.destinations-page {
  margin: 0;
  padding: 0;
  font-family: var(--dest-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dest-gray-700);
  background: var(--dest-white);
  overflow-x: hidden;
}

.destinations-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.destinations-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.destinations-page a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dest-transition-fast);
}

.destinations-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.destinations-page ul {
  list-style: none;
}

.dest-container {
  width: 100%;
  max-width: var(--dest-container-max);
  margin: 0 auto;
  padding: 0 var(--dest-space-lg);
}

/* ==========================================
   3. PRELOADER
   ========================================== */
.dest-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dest-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dest-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.dest-preloader-content {
  text-align: center;
}

.dest-globe {
  font-size: 4rem;
  animation: dest-spin 3s linear infinite;
}

@keyframes dest-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dest-preloader-content p {
  margin-top: var(--dest-space-md);
  color: var(--dest-gray-600);
  font-weight: 500;
}

/* ==========================================
   4. BACK TO TOP
   ========================================== */
.dest-back-to-top {
  position: fixed;
  bottom: var(--dest-space-xl);
  right: var(--dest-space-xl);
  width: 50px;
  height: 50px;
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  border-radius: var(--dest-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--dest-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dest-transition-base);
  z-index: 100;
}

.dest-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dest-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--dest-shadow-xl);
}

/* ==========================================
   5. WHATSAPP FLOAT
   ========================================== */
.dest-whatsapp-float {
  position: fixed;
  bottom: var(--dest-space-xl);
  left: var(--dest-space-xl);
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: #25d366;
  color: var(--dest-white);
  border-radius: var(--dest-radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--dest-shadow-lg);
  z-index: 100;
  transition: all var(--dest-transition-base);
}

.dest-whatsapp-float i {
  font-size: 1.5rem;
}

.dest-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: var(--dest-shadow-xl);
  color: var(--dest-white);
}

@media (max-width: 768px) {
  .dest-whatsapp-float span {
    display: none;
  }
  
  .dest-whatsapp-float {
    width: 55px;
    height: 55px;
    padding: 0;
    justify-content: center;
  }
}

/* ==========================================
   6. NAVBAR
   ========================================== */
.dest-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--dest-navbar-height);
  background: transparent;
  z-index: 1000;
  transition: all var(--dest-transition-base);
}

.dest-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--dest-shadow-md);
}

.dest-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--dest-container-max);
  margin: 0 auto;
  padding: 0 var(--dest-space-lg);
}

/* Logo */
.dest-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-family: var(--dest-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dest-white);
  z-index: 10;
}

.dest-navbar.scrolled .dest-nav-logo {
  color: var(--dest-gray-900);
}

.dest-logo-icon {
  font-size: 1.75rem;
}

.dest-logo-text span {
  color: var(--dest-primary);
}

/* Nav Links */
.dest-nav-links {
  display: flex;
  align-items: center;
  gap: var(--dest-space-xs);
}

.dest-nav-links li a {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
}

.dest-nav-links li a i {
  font-size: 1rem;
  opacity: 0.7;
}

.dest-navbar.scrolled .dest-nav-links li a {
  color: var(--dest-gray-700);
}

.dest-nav-links li a:hover,
.dest-nav-links li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--dest-white);
}

.dest-navbar.scrolled .dest-nav-links li a:hover,
.dest-navbar.scrolled .dest-nav-links li a.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--dest-primary);
}

/* Nav Actions */
.dest-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--dest-space-md);
}

.dest-nav-phone {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dest-white);
}

.dest-navbar.scrolled .dest-nav-phone {
  color: var(--dest-gray-700);
}

.dest-nav-phone i {
  color: var(--dest-accent);
}

.dest-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
}

.dest-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--dest-shadow-lg);
  color: var(--dest-white);
}

/* Hamburger */
.dest-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

.dest-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dest-white);
  border-radius: var(--dest-radius-full);
  transition: all var(--dest-transition-base);
}

.dest-navbar.scrolled .dest-hamburger span {
  background: var(--dest-gray-800);
}

.dest-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.dest-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.dest-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .dest-hamburger {
    display: flex;
  }

  .dest-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--dest-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--dest-space-2xl);
    box-shadow: var(--dest-shadow-2xl);
    transition: right var(--dest-transition-base);
  }

  .dest-nav-links.show {
    right: 0;
  }

  .dest-nav-links li a {
    color: var(--dest-gray-700);
    font-size: 1.125rem;
    padding: var(--dest-space-md);
    width: 100%;
    justify-content: center;
  }

  .dest-nav-links li a:hover,
  .dest-nav-links li a.active {
    background: var(--dest-gray-100);
    color: var(--dest-primary);
  }

  .dest-nav-actions {
    display: none;
  }
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
.dest-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dest-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.dest-hero-slider {
  width: 100%;
  height: 100%;
}

.dest-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.dest-hero-slide.active {
  opacity: 1;
}

.dest-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--dest-space-xl);
}

.dest-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--dest-radius-full);
  color: var(--dest-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--dest-space-xl);
  animation: dest-fadeInDown 0.8s ease;
}

.dest-hero-badge i {
  color: var(--dest-accent);
}

/* ==========================================
   7. HERO SECTION (Continued)
   ========================================== */
.dest-hero-title {
  font-family: var(--dest-font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--dest-white);
  line-height: 1.1;
  margin-bottom: var(--dest-space-lg);
  animation: dest-fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.dest-hero-title span {
  background: linear-gradient(135deg, var(--dest-accent) 0%, var(--dest-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dest-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto var(--dest-space-2xl);
  animation: dest-fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* Search Box */
.dest-search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto var(--dest-space-xl);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--dest-radius-full);
  padding: var(--dest-space-sm);
  animation: dest-fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.dest-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: 0 var(--dest-space-lg);
}

.dest-search-input i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
}

.dest-search-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--dest-white);
  font-size: 1rem;
  padding: var(--dest-space-md) 0;
}

.dest-search-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dest-search-btn {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-md) var(--dest-space-xl);
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--dest-radius-full);
  transition: all var(--dest-transition-base);
}

.dest-search-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--dest-shadow-lg);
}

/* Quick Tags */
.dest-quick-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dest-space-sm);
  animation: dest-fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-xs);
  padding: var(--dest-space-sm) var(--dest-space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--dest-radius-full);
  color: var(--dest-white);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dest-transition-base);
}

.dest-tag:hover {
  background: var(--dest-white);
  color: var(--dest-gray-900);
  transform: translateY(-2px);
}

.dest-tag i {
  font-size: 0.875rem;
}

/* Scroll Indicator */
.dest-scroll-indicator {
  position: absolute;
  bottom: var(--dest-space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--dest-space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: dest-bounce 2s ease-in-out infinite;
  z-index: 3;
}

.dest-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.dest-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--dest-white);
  border-radius: var(--dest-radius-full);
  animation: dest-scroll-wheel 2s ease-in-out infinite;
}

@keyframes dest-scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(8px);
  }
}

@keyframes dest-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes dest-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dest-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .dest-search-box {
    flex-direction: column;
    border-radius: var(--dest-radius-xl);
    padding: var(--dest-space-md);
  }

  .dest-search-input {
    padding: var(--dest-space-sm);
  }

  .dest-search-btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--dest-space-sm);
  }

  .dest-scroll-indicator {
    display: none;
  }
}

/* ==========================================
   8. TRUST STRIP
   ========================================== */
.dest-trust-strip {
  background: var(--dest-gradient-primary);
  padding: var(--dest-space-lg) 0;
  overflow: hidden;
}

.dest-trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--dest-space-2xl);
  max-width: var(--dest-container-max);
  margin: 0 auto;
  padding: 0 var(--dest-space-lg);
}

.dest-trust-item {
  display: flex;
  align-items: center;
  gap: var(--dest-space-md);
  color: var(--dest-white);
}

.dest-trust-item i {
  font-size: 2rem;
  opacity: 0.9;
}

.dest-trust-item div {
  display: flex;
  flex-direction: column;
}

.dest-trust-item strong {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.dest-trust-item span {
  font-size: 0.8125rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .dest-trust-container {
    gap: var(--dest-space-lg);
  }

  .dest-trust-item {
    flex: 1 1 45%;
    justify-content: center;
  }
}

/* ==========================================
   9. FILTER SECTION
   ========================================== */
.dest-filter-section {
  padding: var(--dest-space-3xl) 0;
  background: var(--dest-gray-50);
}

.dest-filter-header {
  text-align: center;
  margin-bottom: var(--dest-space-xl);
}

.dest-filter-header h2 {
  font-family: var(--dest-font-display);
  font-size: 1.75rem;
  color: var(--dest-gray-900);
  margin-bottom: var(--dest-space-sm);
}

.dest-filter-header p {
  color: var(--dest-gray-500);
  font-size: 1rem;
}

.dest-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dest-space-sm);
}

.dest-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: var(--dest-white);
  border: 2px solid var(--dest-gray-200);
  border-radius: var(--dest-radius-full);
  color: var(--dest-gray-600);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--dest-transition-base);
  cursor: pointer;
}

.dest-filter-btn:hover {
  border-color: var(--dest-primary-light);
  color: var(--dest-primary);
}

.dest-filter-btn.active {
  background: var(--dest-primary);
  border-color: var(--dest-primary);
  color: var(--dest-white);
}

.dest-filter-btn i {
  font-size: 1rem;
}

/* ==========================================
   10. SECTION HEADER
   ========================================== */
.dest-section-header {
  text-align: center;
  margin-bottom: var(--dest-space-3xl);
}

.dest-section-header.light .dest-section-title,
.dest-section-header.light .dest-section-subtitle {
  color: var(--dest-white);
}

.dest-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-md);
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--dest-radius-full);
  margin-bottom: var(--dest-space-md);
}

.dest-section-title {
  font-family: var(--dest-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--dest-gray-900);
  margin-bottom: var(--dest-space-md);
  line-height: 1.2;
}

.dest-section-title span {
  background: var(--dest-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dest-section-subtitle {
  font-size: 1.125rem;
  color: var(--dest-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   11. DESTINATIONS GRID
   ========================================== */
.dest-grid-section {
  padding: var(--dest-space-4xl) 0;
  background: var(--dest-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--dest-space-xl);
}

/* Destination Card */
.dest-card {
  background: var(--dest-white);
  border-radius: var(--dest-radius-2xl);
  overflow: hidden;
  box-shadow: var(--dest-shadow-md);
  transition: all var(--dest-transition-base);
  opacity: 1;
  transform: translateY(0);
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--dest-shadow-xl);
}

.dest-card.hidden {
  display: none;
}

.dest-card.featured {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .dest-card.featured {
    grid-column: span 1;
  }
}

/* Card Image */
.dest-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dest-card.featured .dest-card-image {
  height: 300px;
}

.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dest-transition-slow);
}

.dest-card:hover .dest-card-image img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dest-gradient-overlay);
  opacity: 0;
  transition: opacity var(--dest-transition-base);
}

.dest-card:hover .dest-card-overlay {
  opacity: 1;
}

/* Card Badges */
.dest-card-badges {
  position: absolute;
  top: var(--dest-space-md);
  left: var(--dest-space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--dest-space-xs);
}

.dest-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-xs);
  padding: var(--dest-space-xs) var(--dest-space-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--dest-radius-md);
  color: var(--dest-white);
}

.dest-badge.trending {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.dest-badge.hot {
  background: #ef4444;
}

.dest-badge.romantic {
  background: #ec4899;
}

.dest-badge.luxury {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: var(--dest-gray-900);
}

.dest-badge.cultural {
  background: #8b5cf6;
}

.dest-badge.family {
  background: #10b981;
}

.dest-badge.iconic {
  background: var(--dest-primary);
}

.dest-badge.adventure {
  background: #14b8a6;
}

.dest-badge.budget {
  background: #22c55e;
}

.dest-badge.scenic {
  background: #06b6d4;
}

.dest-badge.discount {
  background: #10b981;
}

/* Card Wishlist */
.dest-card-wishlist {
  position: absolute;
  top: var(--dest-space-md);
  right: var(--dest-space-md);
  width: 40px;
  height: 40px;
  background: var(--dest-white);
  border-radius: var(--dest-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dest-gray-400);
  font-size: 1.125rem;
  box-shadow: var(--dest-shadow-md);
  transition: all var(--dest-transition-base);
  cursor: pointer;
}

.dest-card-wishlist:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.dest-card-wishlist.active {
  color: #ef4444;
}

.dest-card-wishlist.active i {
  font-weight: 900;
}

/* Quick Info */
.dest-card-quick-info {
  position: absolute;
  bottom: var(--dest-space-md);
  left: var(--dest-space-md);
  right: var(--dest-space-md);
  display: flex;
  gap: var(--dest-space-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--dest-transition-base);
}

.dest-card:hover .dest-card-quick-info {
  opacity: 1;
  transform: translateY(0);
}

.dest-card-quick-info span {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-xs);
  padding: var(--dest-space-xs) var(--dest-space-sm);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--dest-radius-md);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dest-gray-700);
}

.dest-card-quick-info span i {
  color: var(--dest-primary);
}

/* Card Content */
.dest-card-content {
  padding: var(--dest-space-lg);
}

.dest-card-location {
  display: flex;
  align-items: center;
  gap: var(--dest-space-xs);
  font-size: 0.8125rem;
  color: var(--dest-gray-500);
  margin-bottom: var(--dest-space-sm);
}

.dest-card-location i {
  color: var(--dest-primary);
}

.dest-card-title {
  font-family: var(--dest-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dest-gray-900);
  margin-bottom: var(--dest-space-sm);
}

.dest-card-desc {
  font-size: 0.9375rem;
  color: var(--dest-gray-600);
  line-height: 1.6;
  margin-bottom: var(--dest-space-md);
}

/* Card Highlights */
.dest-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dest-space-sm);
  margin-bottom: var(--dest-space-lg);
}

.dest-card-highlights span {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-xs);
  font-size: 0.75rem;
  color: var(--dest-gray-600);
}

.dest-card-highlights span i {
  color: var(--dest-success);
  font-size: 0.6875rem;
}

/* Card Footer */
.dest-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--dest-space-md);
  margin-bottom: var(--dest-space-md);
  border-bottom: 1px solid var(--dest-gray-100);
}

.dest-card-price {
  display: flex;
  flex-direction: column;
}

.dest-price-label {
  font-size: 0.75rem;
  color: var(--dest-gray-500);
}

.dest-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dest-primary);
}

.dest-card-rating {
  display: flex;
  align-items: center;
  gap: var(--dest-space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dest-gray-700);
}

.dest-card-rating i {
  color: var(--dest-accent);
}

.dest-rating-count {
  font-weight: 400;
  color: var(--dest-gray-400);
}

/* Card Button */
.dest-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--dest-space-sm);
  width: 100%;
  padding: var(--dest-space-md) var(--dest-space-lg);
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--dest-radius-xl);
  transition: all var(--dest-transition-base);
}

.dest-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--dest-shadow-lg);
  color: var(--dest-white);
}

.dest-card-btn i {
  transition: transform var(--dest-transition-base);
}

.dest-card-btn:hover i {
  transform: translateX(5px);
}

/* No Results */
.dest-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--dest-space-4xl);
}

.dest-no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.dest-no-results-content i {
  font-size: 4rem;
  color: var(--dest-gray-300);
  margin-bottom: var(--dest-space-lg);
}

.dest-no-results-content h3 {
  font-size: 1.5rem;
  color: var(--dest-gray-700);
  margin-bottom: var(--dest-space-sm);
}

.dest-no-results-content p {
  color: var(--dest-gray-500);
  margin-bottom: var(--dest-space-lg);
}

.dest-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-md) var(--dest-space-xl);
  background: var(--dest-primary);
  color: var(--dest-white);
  font-weight: 600;
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
}

.dest-reset-btn:hover {
  background: var(--dest-primary-dark);
  transform: translateY(-2px);
}

/* Load More */
.dest-load-more {
  text-align: center;
  margin-top: var(--dest-space-3xl);
}

.dest-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-md) var(--dest-space-2xl);
  background: var(--dest-white);
  border: 2px solid var(--dest-primary);
  color: var(--dest-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--dest-radius-full);
  transition: all var(--dest-transition-base);
  cursor: pointer;
}

.dest-load-more-btn:hover {
  background: var(--dest-primary);
  color: var(--dest-white);
  transform: translateY(-2px);
  box-shadow: var(--dest-shadow-lg);
}

/* ==========================================
   12. WHY SECTION
   ========================================== */
.dest-why-section {
  padding: var(--dest-space-4xl) 0;
  background: var(--dest-gradient-dark);
  position: relative;
  overflow: hidden;
}

.dest-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.dest-why-section .dest-section-header {
  position: relative;
  z-index: 1;
}

.dest-why-section .dest-section-title {
  color: var(--dest-white);
}

.dest-why-section .dest-section-title span {
  background: linear-gradient(135deg, var(--dest-accent) 0%, var(--dest-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dest-why-section .dest-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.dest-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--dest-space-xl);
  position: relative;
  z-index: 1;
}

.dest-why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dest-radius-2xl);
  padding: var(--dest-space-2xl);
  text-align: center;
  transition: all var(--dest-transition-base);
}

.dest-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.dest-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--dest-space-lg);
  background: var(--dest-gradient-primary);
  border-radius: var(--dest-radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dest-white);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.dest-why-card h3 {
  font-size: 1.25rem;
  color: var(--dest-white);
  margin-bottom: var(--dest-space-sm);
}

.dest-why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==========================================
   13. CTA SECTION
   ========================================== */
.dest-cta-section {
  position: relative;
  padding: var(--dest-space-4xl) 0;
  overflow: hidden;
}

.dest-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.dest-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.dest-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.dest-cta-content h2 {
  font-family: var(--dest-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dest-white);
  margin-bottom: var(--dest-space-md);
}

.dest-cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--dest-space-xl);
}

.dest-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dest-space-md);
  margin-bottom: var(--dest-space-xl);
}

.dest-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-md) var(--dest-space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--dest-radius-xl);
  transition: all var(--dest-transition-base);
}

.dest-cta-btn.primary {
  background: var(--dest-gradient-primary);
  color: var(--dest-white);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.dest-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
  color: var(--dest-white);
}

.dest-cta-btn.secondary {
  background: transparent;
  color: var(--dest-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.dest-cta-btn.secondary:hover {
  background: var(--dest-white);
  color: var(--dest-gray-900);
  border-color: var(--dest-white);
}

.dest-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dest-space-lg);
}

.dest-cta-features span {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.dest-cta-features span i {
  color: var(--dest-success);
}

/* ==========================================
   14. TESTIMONIALS SECTION
   ========================================== */
.dest-testimonials-section {
  padding: var(--dest-space-4xl) 0;
  background: var(--dest-gray-50);
}

.dest-testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.dest-testimonials-track {
  position: relative;
  min-height: 350px;
}

.dest-testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--dest-space-2xl);
  background: var(--dest-white);
  border-radius: var(--dest-radius-2xl);
  box-shadow: var(--dest-shadow-lg);
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--dest-transition-slow);
  pointer-events: none;
}

.dest-testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.dest-testimonial-rating {
  display: flex;
  justify-content: center;
  gap: var(--dest-space-xs);
  margin-bottom: var(--dest-space-lg);
}

.dest-testimonial-rating i {
  color: var(--dest-accent);
  font-size: 1.25rem;
}

.dest-testimonial-card blockquote {
  font-family: var(--dest-font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dest-gray-700);
  line-height: 1.7;
  margin-bottom: var(--dest-space-lg);
  position: relative;
}

.dest-testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--dest-primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.dest-testimonial-trip {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-sm) var(--dest-space-md);
  background: var(--dest-gray-100);
  border-radius: var(--dest-radius-full);
  font-size: 0.875rem;
  color: var(--dest-gray-600);
  margin-bottom: var(--dest-space-lg);
}

.dest-testimonial-trip i {
  color: var(--dest-primary);
}

.dest-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--dest-space-md);
}

.dest-testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--dest-radius-full);
  object-fit: cover;
  border: 3px solid var(--dest-primary);
}

.dest-testimonial-author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dest-gray-900);
  margin-bottom: var(--dest-space-xs);
}

.dest-testimonial-author p {
  font-size: 0.875rem;
  color: var(--dest-gray-500);
  margin: 0;
}

/* Testimonial Controls */
.dest-testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--dest-space-lg);
  margin-top: var(--dest-space-xl);
}

.dest-testimonial-prev,
.dest-testimonial-next {
  width: 50px;
  height: 50px;
  background: var(--dest-white);
  border: 2px solid var(--dest-gray-200);
  border-radius: var(--dest-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dest-gray-600);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--dest-transition-base);
}

.dest-testimonial-prev:hover,
.dest-testimonial-next:hover {
  background: var(--dest-primary);
  border-color: var(--dest-primary);
  color: var(--dest-white);
  transform: scale(1.1);
}

.dest-testimonial-dots {
  display: flex;
  gap: var(--dest-space-sm);
}

.dest-dot {
  width: 12px;
  height: 12px;
  background: var(--dest-gray-300);
  border: none;
  border-radius: var(--dest-radius-full);
  cursor: pointer;
  transition: all var(--dest-transition-base);
}

.dest-dot:hover {
  background: var(--dest-gray-400);
}

.dest-dot.active {
  background: var(--dest-primary);
  width: 30px;
}

/* ==========================================
   15. NEWSLETTER SECTION
   ========================================== */
.dest-newsletter-section {
  padding: var(--dest-space-3xl) 0;
  background: var(--dest-gradient-primary);
}

.dest-newsletter-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--dest-space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.dest-newsletter-content {
  flex: 1;
  min-width: 280px;
  color: var(--dest-white);
}

.dest-newsletter-content i {
  font-size: 2.5rem;
  margin-bottom: var(--dest-space-md);
  display: block;
}

.dest-newsletter-content h3 {
  font-size: 1.5rem;
  color: var(--dest-white);
  margin-bottom: var(--dest-space-sm);
}

.dest-newsletter-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.dest-newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: var(--dest-space-sm);
}

.dest-newsletter-form input {
  flex: 1;
  padding: var(--dest-space-md) var(--dest-space-lg);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--dest-radius-lg);
  color: var(--dest-white);
  font-size: 1rem;
}

.dest-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.dest-newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.dest-newsletter-form button {
  display: flex;
  align-items: center;
  gap: var(--dest-space-sm);
  padding: var(--dest-space-md) var(--dest-space-xl);
  background: var(--dest-white);
  color: var(--dest-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--dest-radius-lg);
  transition: all var(--dest-transition-base);
  white-space: nowrap;
}

.dest-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--dest-shadow-lg);
}

@media (max-width: 768px) {
  .dest-newsletter-card {
    flex-direction: column;
    text-align: center;
  }

  .dest-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .dest-newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   16. FOOTER
   ========================================== */
.dest-footer {
  background: var(--dest-gray-900);
  color: var(--dest-gray-300);
  position: relative;
}

.dest-footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  color: var(--dest-gray-50);
}

.dest-footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.dest-footer-main {
  padding: calc(var(--dest-space-4xl) + 30px) 0 var(--dest-space-3xl);
}

.dest-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--dest-space-2xl);
}

@media (max-width: 1024px) {
  .dest-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .dest-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer Brand */
.dest-footer-brand {
  max-width: 300px;
}

@media (max-width: 640px) {
  .dest-footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }
}

.dest-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-family: var(--dest-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dest-white);
  margin-bottom: var(--dest-space-md);
}

.dest-footer-logo span:last-child {
  color: var(--dest-primary-light);
}

.dest-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--dest-space-lg);
  color: var(--dest-gray-400);
}

.dest-footer-social {
  display: flex;
  gap: var(--dest-space-sm);
}

@media (max-width: 640px) {
  .dest-footer-social {
    justify-content: center;
  }
}

.dest-footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--dest-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dest-gray-400);
  font-size: 1.125rem;
  transition: all var(--dest-transition-base);
}

.dest-footer-social a:hover {
  background: var(--dest-primary);
  color: var(--dest-white);
  transform: translateY(-3px);
}

/* Footer Column */
.dest-footer-column h4 {
  font-family: var(--dest-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dest-white);
  margin-bottom: var(--dest-space-lg);
  position: relative;
}

.dest-footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--dest-primary);
}

@media (max-width: 640px) {
  .dest-footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.dest-footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--dest-space-sm);
}

.dest-footer-column ul li a {
  display: inline-flex;
  align-items: center;
  gap: var(--dest-space-sm);
  font-size: 0.9375rem;
  color: var(--dest-gray-400);
  transition: all var(--dest-transition-base);
}

.dest-footer-column ul li a i {
  font-size: 0.75rem;
  color: var(--dest-primary);
  transition: transform var(--dest-transition-base);
}

.dest-footer-column ul li a:hover {
  color: var(--dest-white);
  transform: translateX(5px);
}

.dest-footer-column ul li a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.dest-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--dest-space-sm);
}

@media (max-width: 640px) {
  .dest-footer-contact li {
    justify-content: center;
  }
}

.dest-footer-contact li i {
  color: var(--dest-primary);
  margin-top: 4px;
}

.dest-footer-contact li a,
.dest-footer-contact li span {
  color: var(--dest-gray-400);
}

.dest-footer-contact li a:hover {
  color: var(--dest-white);
}

/* Footer Bottom */
.dest-footer-bottom {
  padding: var(--dest-space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dest-footer-bottom .dest-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--dest-space-md);
}

@media (max-width: 768px) {
  .dest-footer-bottom .dest-container {
    flex-direction: column;
    text-align: center;
  }
}

.dest-footer-bottom p {
  font-size: 0.875rem;
  color: var(--dest-gray-500);
  margin: 0;
}

.dest-footer-legal {
  display: flex;
  gap: var(--dest-space-lg);
}

.dest-footer-legal a {
  font-size: 0.875rem;
  color: var(--dest-gray-500);
  transition: color var(--dest-transition-base);
}

.dest-footer-legal a:hover {
  color: var(--dest-white);
}

/* ==========================================
   17. ANIMATIONS
   ========================================== */
@keyframes dest-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dest-slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dest-slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dest-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dest-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Animation Classes */
.dest-animate-fadeIn {
  animation: dest-fadeIn 0.5s ease forwards;
}

.dest-animate-slideInUp {
  animation: dest-slideInUp 0.5s ease forwards;
}

.dest-animate-slideInDown {
  animation: dest-slideInDown 0.5s ease forwards;
}

/* ==========================================
   18. RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1200px) {
  .dest-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .dest-hero-content {
    padding: var(--dest-space-lg);
  }

  .dest-trust-container {
    justify-content: space-around;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    gap: var(--dest-space-lg);
  }

  .dest-filter-buttons {
    gap: var(--dest-space-xs);
  }

  .dest-filter-btn {
    padding: var(--dest-space-xs) var(--dest-space-md);
    font-size: 0.8125rem;
  }

  .dest-why-grid {
    gap: var(--dest-space-md);
  }

  .dest-testimonial-card {
    padding: var(--dest-space-lg);
  }

  .dest-testimonial-card blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .dest-card-highlights {
    display: none;
  }

  .dest-trust-item {
    flex-direction: column;
    text-align: center;
  }

  .dest-quick-tags {
    gap: var(--dest-space-xs);
  }

  .dest-tag {
    font-size: 0.75rem;
    padding: var(--dest-space-xs) var(--dest-space-sm);
  }
}

/* ==========================================
   19. PRINT STYLES
   ========================================== */
@media print {
  .dest-navbar,
  .dest-back-to-top,
  .dest-whatsapp-float,
  .dest-preloader,
  .dest-search-box,
  .dest-quick-tags,
  .dest-scroll-indicator,
  .dest-filter-section,
  .dest-card-wishlist,
  .dest-load-more,
  .dest-newsletter-section,
  .dest-footer-social,
  .dest-testimonials-controls {
    display: none !important;
  }

  .dest-hero {
    min-height: auto;
    padding: var(--dest-space-xl) 0;
  }

  .dest-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--dest-gray-200);
  }
}

/* ==========================================
   20. ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .destinations-page *,
  .destinations-page *::before,
  .destinations-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
.destinations-page :focus-visible {
  outline: 3px solid var(--dest-primary-lighter);
  outline-offset: 2px;
}

/* Skip Link */
.dest-skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--dest-space-sm) var(--dest-space-lg);
  background: var(--dest-primary);
  color: var(--dest-white);
  border-radius: var(--dest-radius-lg);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--dest-transition-fast);
}

.dest-skip-link:focus {
  top: var(--dest-space-md);
}

/* Screen Reader Only */
.dest-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*packages.css*/

/* ============================================
   TRAVELGULLY - PACKAGES PAGE CSS
   Separate stylesheet - Won't conflict with other pages
   All classes prefixed with 'pkg-'
   ============================================ */

/* ==========================================
   1. CSS VARIABLES (Packages Page)
   ========================================== */
:root {
  /* Primary Colors */
  --pkg-primary: #2563eb;
  --pkg-primary-dark: #1d4ed8;
  --pkg-primary-light: #3b82f6;
  --pkg-primary-lighter: #93c5fd;
  
  /* Secondary & Accent */
  --pkg-secondary: #0891b2;
  --pkg-accent: #f59e0b;
  --pkg-accent-light: #fbbf24;
  
  /* Status Colors */
  --pkg-success: #10b981;
  --pkg-error: #ef4444;
  --pkg-warning: #f59e0b;
  
  /* Neutral Colors */
  --pkg-white: #ffffff;
  --pkg-black: #000000;
  --pkg-gray-50: #f9fafb;
  --pkg-gray-100: #f3f4f6;
  --pkg-gray-200: #e5e7eb;
  --pkg-gray-300: #d1d5db;
  --pkg-gray-400: #9ca3af;
  --pkg-gray-500: #6b7280;
  --pkg-gray-600: #4b5563;
  --pkg-gray-700: #374151;
  --pkg-gray-800: #1f2937;
  --pkg-gray-900: #111827;
  
  /* Gradients */
  --pkg-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --pkg-gradient-secondary: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  --pkg-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --pkg-gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  --pkg-gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
  
  /* Typography */
  --pkg-font-display: 'Playfair Display', Georgia, serif;
  --pkg-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --pkg-space-xs: 0.25rem;
  --pkg-space-sm: 0.5rem;
  --pkg-space-md: 1rem;
  --pkg-space-lg: 1.5rem;
  --pkg-space-xl: 2rem;
  --pkg-space-2xl: 3rem;
  --pkg-space-3xl: 4rem;
  --pkg-space-4xl: 6rem;
  
  /* Border Radius */
  --pkg-radius-sm: 0.375rem;
  --pkg-radius-md: 0.5rem;
  --pkg-radius-lg: 0.75rem;
  --pkg-radius-xl: 1rem;
  --pkg-radius-2xl: 1.5rem;
  --pkg-radius-full: 9999px;
  
  /* Shadows */
  --pkg-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --pkg-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --pkg-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --pkg-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --pkg-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  
  /* Transitions */
  --pkg-transition-fast: 150ms ease;
  --pkg-transition-base: 300ms ease;
  --pkg-transition-slow: 500ms ease;
  
  /* Layout */
  --pkg-container-max: 1280px;
  --pkg-navbar-height: 80px;
}

/* ==========================================
   2. RESET & BASE (Packages Page Only)
   ========================================== */
.packages-page {
  margin: 0;
  padding: 0;
  font-family: var(--pkg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pkg-gray-700);
  background: var(--pkg-white);
  overflow-x: hidden;
}

.packages-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.packages-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.packages-page a {
  text-decoration: none;
  color: inherit;
  transition: color var(--pkg-transition-fast);
}

.packages-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.packages-page ul {
  list-style: none;
}

.pkg-container {
  width: 100%;
  max-width: var(--pkg-container-max);
  margin: 0 auto;
  padding: 0 var(--pkg-space-lg);
}

/* ==========================================
   3. PRELOADER
   ========================================== */
.pkg-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pkg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pkg-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.pkg-preloader-content {
  text-align: center;
}

.pkg-loader-icon {
  font-size: 3rem;
  color: var(--pkg-primary);
  animation: pkg-bounce 1s ease infinite;
}

@keyframes pkg-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.pkg-preloader-content p {
  margin-top: var(--pkg-space-md);
  color: var(--pkg-gray-600);
  font-weight: 500;
}

.pkg-loader-bar {
  width: 150px;
  height: 4px;
  background: var(--pkg-gray-200);
  border-radius: var(--pkg-radius-full);
  margin: var(--pkg-space-md) auto 0;
  overflow: hidden;
}

.pkg-loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--pkg-gradient-primary);
  border-radius: var(--pkg-radius-full);
  animation: pkg-loading 1.5s ease-in-out infinite;
}

@keyframes pkg-loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ==========================================
   4. BACK TO TOP BUTTON
   ========================================== */
.pkg-back-to-top {
  position: fixed;
  bottom: var(--pkg-space-xl);
  right: var(--pkg-space-xl);
  width: 50px;
  height: 50px;
  background: var(--pkg-gradient-primary);
  color: var(--pkg-white);
  border-radius: var(--pkg-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--pkg-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--pkg-transition-base);
  z-index: 100;
}

.pkg-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pkg-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--pkg-shadow-xl);
}

/* ==========================================
   5. WHATSAPP FLOAT
   ========================================== */
.pkg-whatsapp-float {
  position: fixed;
  bottom: var(--pkg-space-xl);
  left: var(--pkg-space-xl);
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-lg);
  background: #25d366;
  color: var(--pkg-white);
  border-radius: var(--pkg-radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--pkg-shadow-lg);
  z-index: 100;
  transition: all var(--pkg-transition-base);
}

.pkg-whatsapp-float i {
  font-size: 1.5rem;
}

.pkg-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: var(--pkg-shadow-xl);
  color: var(--pkg-white);
}

@media (max-width: 768px) {
  .pkg-whatsapp-float span {
    display: none;
  }
  
  .pkg-whatsapp-float {
    width: 55px;
    height: 55px;
    padding: 0;
    justify-content: center;
  }
}

/* ==========================================
   6. NAVBAR
   ========================================== */
.pkg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pkg-navbar-height);
  background: transparent;
  z-index: 1000;
  transition: all var(--pkg-transition-base);
}

.pkg-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--pkg-shadow-md);
}

.pkg-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--pkg-container-max);
  margin: 0 auto;
  padding: 0 var(--pkg-space-lg);
}

/* Logo */
.pkg-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  font-family: var(--pkg-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pkg-white);
  z-index: 10;
}

.pkg-navbar.scrolled .pkg-nav-logo {
  color: var(--pkg-gray-900);
}

.pkg-logo-icon {
  font-size: 1.75rem;
}

.pkg-logo-text span {
  color: var(--pkg-primary);
}

/* Nav Links */
.pkg-nav-links {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-xs);
}

.pkg-nav-links li a {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--pkg-radius-lg);
  transition: all var(--pkg-transition-base);
}

.pkg-nav-links li a i {
  font-size: 1rem;
  opacity: 0.7;
}

.pkg-navbar.scrolled .pkg-nav-links li a {
  color: var(--pkg-gray-700);
}

.pkg-nav-links li a:hover,
.pkg-nav-links li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pkg-white);
}

.pkg-navbar.scrolled .pkg-nav-links li a:hover,
.pkg-navbar.scrolled .pkg-nav-links li a.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--pkg-primary);
}

/* Nav Actions */
.pkg-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-md);
}

.pkg-nav-phone {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pkg-white);
}

.pkg-navbar.scrolled .pkg-nav-phone {
  color: var(--pkg-gray-700);
}

.pkg-nav-phone i {
  color: var(--pkg-accent);
}

.pkg-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-lg);
  background: var(--pkg-gradient-primary);
  color: var(--pkg-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-lg);
  transition: all var(--pkg-transition-base);
}

.pkg-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--pkg-shadow-lg);
  color: var(--pkg-white);
}

/* Hamburger */
.pkg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

.pkg-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--pkg-white);
  border-radius: var(--pkg-radius-full);
  transition: all var(--pkg-transition-base);
}

/* ==========================================
   6. NAVBAR (Continued)
   ========================================== */
.pkg-navbar.scrolled .pkg-hamburger span {
  background: var(--pkg-gray-800);
}

.pkg-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.pkg-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.pkg-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .pkg-hamburger {
    display: flex;
  }

  .pkg-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--pkg-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--pkg-space-2xl);
    box-shadow: var(--pkg-shadow-2xl);
    transition: right var(--pkg-transition-base);
  }

  .pkg-nav-links.show {
    right: 0;
  }

  .pkg-nav-links li a {
    color: var(--pkg-gray-700);
    font-size: 1.125rem;
    padding: var(--pkg-space-md);
    width: 100%;
    justify-content: center;
  }

  .pkg-nav-links li a:hover,
  .pkg-nav-links li a.active {
    background: var(--pkg-gray-100);
    color: var(--pkg-primary);
  }

  .pkg-nav-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .pkg-nav-phone {
    display: none;
  }
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
.pkg-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--pkg-navbar-height);
}

.pkg-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pkg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--pkg-space-xl);
}

.pkg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pkg-radius-full);
  color: var(--pkg-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--pkg-space-lg);
  animation: pkg-fadeInDown 0.8s ease;
}

.pkg-hero-badge i {
  color: var(--pkg-accent);
}

.pkg-hero-title {
  font-family: var(--pkg-font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--pkg-white);
  line-height: 1.1;
  margin-bottom: var(--pkg-space-lg);
  animation: pkg-fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.pkg-hero-title span {
  background: linear-gradient(135deg, var(--pkg-accent) 0%, var(--pkg-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--pkg-space-xl);
  animation: pkg-fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* Hero Stats */
.pkg-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--pkg-space-xl);
  animation: pkg-fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.pkg-stat {
  text-align: center;
}

.pkg-stat-number {
  display: block;
  font-family: var(--pkg-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pkg-white);
}

.pkg-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.pkg-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.pkg-scroll-indicator {
  position: absolute;
  bottom: var(--pkg-space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pkg-space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  animation: pkg-bounce 2s ease-in-out infinite;
  z-index: 3;
}

.pkg-scroll-indicator i {
  font-size: 1rem;
}

/* Animations */
@keyframes pkg-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pkg-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pkg-hero {
    min-height: 60vh;
  }

  .pkg-hero-stats {
    flex-wrap: wrap;
    gap: var(--pkg-space-lg);
  }

  .pkg-stat-divider {
    display: none;
  }

  .pkg-scroll-indicator {
    display: none;
  }
}

/* ==========================================
   8. FILTER SECTION
   ========================================== */
.pkg-filter-section {
  background: var(--pkg-white);
  padding: var(--pkg-space-2xl) 0;
  border-bottom: 1px solid var(--pkg-gray-200);
  position: sticky;
  top: var(--pkg-navbar-height);
  z-index: 50;
  box-shadow: var(--pkg-shadow-sm);
}

.pkg-filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--pkg-space-lg);
}

.pkg-filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--pkg-space-sm);
}

.pkg-filter-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pkg-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pkg-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pkg-space-sm);
}

.pkg-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  background: var(--pkg-gray-100);
  border: 2px solid transparent;
  border-radius: var(--pkg-radius-full);
  color: var(--pkg-gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--pkg-transition-base);
  cursor: pointer;
}

.pkg-filter-btn:hover {
  background: var(--pkg-gray-200);
  color: var(--pkg-gray-800);
}

.pkg-filter-btn.active {
  background: var(--pkg-primary);
  color: var(--pkg-white);
  border-color: var(--pkg-primary);
}

.pkg-filter-btn i {
  font-size: 0.875rem;
}

/* Filter Row */
.pkg-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--pkg-space-lg);
  padding-top: var(--pkg-space-md);
  border-top: 1px solid var(--pkg-gray-100);
}

.pkg-filter-select {
  display: flex;
  flex-direction: column;
  gap: var(--pkg-space-sm);
  min-width: 180px;
}

.pkg-filter-select label {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pkg-gray-600);
}

.pkg-filter-select label i {
  color: var(--pkg-primary);
}

.pkg-filter-select select {
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  background: var(--pkg-gray-50);
  border: 2px solid var(--pkg-gray-200);
  border-radius: var(--pkg-radius-lg);
  font-size: 0.9375rem;
  color: var(--pkg-gray-700);
  cursor: pointer;
  transition: all var(--pkg-transition-fast);
}

.pkg-filter-select select:focus {
  outline: none;
  border-color: var(--pkg-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pkg-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-lg);
  background: transparent;
  border: 2px solid var(--pkg-gray-300);
  border-radius: var(--pkg-radius-lg);
  color: var(--pkg-gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--pkg-transition-base);
}

.pkg-filter-reset:hover {
  background: var(--pkg-gray-100);
  border-color: var(--pkg-gray-400);
}

@media (max-width: 768px) {
  .pkg-filter-section {
    position: relative;
    top: 0;
  }

  .pkg-filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-filter-select {
    width: 100%;
  }

  .pkg-filter-reset {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   9. FEATURED BANNER
   ========================================== */
.pkg-featured-banner {
  background: var(--pkg-gradient-primary);
  padding: var(--pkg-space-2xl) 0;
}

.pkg-featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pkg-space-2xl);
  align-items: center;
}

.pkg-featured-text {
  color: var(--pkg-white);
}

.pkg-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-xs) var(--pkg-space-md);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--pkg-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--pkg-space-md);
}

.pkg-featured-tag i {
  color: var(--pkg-accent);
}

.pkg-featured-text h2 {
  font-family: var(--pkg-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-sm);
}

.pkg-featured-text > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--pkg-space-lg);
}

.pkg-featured-price {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-md);
  margin-bottom: var(--pkg-space-lg);
}

.pkg-old-price {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.pkg-new-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pkg-white);
}

.pkg-discount {
  padding: var(--pkg-space-xs) var(--pkg-space-sm);
  background: var(--pkg-accent);
  color: var(--pkg-gray-900);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--pkg-radius-md);
}

.pkg-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) var(--pkg-space-xl);
  background: var(--pkg-white);
  color: var(--pkg-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-xl);
  transition: all var(--pkg-transition-base);
}

.pkg-featured-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--pkg-shadow-xl);
  color: var(--pkg-primary);
}

.pkg-featured-image {
  position: relative;
  border-radius: var(--pkg-radius-2xl);
  overflow: hidden;
  box-shadow: var(--pkg-shadow-2xl);
}

.pkg-featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pkg-featured-badge {
  position: absolute;
  top: var(--pkg-space-md);
  right: var(--pkg-space-md);
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  background: var(--pkg-accent);
  color: var(--pkg-gray-900);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--pkg-radius-md);
}

@media (max-width: 768px) {
  .pkg-featured-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pkg-featured-price {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pkg-featured-image {
    order: -1;
  }
}

/* ==========================================
   10. SECTION HEADER
   ========================================== */
.pkg-section-header {
  text-align: center;
  margin-bottom: var(--pkg-space-3xl);
}

.pkg-section-header.light .pkg-section-title,
.pkg-section-header.light .pkg-section-subtitle {
  color: var(--pkg-white);
}

.pkg-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  background: var(--pkg-gradient-primary);
  color: var(--pkg-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--pkg-radius-full);
  margin-bottom: var(--pkg-space-md);
}

.pkg-section-title {
  font-family: var(--pkg-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--pkg-gray-900);
  margin-bottom: var(--pkg-space-md);
  line-height: 1.2;
}

.pkg-section-title span {
  background: var(--pkg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-section-subtitle {
  font-size: 1.125rem;
  color: var(--pkg-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   11. PACKAGES GRID
   ========================================== */
.pkg-grid-section {
  padding: var(--pkg-space-4xl) 0;
  background: var(--pkg-gray-50);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--pkg-space-xl);
}

@media (max-width: 768px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* Package Card */
.pkg-card {
  background: var(--pkg-white);
  border-radius: var(--pkg-radius-2xl);
  overflow: hidden;
  box-shadow: var(--pkg-shadow-md);
  transition: all var(--pkg-transition-base);
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--pkg-shadow-xl);
}

.pkg-card.hidden {
  display: none;
}

.pkg-card.featured {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .pkg-card.featured {
    grid-column: span 1;
  }
}

/* Card Image */
.pkg-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pkg-card.featured .pkg-card-image {
  height: 280px;
}

.pkg-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pkg-transition-slow);
}

.pkg-card:hover .pkg-card-image img {
  transform: scale(1.1);
}

/* Card Badges */
.pkg-card-badges {
  position: absolute;
  top: var(--pkg-space-md);
  left: var(--pkg-space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--pkg-space-xs);
}

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-xs);
  padding: var(--pkg-space-xs) var(--pkg-space-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--pkg-radius-md);
  color: var(--pkg-white);
}

.pkg-badge.bestseller {
  background: var(--pkg-error);
}

.pkg-badge.discount {
  background: var(--pkg-success);
}

.pkg-badge.honeymoon,
.pkg-badge.romantic {
  background: #ec4899;
}

.pkg-badge.premium {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.pkg-badge.luxury {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: var(--pkg-gray-900);
}

.pkg-badge.adventure {
  background: #14b8a6;
}

.pkg-badge.family {
  background: var(--pkg-success);
}

.pkg-badge.solo {
  background: #6366f1;
}

/* Card Wishlist */
.pkg-card-wishlist {
  position: absolute;
  top: var(--pkg-space-md);
  right: var(--pkg-space-md);
  width: 40px;
  height: 40px;
  background: var(--pkg-white);
  border-radius: var(--pkg-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-gray-400);
  font-size: 1.125rem;
  box-shadow: var(--pkg-shadow-md);
  transition: all var(--pkg-transition-base);
  cursor: pointer;
}

.pkg-card-wishlist:hover {
  color: var(--pkg-error);
  transform: scale(1.1);
}

.pkg-card-wishlist.active {
  color: var(--pkg-error);
}

.pkg-card-wishlist.active i {
  font-weight: 900;
}

/* Card Booked Info */
.pkg-card-booked {
  position: absolute;
  bottom: var(--pkg-space-md);
  left: var(--pkg-space-md);
  right: var(--pkg-space-md);
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-sm) var(--pkg-space-md);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--pkg-radius-lg);
  color: var(--pkg-white);
  font-size: 0.75rem;
}

.pkg-booked-avatars {
  display: flex;
}

.pkg-booked-avatars img {
  width: 24px;
  height: 24px;
  border-radius: var(--pkg-radius-full);
  border: 2px solid var(--pkg-white);
  margin-left: -8px;
}

.pkg-booked-avatars img:first-child {
  margin-left: 0;
}

/* Card Content */
.pkg-card-content {
  padding: var(--pkg-space-lg);
}

.pkg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--pkg-space-sm);
}

.pkg-type-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-xs);
  padding: var(--pkg-space-xs) var(--pkg-space-sm);
  border-radius: var(--pkg-radius-md);
  font-size: 0.75rem;
  font-weight: 600;
}

.pkg-type-badge.friends {
  background: #dbeafe;
  color: #1d4ed8;
}

.pkg-type-badge.honeymoon {
  background: #fce7f3;
  color: #be185d;
}

.pkg-type-badge.family {
  background: #d1fae5;
  color: #059669;
}

.pkg-type-badge.solo {
  background: #e0e7ff;
  color: #4338ca;
}

.pkg-type-badge.adventure {
  background: #ccfbf1;
  color: #0f766e;
}

.pkg-duration {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-xs);
  font-size: 0.8125rem;
  color: var(--pkg-gray-500);
}

.pkg-card-title {
  font-family: var(--pkg-font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pkg-gray-900);
  margin-bottom: var(--pkg-space-sm);
  line-height: 1.3;
}

.pkg-card-route {
  display: flex;
  align-items: flex-start;
  gap: var(--pkg-space-sm);
  font-size: 0.875rem;
  color: var(--pkg-gray-500);
  margin-bottom: var(--pkg-space-md);
  line-height: 1.5;
}

.pkg-card-route i {
  color: var(--pkg-primary);
  margin-top: 3px;
}

/* Card Highlights */
.pkg-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pkg-space-sm);
  margin-bottom: var(--pkg-space-md);
}

.pkg-card-highlights span {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-xs);
  font-size: 0.75rem;
  color: var(--pkg-gray-600);
}

.pkg-card-highlights span i {
  color: var(--pkg-success);
  font-size: 0.6875rem;
}

/* Card Inclusions */
.pkg-card-inclusions {
  display: flex;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) 0;
  border-top: 1px solid var(--pkg-gray-100);
  border-bottom: 1px solid var(--pkg-gray-100);
  margin-bottom: var(--pkg-space-md);
}

.pkg-card-inclusions span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pkg-gray-50);
  border-radius: var(--pkg-radius-lg);
  color: var(--pkg-primary);
  font-size: 0.9375rem;
  transition: all var(--pkg-transition-fast);
}

.pkg-card-inclusions span:hover {
  background: var(--pkg-primary);
  color: var(--pkg-white);
  transform: translateY(-2px);
}

/* Card Footer */
.pkg-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--pkg-space-md);
}

.pkg-card-pricing {
  display: flex;
  flex-direction: column;
}

.pkg-original-price {
  font-size: 0.875rem;
  color: var(--pkg-gray-400);
  text-decoration: line-through;
}

.pkg-current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pkg-primary);
}

.pkg-per-person {
  font-size: 0.75rem;
  color: var(--pkg-gray-500);
}

.pkg-card-rating {
  text-align: right;
}

.pkg-stars {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  color: var(--pkg-accent);
  font-size: 0.875rem;
  margin-bottom: var(--pkg-space-xs);
}

.pkg-card-rating > span {
  font-size: 0.75rem;
  color: var(--pkg-gray-500);
}

/* Card Actions */
.pkg-card-actions {
  display: flex;
  gap: var(--pkg-space-sm);
}

.pkg-btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md);
  background: var(--pkg-gradient-primary);
  color: var(--pkg-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-xl);
  transition: all var(--pkg-transition-base);
}

.pkg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--pkg-shadow-lg);
  color: var(--pkg-white);
}

.pkg-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md);
  background: var(--pkg-gray-100);
  color: var(--pkg-gray-700);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-xl);
  transition: all var(--pkg-transition-base);
}

.pkg-btn-secondary:hover {
  background: var(--pkg-gray-200);
  color: var(--pkg-gray-900);
}

/* No Results */
.pkg-no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--pkg-space-4xl);
}

.pkg-no-results.show {
  display: block;
}

.pkg-no-results-content i {
  font-size: 4rem;
  color: var(--pkg-gray-300);
  margin-bottom: var(--pkg-space-lg);
}

.pkg-no-results-content h3 {
  font-size: 1.5rem;
  color: var(--pkg-gray-700);
  margin-bottom: var(--pkg-space-sm);
}

.pkg-no-results-content p {
  color: var(--pkg-gray-500);
  margin-bottom: var(--pkg-space-lg);
}

.pkg-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) var(--pkg-space-xl);
  background: var(--pkg-primary);
  color: var(--pkg-white);
  font-weight: 600;
  border-radius: var(--pkg-radius-lg);
  cursor: pointer;
  transition: all var(--pkg-transition-base);
}

.pkg-reset-btn:hover {
  background: var(--pkg-primary-dark);
  transform: translateY(-2px);
}

/* Load More */
.pkg-load-more {
  text-align: center;
  margin-top: var(--pkg-space-3xl);
}

.pkg-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) var(--pkg-space-2xl);
  background: var(--pkg-white);
  border: 2px solid var(--pkg-primary);
  color: var(--pkg-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-full);
  cursor: pointer;
  transition: all var(--pkg-transition-base);
}

.pkg-load-more-btn:hover {
  background: var(--pkg-primary);
  color: var(--pkg-white);
  transform: translateY(-2px);
  box-shadow: var(--pkg-shadow-lg);
}

/* ==========================================
   12. INCLUSIONS SECTION
   ========================================== */
.pkg-inclusions-section {
  padding: var(--pkg-space-4xl) 0;
  background: var(--pkg-white);
}

.pkg-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--pkg-space-lg);
}

.pkg-inclusion-card {
  text-align: center;
  padding: var(--pkg-space-xl);
  background: var(--pkg-gray-50);
  border-radius: var(--pkg-radius-xl);
  transition: all var(--pkg-transition-base);
}

.pkg-inclusion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pkg-shadow-lg);
  background: var(--pkg-white);
}

.pkg-inclusion-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--pkg-space-md);
  background: var(--pkg-gradient-primary);
  border-radius: var(--pkg-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--pkg-white);
}

.pkg-inclusion-card h3 {
  font-size: 1.125rem;
  color: var(--pkg-gray-900);
  margin-bottom: var(--pkg-space-sm);
}

.pkg-inclusion-card p {
  font-size: 0.875rem;
  color: var(--pkg-gray-500);
  line-height: 1.6;
}

/* ==========================================
   13. HOW IT WORKS SECTION
   ========================================== */
.pkg-how-section {
  padding: var(--pkg-space-4xl) 0;
  background: var(--pkg-gradient-dark);
  position: relative;
}

.pkg-how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.pkg-how-section .pkg-section-title {
  color: var(--pkg-white);
}

.pkg-how-section .pkg-section-title span {
  background: linear-gradient(135deg, var(--pkg-accent) 0%, var(--pkg-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-how-section .pkg-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pkg-steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pkg-space-lg);
  position: relative;
  z-index: 1;
}

.pkg-step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: var(--pkg-space-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pkg-radius-2xl);
  position: relative;
  transition: all var(--pkg-transition-base);
}

.pkg-step-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.pkg-step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--pkg-accent);
  color: var(--pkg-gray-900);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--pkg-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-step-icon {
  width: 70px;
  height: 70px;
  margin: var(--pkg-space-md) auto;
  background: var(--pkg-gradient-primary);
  border-radius: var(--pkg-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--pkg-white);
}

.pkg-step-card h3 {
  font-size: 1.25rem;
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-sm);
}

.pkg-step-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pkg-step-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .pkg-steps-grid {
    flex-direction: column;
  }

  .pkg-step-arrow {
    transform: rotate(90deg);
  }

  .pkg-step-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================
   14. CTA SECTION
   ========================================== */
.pkg-cta-section {
  position: relative;
  padding: var(--pkg-space-4xl) 0;
  overflow: hidden;
}

.pkg-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pkg-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.pkg-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pkg-cta-content h2 {
  font-family: var(--pkg-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-md);
}

.pkg-cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--pkg-space-xl);
}

.pkg-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--pkg-space-md);
}

.pkg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) var(--pkg-space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-xl);
  transition: all var(--pkg-transition-base);
}

.pkg-cta-btn.primary {
  background: var(--pkg-gradient-primary);
  color: var(--pkg-white);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.pkg-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
  color: var(--pkg-white);
}

.pkg-cta-btn.secondary {
  background: transparent;
  color: var(--pkg-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pkg-cta-btn.secondary:hover {
  background: var(--pkg-white);
  color: var(--pkg-gray-900);
  border-color: var(--pkg-white);
}

/* ==========================================
   15. FAQ SECTION
   ========================================== */
.pkg-faq-section {
  padding: var(--pkg-space-4xl) 0;
  background: var(--pkg-gray-50);
}

.pkg-faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--pkg-space-md);
}

.pkg-faq-item {
  background: var(--pkg-white);
  border-radius: var(--pkg-radius-xl);
  overflow: hidden;
  box-shadow: var(--pkg-shadow-sm);
}

.pkg-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--pkg-space-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pkg-gray-800);
  text-align: left;
  cursor: pointer;
  transition: all var(--pkg-transition-base);
}

.pkg-faq-question:hover {
  color: var(--pkg-primary);
}

.pkg-faq-question i {
  font-size: 0.875rem;
  color: var(--pkg-gray-400);
  transition: transform var(--pkg-transition-base);
}

.pkg-faq-item.active .pkg-faq-question {
  color: var(--pkg-primary);
}

.pkg-faq-item.active .pkg-faq-question i {
  transform: rotate(180deg);
  color: var(--pkg-primary);
}

.pkg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--pkg-transition-base);
}

.pkg-faq-item.active .pkg-faq-answer {
  max-height: 300px;
}

.pkg-faq-answer p {
  padding: 0 var(--pkg-space-lg) var(--pkg-space-lg);
  font-size: 0.9375rem;
  color: var(--pkg-gray-600);
  line-height: 1.7;
}

/* ==========================================
   16. NEWSLETTER SECTION
   ========================================== */
.pkg-newsletter-section {
  padding: var(--pkg-space-2xl) 0;
  background: var(--pkg-gradient-primary);
}

.pkg-newsletter-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--pkg-space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.pkg-newsletter-content {
  flex: 1;
  min-width: 280px;
  color: var(--pkg-white);
}

.pkg-newsletter-content i {
  font-size: 2.5rem;
  margin-bottom: var(--pkg-space-md);
  display: block;
}

.pkg-newsletter-content h3 {
  font-size: 1.5rem;
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-sm);
}

.pkg-newsletter-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.pkg-newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: var(--pkg-space-sm);
}

.pkg-newsletter-form input {
  flex: 1;
  padding: var(--pkg-space-md) var(--pkg-space-lg);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--pkg-radius-lg);
  color: var(--pkg-white);
  font-size: 1rem;
}

.pkg-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pkg-newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.pkg-newsletter-form button {
  display: flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  padding: var(--pkg-space-md) var(--pkg-space-xl);
  background: var(--pkg-white);
  color: var(--pkg-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pkg-radius-lg);
  cursor: pointer;
  transition: all var(--pkg-transition-base);
  white-space: nowrap;
}

.pkg-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--pkg-shadow-lg);
}

@media (max-width: 768px) {
  .pkg-newsletter-card {
    flex-direction: column;
    text-align: center;
  }

  .pkg-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .pkg-newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   17. FOOTER
   ========================================== */
.pkg-footer {
  background: var(--pkg-gray-900);
  color: var(--pkg-gray-300);
  position: relative;
}

.pkg-footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  color: var(--pkg-gray-50);
}

.pkg-footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.pkg-footer-main {
  padding: calc(var(--pkg-space-4xl) + 30px) 0 var(--pkg-space-2xl);
}

.pkg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--pkg-space-2xl);
}

@media (max-width: 1024px) {
  .pkg-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pkg-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer Brand */
.pkg-footer-brand {
  max-width: 300px;
}

@media (max-width: 640px) {
  .pkg-footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }
}

.pkg-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  font-family: var(--pkg-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-md);
}

.pkg-footer-logo span:last-child {
  color: var(--pkg-primary-light);
}

.pkg-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--pkg-space-lg);
  color: var(--pkg-gray-400);
}

.pkg-footer-social {
  display: flex;
  gap: var(--pkg-space-sm);
}

@media (max-width: 640px) {
  .pkg-footer-social {
    justify-content: center;
  }
}

.pkg-footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--pkg-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-gray-400);
  font-size: 1.125rem;
  transition: all var(--pkg-transition-base);
}

.pkg-footer-social a:hover {
  background: var(--pkg-primary);
  color: var(--pkg-white);
  transform: translateY(-3px);
}

/* Footer Column */
.pkg-footer-column h4 {
  font-family: var(--pkg-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pkg-white);
  margin-bottom: var(--pkg-space-lg);
  position: relative;
}

.pkg-footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--pkg-primary);
}

@media (max-width: 640px) {
  .pkg-footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.pkg-footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--pkg-space-sm);
}

.pkg-footer-column ul li a {
  display: inline-flex;
  align-items: center;
  gap: var(--pkg-space-sm);
  font-size: 0.9375rem;
  color: var(--pkg-gray-400);
  transition: all var(--pkg-transition-base);
}

.pkg-footer-column ul li a i {
  font-size: 0.75rem;
  color: var(--pkg-primary);
  transition: transform var(--pkg-transition-base);
}

.pkg-footer-column ul li a:hover {
  color: var(--pkg-white);
  transform: translateX(5px);
}

.pkg-footer-column ul li a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.pkg-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--pkg-space-sm);
}

@media (max-width: 640px) {
  .pkg-footer-contact li {
    justify-content: center;
  }
}

.pkg-footer-contact li i {
  color: var(--pkg-primary);
  margin-top: 4px;
}

.pkg-footer-contact li a,
.pkg-footer-contact li span {
  color: var(--pkg-gray-400);
}

.pkg-footer-contact li a:hover {
  color: var(--pkg-white);
}

/* Footer Payments */
.pkg-footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pkg-space-md);
  padding-top: var(--pkg-space-xl);
  margin-top: var(--pkg-space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.pkg-footer-payments p {
  font-size: 0.875rem;
  color: var(--pkg-gray-500);
  margin: 0;
}

.pkg-payment-icons {
  display: flex;
  gap: var(--pkg-space-md);
}

.pkg-payment-icons i {
  font-size: 2rem;
  color: var(--pkg-gray-500);
  transition: color var(--pkg-transition-base);
}

.pkg-payment-icons i:hover {
  color: var(--pkg-white);
}

/* Footer Bottom */
.pkg-footer-bottom {
  padding: var(--pkg-space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg-footer-bottom .pkg-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--pkg-space-md);
}

@media (max-width: 768px) {
  .pkg-footer-bottom .pkg-container {
    flex-direction: column;
    text-align: center;
  }
}

.pkg-footer-bottom p {
  font-size: 0.875rem;
  color: var(--pkg-gray-500);
  margin: 0;
}

.pkg-footer-legal {
  display: flex;
  gap: var(--pkg-space-lg);
}

.pkg-footer-legal a {
  font-size: 0.875rem;
  color: var(--pkg-gray-500);
  transition: color var(--pkg-transition-base);
}

.pkg-footer-legal a:hover {
  color: var(--pkg-white);
}

/* ==========================================
   18. ANIMATIONS
   ========================================== */
@keyframes pkg-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pkg-slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pkg-slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pkg-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================
   19. RESPONSIVE UTILITIES
   ========================================== */
@media (max-width: 1200px) {
  .pkg-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .pkg-hero {
    min-height: 60vh;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card-actions {
    flex-direction: column;
  }

  .pkg-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pkg-card-highlights {
    display: none;
  }

  .pkg-card-inclusions span {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
  }
}

/* ==========================================
   20. ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .packages-page *,
  .packages-page *::before,
  .packages-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.packages-page :focus-visible {
  outline: 3px solid var(--pkg-primary-lighter);
  outline-offset: 2px;
}

/* Screen Reader Only */
.pkg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================
   21. PRINT STYLES
   ========================================== */
@media print {
  .pkg-navbar,
  .pkg-back-to-top,
  .pkg-whatsapp-float,
  .pkg-preloader,
  .pkg-filter-section,
  .pkg-card-wishlist,
  .pkg-load-more,
  .pkg-newsletter-section,
  .pkg-footer-social,
  .pkg-cta-section {
    display: none !important;
  }

  .pkg-hero {
    min-height: auto;
    padding: var(--pkg-space-xl) 0;
  }

  .pkg-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--pkg-gray-200);
  }
}

/*visa*/
/* ==========================================
   VISA ASSISTANCE PAGE - COMPLETE STYLES
   ========================================== */

/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --primary-light: #FF8555;
  --secondary-color: #004E89;
  --secondary-dark: #003D6B;
  --accent-color: #FFD23F;
  --success-color: #27AE60;
  --danger-color: #E74C3C;
  
  /* Neutral Colors */
  --text-dark: #1A1A2E;
  --text-medium: #4A4A68;
  --text-light: #8E8EA9;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E5E5EF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
  --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B2 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.85) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.visa-page {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ==========================================
   PRELOADER
   ========================================== */
.visa-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #004E89 0%, #FF6B35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.visa-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.visa-preloader-content {
  text-align: center;
  color: white;
}

.visa-globe {
  font-size: 4rem;
  animation: visaGlobeRotate 2s infinite ease-in-out;
}

@keyframes visaGlobeRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.visa-preloader-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.visa-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.visa-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.visa-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.visa-whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: visaWhatsappPulse 2s infinite;
}

@keyframes visaWhatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.visa-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.visa-whatsapp-float i {
  font-size: 1.5rem;
}

.visa-whatsapp-float span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.visa-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 997;
  transition: all var(--transition-normal);
}

.visa-navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.visa-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.visa-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.visa-logo-icon {
  font-size: 2rem;
}

.visa-logo-text span {
  color: var(--primary-color);
}

.visa-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.visa-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.visa-nav-links a:hover,
.visa-nav-links a.active {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.visa-nav-links i {
  font-size: 1rem;
}

.visa-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.visa-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-normal);
}

.visa-nav-phone:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.visa-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.visa-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.visa-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}

.visa-hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.visa-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.visa-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.visa-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.visa-hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.visa-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visa-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.visa-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.visa-hero-slide.active {
  opacity: 1;
}

.visa-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.visa-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1000px;
  animation: visaHeroFadeIn 1s ease;
}

@keyframes visaHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: visaBadgePulse 2s infinite;
}

@keyframes visaBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.visa-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.visa-hero-title span {
  color: var(--accent-color);
  display: block;
  margin-top: 0.5rem;
}

.visa-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.visa-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.visa-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.visa-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.visa-stat i {
  font-size: 2rem;
  color: var(--accent-color);
}

.visa-stat div {
  text-align: left;
}

.visa-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.visa-stat span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.visa-hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.visa-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.visa-hero-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.visa-hero-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.visa-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Scroll Indicator */
.visa-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 2;
}

.visa-scroll-indicator span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.visa-scroll-mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.visa-scroll-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: visaScrollWheel 1.5s infinite;
}

@keyframes visaScrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.visa-trust-strip {
  background: white;
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.visa-trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.visa-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visa-trust-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.visa-trust-item div {
  text-align: left;
}

.visa-trust-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.visa-trust-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.visa-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.visa-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.visa-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.visa-section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.visa-section-title span {
  color: var(--primary-color);
}

.visa-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.visa-section-header.light .visa-section-title,
.visa-section-header.light .visa-section-subtitle {
  color: white;
}

/* ==========================================
   VISA TYPES SECTION
   ========================================== */
.visa-types-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.visa-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.visa-type-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.visa-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.visa-type-card:hover::before {
  transform: scaleX(1);
}

.visa-type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.visa-type-card.featured {
  border: 2px solid var(--primary-color);
}

.visa-type-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.visa-type-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.visa-type-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.visa-type-card > p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.visa-type-features {
  list-style: none;
  margin-bottom: 2rem;
}

.visa-type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-color);
}

.visa-type-features li:last-child {
  border-bottom: none;
}

.visa-type-features i {
  color: var(--success-color);
  font-size: 1rem;
}

.visa-type-price {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.3rem;
}

.price-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
}

.visa-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
}

.visa-type-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   COUNTRIES SECTION
   ========================================== */
.visa-countries-section {
  padding: 5rem 0;
  background: white;
}

.visa-countries-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.visa-country-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.visa-country-tab:hover,
.visa-country-tab.active {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.visa-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.visa-country-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.visa-country-card.hidden {
  display: none;
}

.visa-country-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.visa-country-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 210, 63, 0.05) 100%);
}

.visa-country-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.visa-country-flag {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.visa-country-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.visa-country-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.visa-country-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.visa-country-info i {
  color: var(--primary-color);
}

.visa-country-types {
  list-style: none;
  margin-bottom: 1.5rem;
}

.visa-country-types li {
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.visa-country-types li:last-child {
  border-bottom: none;
}

.visa-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
}

.visa-country-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.visa-process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.visa-process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.visa-process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.visa-process-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.visa-process-icon {
  width: 90px;
  height: 90px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0 auto 1.5rem;
  transition: var(--transition-normal);
}

.visa-process-step:hover .visa-process-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.visa-process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.visa-process-step p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visa-process-connector {
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  position: relative;
  top: -80px;
}

/* ==========================================
   APPLICATION FORM SECTION
   ========================================== */
.visa-application-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.visa-application-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Info */
.visa-application-info {
  position: sticky;
  top: 120px;
}

.visa-info-card {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 2rem;
}

.visa-info-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

.visa-info-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: white;
}

.visa-info-card p {
  opacity: 0.95;
}

.visa-info-features {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.visa-info-feature {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.visa-info-feature:last-child {
  border-bottom: none;
}

.visa-info-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.visa-info-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.visa-info-feature p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.visa-info-contact {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.visa-info-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.visa-info-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visa-info-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.visa-info-contact-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.visa-info-contact-item i {
  font-size: 1.2rem;
}

/* Right Form */
.visa-application-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.visa-form-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  text-align: center;
}

.visa-form-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.visa-form-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.visa-form-header p {
  opacity: 0.95;
  font-size: 1rem;
}

.visa-form-body {
  padding: 3rem;
}

.visa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.visa-form-group {
  margin-bottom: 1.5rem;
}

.visa-form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.visa-form-group label i {
  color: var(--primary-color);
}

.visa-form-group input,
.visa-form-group select,
.visa-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-normal);
  background: white;
}

.visa-form-group input:focus,
.visa-form-group select:focus,
.visa-form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.visa-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.visa-error-msg {
  display: block;
  color: var(--danger-color);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  min-height: 18px;
}

.visa-form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 2rem;
}

.visa-form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.visa-form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
}

.visa-form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.visa-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.visa-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.visa-submit-btn:active {
  transform: translateY(0);
}

.visa-success-msg {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(39, 174, 96, 0.1);
  border-left: 4px solid var(--success-color);
  border-radius: var(--radius-sm);
  color: var(--success-color);
  align-items: start;
  gap: 1rem;
}

.visa-success-msg.show {
  display: flex;
}

.visa-success-msg i {
  font-size: 2rem;
  flex-shrink: 0;
}

.visa-success-msg h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--success-color);
}

.visa-success-msg p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.visa-faq-section {
  padding: 5rem 0;
  background: white;
}

.visa-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.visa-faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.visa-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.visa-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.visa-faq-question:hover {
  background: rgba(255, 107, 53, 0.1);
}

.visa-faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.visa-faq-question i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.visa-faq-item.active .visa-faq-question i {
  transform: rotate(45deg);
}

.visa-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.visa-faq-item.active .visa-faq-answer {
  max-height: 500px;
}

.visa-faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.visa-testimonials-section {
  padding: 5rem 0;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.visa-testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.visa-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.visa-testimonial-card {
  min-width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.visa-testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.visa-testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.visa-testimonial-rating i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.visa-testimonial-card blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.visa-testimonial-visa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.visa-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.visa-testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.visa-testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.visa-testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.visa-testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.visa-testimonial-prev,
.visa-testimonial-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.visa-testimonial-prev:hover,
.visa-testimonial-next:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.visa-testimonial-dots {
  display: flex;
  gap: 10px;
}

.visa-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
}

.visa-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.visa-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.visa-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visa-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visa-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.visa-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.visa-cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.visa-cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.visa-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.visa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.visa-cta-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.visa-cta-btn.secondary {
  background: white;
  color: var(--primary-color);
}

.visa-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.visa-cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.visa-cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.visa-cta-features i {
  color: var(--accent-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.visa-footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  position: relative;
}

.visa-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.visa-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  color: #1A1A2E;
}

.visa-footer-main {
  padding: 4rem 0 2rem;
}

.visa-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.visa-footer-brand {
  max-width: 350px;
}

.visa-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.visa-footer-logo span:first-child {
  font-size: 2.5rem;
}

.visa-footer-logo span:last-child span {
  color: var(--primary-color);
}

.visa-footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.visa-footer-social {
  display: flex;
  gap: 1rem;
}

.visa-footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.visa-footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.visa-footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.visa-footer-column ul {
  list-style: none;
}

.visa-footer-column li {
  margin-bottom: 0.8rem;
}

.visa-footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.visa-footer-column a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.visa-footer-column i {
  font-size: 0.9rem;
}

.visa-footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.visa-footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.visa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.visa-footer-bottom .visa-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.visa-footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.visa-footer-legal {
  display: flex;
  gap: 2rem;
}

.visa-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.visa-footer-legal a:hover {
  color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
  .visa-hero-title {
    font-size: 3rem;
  }

  .visa-application-wrapper {
    grid-template-columns: 1fr;
  }

  .visa-application-info {
    position: static;
  }

  .visa-process-timeline {
    grid-template-columns: 1fr;
  }

  .visa-process-connector {
    display: none;
  }

  .visa-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visa-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .visa-nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .visa-nav-links.active {
    left: 0;
  }

  .visa-hamburger {
    display: flex;
  }

  .visa-nav-actions {
    display: none;
  }

  .visa-hero {
    height: 600px;
  }

  .visa-hero-title {
    font-size: 2.5rem;
  }

  .visa-hero-subtitle {
    font-size: 1.1rem;
  }

  .visa-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .visa-stat {
    width: 100%;
    justify-content: center;
  }

  .visa-hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .visa-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .visa-types-grid,
  .visa-countries-grid {
    grid-template-columns: 1fr;
  }

  .visa-form-row {
    grid-template-columns: 1fr;
  }

  .visa-footer-grid {
    grid-template-columns: 1fr;
  }

  .visa-cta-content h2 {
    font-size: 2rem;
  }

  .visa-cta-content p {
    font-size: 1.1rem;
  }

  .visa-cta-buttons {
    flex-direction: column;
  }

  .visa-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .visa-whatsapp-float span {
    display: none;
  }

  .visa-section-title {
    font-size: 2rem;
  }

  .visa-testimonial-card blockquote {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .visa-hero-title {
    font-size: 2rem;
  }

  .visa-nav-container {
    padding: 1rem;
  }

  .visa-form-body {
    padding: 2rem 1.5rem;
  }

  .visa-container {
    padding: 0 1rem;
  }

  .visa-countries-tabs {
    flex-direction: column;
  }

  .visa-country-tab {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*gallery*/
/* ==========================================
   GALLERY PAGE - COMPLETE STYLES
   ========================================== */

/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --primary-light: #FF8555;
  --secondary-color: #004E89;
  --secondary-dark: #003D6B;
  --accent-color: #FFD23F;
  --success-color: #27AE60;
  
  /* Social Media Colors */
  --instagram-gradient: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
  --facebook-color: #1877F2;
  --twitter-color: #1DA1F2;
  --youtube-color: #FF0000;
  
  /* Neutral Colors */
  --text-dark: #1A1A2E;
  --text-medium: #4A4A68;
  --text-light: #8E8EA9;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E5E5EF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
  --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B2 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.85) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.gallery-page {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================
   PRELOADER
   ========================================== */
.gallery-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #004E89 0%, #FF6B35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.gallery-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.gallery-preloader-content {
  text-align: center;
  color: white;
}

.gallery-globe {
  font-size: 4rem;
  animation: galleryGlobeRotate 2s infinite ease-in-out;
}

@keyframes galleryGlobeRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.gallery-preloader-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.gallery-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.gallery-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.gallery-whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: galleryWhatsappPulse 2s infinite;
}

@keyframes galleryWhatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.gallery-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.gallery-whatsapp-float i {
  font-size: 1.5rem;
}

.gallery-whatsapp-float span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.gallery-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 997;
  transition: all var(--transition-normal);
}

.gallery-navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.gallery-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.gallery-logo-icon {
  font-size: 2rem;
}

.gallery-logo-text span {
  color: var(--primary-color);
}

.gallery-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.gallery-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.gallery-nav-links a:hover,
.gallery-nav-links a.active {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.gallery-nav-links i {
  font-size: 1rem;
}

.gallery-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-normal);
}

.gallery-nav-phone:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.gallery-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}

.gallery-hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.gallery-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.gallery-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.gallery-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.gallery-hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.gallery-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.gallery-hero-slide.active {
  opacity: 1;
}

.gallery-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
  animation: galleryHeroFadeIn 1s ease;
}

@keyframes galleryHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.gallery-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.gallery-hero-title span {
  color: var(--accent-color);
  display: block;
  margin-top: 0.5rem;
}

.gallery-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.gallery-hero-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.gallery-social-btn.instagram {
  background: var(--instagram-gradient);
  color: white;
}

.gallery-social-btn.facebook {
  background: var(--facebook-color);
  color: white;
}

.gallery-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-social-btn i {
  font-size: 1.3rem;
}

/* Scroll Indicator */
.gallery-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 2;
}

.gallery-scroll-indicator span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.gallery-scroll-mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.gallery-scroll-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: galleryScrollWheel 1.5s infinite;
}

@keyframes galleryScrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}

/* ==========================================
   GALLERY STATS SECTION
   ========================================== */
.gallery-stats-section {
  background: white;
  padding: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.gallery-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.gallery-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-stat-item i {
  font-size: 3rem;
  color: var(--primary-color);
}

.gallery-stat-item .fab.fa-instagram {
  background: var(--instagram-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-stat-item .fab.fa-facebook {
  color: var(--facebook-color);
}

.gallery-stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.gallery-stat-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ==========================================
   CONTAINER
   ========================================== */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.gallery-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery-section-badge.facebook {
  background: rgba(24, 119, 242, 0.1);
  color: var(--facebook-color);
}

.gallery-section-badge.reels {
  background: var(--instagram-gradient);
  color: white;
}

.gallery-section-badge.destination {
  background: rgba(0, 78, 137, 0.1);
  color: var(--secondary-color);
}

.gallery-section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.gallery-section-title span {
  color: var(--primary-color);
}

.gallery-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.gallery-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.gallery-follow-btn.instagram {
  background: var(--instagram-gradient);
  color: white;
}

.gallery-follow-btn.facebook {
  background: var(--facebook-color);
  color: white;
}

.gallery-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.gallery-instagram-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--instagram-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Instagram Post Card */
.instagram-post {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.instagram-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.instagram-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.instagram-post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--instagram-gradient);
  padding: 2px;
}

.instagram-post-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.instagram-post-user {
  flex: 1;
}

.instagram-post-user strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.instagram-post-user span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.instagram-post-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-light);
}

.instagram-post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.instagram-post:hover .instagram-post-image img {
  transform: scale(1.05);
}

.instagram-post-type {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.instagram-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.instagram-post-stat i {
  font-size: 1.5rem;
}

.instagram-post-content {
  padding: 1rem;
}

.instagram-post-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.instagram-post-actions i {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.instagram-post-actions i:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.instagram-post-likes {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.instagram-post-caption {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-post-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  text-transform: uppercase;
}

/* Instagram CTA */
.gallery-instagram-cta {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.1) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(247, 119, 55, 0.1) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content i {
  font-size: 3rem;
  background: var(--instagram-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.cta-content strong {
  color: var(--primary-color);
}

/* ==========================================
   FACEBOOK SECTION
   ========================================== */
.gallery-facebook-section {
  padding: 5rem 0;
  background: white;
}

.facebook-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Facebook Post Card */
.facebook-post {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.facebook-post:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--facebook-color);
}

.facebook-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
}

.facebook-post-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.facebook-post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facebook-post-user strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

.facebook-post-user span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.facebook-post-content {
  padding: 0 1rem 1rem;
}

.facebook-post-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.facebook-post-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.facebook-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.facebook-post:hover .facebook-post-image img {
  transform: scale(1.05);
}

.facebook-post-stats {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-medium);
}

.facebook-post-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-color);
}

.facebook-action-btn {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-medium);
  font-weight: 500;
  transition: var(--transition-normal);
  cursor: pointer;
}

.facebook-action-btn:hover {
  background: var(--bg-light);
  color: var(--facebook-color);
}

/* ==========================================
   REELS SECTION
   ========================================== */
.gallery-reels-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Reel Card */
.reel-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.reel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.reel-card:hover .reel-play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  background: white;
}

.reel-info h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.reel-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.reel-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================
   DESTINATION GALLERY
   ========================================== */
.gallery-destination-section {
  padding: 5rem 0;
  background: white;
}

.destination-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.dest-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.dest-filter-btn:hover,
.dest-filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.destination-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  height: 0;
  margin: 0;
  padding: 0;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.9) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  width: 100%;
}

.overlay-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.overlay-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.overlay-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-color);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
}

.gallery-item:hover .gallery-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Load More Button */
.gallery-load-more {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   LOADING STATES
   ========================================== */
.feed-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

.loading-spinner.facebook {
  border-top-color: var(--facebook-color);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.feed-loading p {
  color: var(--text-medium);
  font-size: 1rem;
}

/* ==========================================
   SUBMIT SECTION
   ========================================== */
.gallery-submit-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.submit-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.submit-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.submit-icon i {
  font-size: 3rem;
  color: white;
}

.submit-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.submit-card > p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.submit-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-align: left;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.submit-btn.instagram {
  border-color: #E1306C;
}

.submit-btn.instagram:hover {
  background: var(--instagram-gradient);
  color: white;
  border-color: transparent;
}

.submit-btn.facebook {
  border-color: var(--facebook-color);
}

.submit-btn.facebook:hover {
  background: var(--facebook-color);
  color: white;
  border-color: transparent;
}

.submit-btn.email {
  border-color: var(--secondary-color);
}

.submit-btn.email:hover {
  background: var(--gradient-secondary);
  color: white;
  border-color: transparent;
}

.submit-btn i {
  font-size: 2rem;
  flex-shrink: 0;
}

.submit-btn strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.submit-btn span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.submit-hashtag {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.submit-hashtag p {
  font-size: 1rem;
  color: var(--text-medium);
}

.submit-hashtag strong {
  color: var(--primary-color);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.gallery-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.gallery-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.cta-btn.secondary {
  background: white;
  color: var(--primary-color);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   FOOTER
   ========================================== */
.gallery-footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  position: relative;
}

.gallery-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.gallery-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  color: #1A1A2E;
}

.gallery-footer-main {
  padding: 4rem 0 2rem;
}

.gallery-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.gallery-footer-brand {
  max-width: 350px;
}

.gallery-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gallery-footer-logo span:first-child {
  font-size: 2.5rem;
}

.gallery-footer-logo span:last-child span {
  color: var(--primary-color);
}

.gallery-footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gallery-footer-social {
  display: flex;
  gap: 1rem;
}

.gallery-footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.gallery-footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.gallery-footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.gallery-footer-column ul {
  list-style: none;
}

.gallery-footer-column li {
  margin-bottom: 0.8rem;
}

.gallery-footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.gallery-footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.gallery-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.gallery-footer-bottom .gallery-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
  .gallery-hero-title {
    font-size: 3rem;
  }

  .gallery-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-feed-grid,
  .facebook-feed-grid,
  .destination-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .gallery-nav-links.active {
    left: 0;
  }

  .gallery-hamburger {
    display: flex;
  }

  .gallery-nav-actions {
    display: none;
  }

  .gallery-hero {
    height: 500px;
  }

  .gallery-hero-title {
    font-size: 2.5rem;
  }

  .gallery-hero-subtitle {
    font-size: 1rem;
  }

  .gallery-hero-social {
    flex-direction: column;
  }

  .gallery-social-btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-filter-tabs,
  .destination-filters {
    flex-direction: column;
  }

  .gallery-tab,
  .dest-filter-btn {
    width: 100%;
    justify-content: center;
  }

  .instagram-feed-grid,
  .facebook-feed-grid,
  .reels-grid,
  .destination-gallery-grid {
    grid-template-columns: 1fr;
  }

  .submit-options {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-whatsapp-float span {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gallery-hero-title {
    font-size: 2rem;
  }

  .gallery-nav-container {
    padding: 1rem;
  }

  .gallery-container {
    padding: 0 1rem;
  }

  .gallery-section-title {
    font-size: 2rem;
  }

  .submit-card {
    padding: 2rem 1.5rem;
  }

  .submit-card h2 {
    font-size: 1.8rem;
  }

  .gallery-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   UTILITIES
   ========================================== */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*review*/
/* ==========================================
   REVIEWS PAGE - COMPLETE STYLES
   ========================================== */

/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --primary-light: #FF8555;
  --secondary-color: #004E89;
  --secondary-dark: #003D6B;
  --accent-color: #FFD23F;
  --success-color: #27AE60;
  --warning-color: #F39C12;
  --danger-color: #E74C3C;
  
  /* Star Colors */
  --star-filled: #FFD23F;
  --star-empty: #E5E5EF;
  
  /* Neutral Colors */
  --text-dark: #1A1A2E;
  --text-medium: #4A4A68;
  --text-light: #8E8EA9;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E5E5EF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
  --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B2 100%);
  --gradient-gold: linear-gradient(135deg, #FFD23F 0%, #F39C12 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.85) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.reviews-page {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ==========================================
   PRELOADER
   ========================================== */
.reviews-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #004E89 0%, #FF6B35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.reviews-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.reviews-preloader-content {
  text-align: center;
  color: white;
}

.reviews-globe {
  font-size: 4rem;
  animation: reviewsGlobeRotate 2s infinite ease-in-out;
}

@keyframes reviewsGlobeRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(360deg) scale(1.2); }
}

.reviews-preloader-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.reviews-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.reviews-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reviews-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.reviews-whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: reviewsWhatsappPulse 2s infinite;
}

@keyframes reviewsWhatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reviews-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.reviews-whatsapp-float i {
  font-size: 1.5rem;
}

.reviews-whatsapp-float span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.reviews-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 997;
  transition: all var(--transition-normal);
}

.reviews-navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.reviews-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.reviews-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-logo-icon {
  font-size: 2rem;
}

.reviews-logo-text span {
  color: var(--primary-color);
}

.reviews-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.reviews-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.reviews-nav-links a:hover,
.reviews-nav-links a.active {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.reviews-nav-links i {
  font-size: 1rem;
}

.reviews-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-normal);
}

.reviews-nav-phone:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.reviews-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.reviews-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reviews-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}

.reviews-hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.reviews-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.reviews-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.reviews-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.reviews-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.reviews-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reviews-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.reviews-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.reviews-hero-slide.active {
  opacity: 1;
}

.reviews-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.reviews-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
  animation: reviewsHeroFadeIn 1s ease;
}

@keyframes reviewsHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.reviews-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.reviews-hero-title span {
  color: var(--accent-color);
  display: block;
  margin-top: 0.5rem;
}

.reviews-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.reviews-hero-rating {
  display: flex;
  justify-content: center;
}

.hero-rating-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  text-align: center;
}

.hero-rating-score {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.hero-rating-stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.hero-rating-stars i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-rating-count {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Scroll Indicator */
.reviews-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 2;
}

.reviews-scroll-indicator span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.reviews-scroll-mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.reviews-scroll-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: reviewsScrollWheel 1.5s infinite;
}

@keyframes reviewsScrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}

/* ==========================================
   CONTAINER
   ========================================== */
.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   TRUST SECTION
   ========================================== */
.reviews-trust-section {
  background: white;
  padding: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.trust-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.trust-badge span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.reviews-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.reviews-section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.reviews-section-title span {
  color: var(--primary-color);
}

.reviews-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.reviews-stats-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Overall Rating Card */
.overall-rating-card {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overall-rating-score {
  margin-bottom: 2rem;
}

.score-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.score-circle svg {
  transform: rotate(0deg);
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.score-max {
  font-size: 1.5rem;
  color: var(--text-medium);
  font-family: 'Poppins', sans-serif;
}

.overall-rating-info {
  width: 100%;
}

.rating-stars-large {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1rem;
}

.rating-stars-large i {
  font-size: 2rem;
  color: var(--star-filled);
}

.overall-rating-info p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.rating-recommend {
  color: var(--success-color) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* Rating Distribution Card */
.rating-distribution-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.rating-distribution-card h3,
.category-ratings-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-bar-item {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 1rem;
}

.bar-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
}

.bar-container {
  height: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 6px;
  transition: width 1s ease;
  width: 0;
}

.bar-percentage {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

/* Category Ratings Card */
.category-ratings-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.category-ratings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.category-name i {
  color: var(--primary-color);
}

.category-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.category-bar {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.category-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1s ease;
  width: 0;
}

/* ==========================================
   FILTER SECTION
   ========================================== */
.reviews-filter-section {
  padding: 2rem 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.filter-controls {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 250px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.filter-group label i {
  color: var(--primary-color);
}

.filter-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ==========================================
   REVIEWS MAIN SECTION
   ========================================== */
.reviews-main-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Review Card */
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.review-card.hidden {
  display: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.review-card.featured {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, rgba(255, 210, 63, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gradient-gold);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Review Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-light);
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.reviewer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviewer-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviewer-meta i {
  font-size: 0.8rem;
}

.review-rating {
  display: flex;
  gap: 3px;
}

.review-rating i {
  font-size: 1.1rem;
  color: var(--star-filled);
}

/* Review Badges */
.review-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.verified-badge {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success-color);
}

.destination-badge {
  background: rgba(0, 78, 137, 0.1);
  color: var(--secondary-color);
}

.type-badge {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

/* Review Content */
.review-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Review Images */
.review-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.review-images img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.more-images {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Review Stats */
.review-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.stat-item i {
  color: var(--primary-color);
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5rem;
}

.review-helpful {
  display: flex;
  gap: 1rem;
}

.helpful-btn,
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.helpful-btn:hover,
.share-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.helpful-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.response-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--success-color);
  font-weight: 500;
}

/* Company Response */
.company-response {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 210, 63, 0.05) 100%);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-sm);
}

.response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.response-header strong {
  color: var(--primary-color);
  font-size: 1rem;
}

.response-header span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.company-response p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* ==========================================
   LOAD MORE
   ========================================== */
.reviews-load-more {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   VIDEO REVIEWS SECTION
   ========================================== */
.video-reviews-section {
  padding: 5rem 0;
  background: white;
}

.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.video-review-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.video-review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--bg-light);
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.video-review-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
  cursor: pointer;
}

.video-review-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: white;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.video-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.video-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================
   WRITE REVIEW SECTION
   ========================================== */
.write-review-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.write-review-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.write-review-header {
  text-align: center;
  margin-bottom: 3rem;
}

.write-review-header i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.write-review-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.write-review-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.write-review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.form-group label i {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group small {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  gap: 8px;
  padding: 1rem 0;
}

.star-rating-input i {
  font-size: 2.5rem;
  color: var(--star-empty);
  cursor: pointer;
  transition: var(--transition-fast);
}

.star-rating-input i:hover,
.star-rating-input i.active {
  color: var(--star-filled);
  transform: scale(1.2);
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.submit-review-btn {
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.submit-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   AWARDS SECTION
   ========================================== */
.awards-section {
  padding: 5rem 0;
  background: white;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.award-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.award-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.award-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.award-card p {
  color: var(--text-medium);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.reviews-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.reviews-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reviews-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.cta-btn.secondary {
  background: white;
  color: var(--primary-color);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1rem;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust i {
  color: var(--accent-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.reviews-footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  position: relative;
}

.reviews-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.reviews-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  color: #1A1A2E;
}

.reviews-footer-main {
  padding: 4rem 0 2rem;
}

.reviews-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.reviews-footer-brand {
  max-width: 350px;
}

.reviews-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reviews-footer-logo span:first-child {
  font-size: 2.5rem;
}

.reviews-footer-logo span:last-child span {
  color: var(--primary-color);
}

.reviews-footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reviews-footer-social {
  display: flex;
  gap: 1rem;
}

.reviews-footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.reviews-footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.reviews-footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.reviews-footer-column ul {
  list-style: none;
}

.reviews-footer-column li {
  margin-bottom: 0.8rem;
}

.reviews-footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.reviews-footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviews-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.reviews-footer-bottom .reviews-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
  .reviews-hero-title {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .overall-rating-card {
    grid-column: 1;
    grid-row: 1;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .reviews-nav-links.active {
    left: 0;
  }

  .reviews-hamburger {
    display: flex;
  }

  .reviews-nav-actions {
    display: none;
  }

  .reviews-hero {
    height: 500px;
  }

  .reviews-hero-title {
    font-size: 2.5rem;
  }

  .hero-rating-box {
    padding: 1.5rem 2rem;
  }

  .hero-rating-score {
    font-size: 3rem;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-controls {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .filter-buttons {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .video-reviews-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .reviews-footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-whatsapp-float span {
    display: none;
  }

  .write-review-card {
    padding: 2rem 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .reviews-hero-title {
    font-size: 2rem;
  }

  .reviews-nav-container {
    padding: 1rem;
  }

  .reviews-container {
    padding: 0 1rem;
  }

  .reviews-section-title {
    font-size: 2rem;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.5rem;
  }

  .star-rating-input i {
    font-size: 2rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*contact*/

/* ==========================================
   CONTACT PAGE - UNIQUE DESIGN
   Purple & Teal Color Scheme
   ========================================== */

/* ==========================================
   ROOT VARIABLES - UNIQUE COLORS
   ========================================== */
:root {
  /* Primary Colors - Purple Theme */
  --primary-color: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-light: #8B5CF6;
  --secondary-color: #14B8A6;
  --secondary-dark: #0D9488;
  --secondary-light: #2DD4BF;
  
  /* Accent Colors */
  --accent-color: #F59E0B;
  --accent-pink: #EC4899;
  --accent-blue: #3B82F6;
  
  /* Status Colors */
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --danger-color: #EF4444;
  --info-color: #06B6D4;
  
  /* Neutral Colors */
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #9CA3AF;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --gradient-hero: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(20, 184, 166, 0.9) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
  --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.15);
  --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.2);
  --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.contact-page {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ==========================================
   PRELOADER
   ========================================== */
.contact-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #7C3AED 0%, #14B8A6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.contact-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.contact-preloader-content {
  text-align: center;
  color: white;
}

.contact-globe {
  font-size: 4rem;
  animation: contactGlobeRotate 2s infinite ease-in-out;
}

@keyframes contactGlobeRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(360deg) scale(1.2); }
}

.contact-preloader-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.contact-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.contact-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.contact-whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: contactWhatsappPulse 2s infinite;
}

@keyframes contactWhatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.contact-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.contact-whatsapp-float i {
  font-size: 1.5rem;
}

.contact-whatsapp-float span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.contact-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 997;
  transition: all var(--transition-normal);
}

.contact-navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.contact-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-logo-icon {
  font-size: 2rem;
}

.contact-logo-text span {
  color: var(--primary-color);
}

.contact-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.contact-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.contact-nav-links a:hover,
.contact-nav-links a.active {
  color: var(--primary-color);
  background: rgba(124, 58, 237, 0.1);
}

.contact-nav-links i {
  font-size: 1rem;
}

.contact-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-normal);
}

.contact-nav-phone:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.contact-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.contact-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}

.contact-hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.contact-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.contact-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.contact-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.contact-hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Animated Particles Background */
.contact-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7C3AED 0%, #14B8A6 100%);
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1000px;
  animation: contactHeroFadeIn 1s ease;
}

@keyframes contactHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-hero-title span {
  background: linear-gradient(135deg, #FCD34D 0%, #14B8A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Contact Buttons */
.contact-hero-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  color: white;
  transition: var(--transition-normal);
}

.hero-contact-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hero-contact-btn i {
  font-size: 2rem;
  flex-shrink: 0;
}

.hero-contact-btn.phone i {
  color: #10B981;
}

.hero-contact-btn.whatsapp i {
  color: #25D366;
}

.hero-contact-btn.email i {
  color: #F59E0B;
}

.hero-contact-btn div {
  text-align: left;
}

.hero-contact-btn span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}

.hero-contact-btn strong {
  display: block;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Floating Icons Animation */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icons i {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  animation: float 20s infinite ease-in-out;
}

.floating-icons i:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
  top: 40%;
  left: 20%;
  animation-delay: 4s;
}

.floating-icons i:nth-child(4) {
  top: 70%;
  left: 60%;
  animation-delay: 6s;
}

.floating-icons i:nth-child(5) {
  top: 30%;
  left: 70%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(-5deg);
  }
  75% {
    transform: translateY(20px) rotate(5deg);
  }
}

/* ==========================================
   CONTAINER
   ========================================== */
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   CONTACT INFO SECTION
   ========================================== */
.contact-info-section {
  padding: 5rem 0;
  background: white;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  background: var(--gradient-primary);
}

.phone-card .card-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.email-card .card-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.whatsapp-card .card-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.location-card .card-icon {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.contact-info-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.info-link {
  display: block;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: var(--transition-normal);
}

.info-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.contact-info-card address {
  font-style: normal;
  line-height: 1.8;
}

.availability {
  display: inline-block;
  margin-top: 1rem;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================
   MAIN CONTACT SECTION
   ========================================== */
.contact-main-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.form-header p {
  font-size: 1rem;
  color: var(--text-medium);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-normal);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-msg {
  display: block;
  color: var(--danger-color);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  min-height: 18px;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.submit-btn {
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.submit-btn .btn-loader {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.success-message {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--success-color);
  border-radius: var(--radius-sm);
  color: var(--success-color);
  align-items: start;
  gap: 1rem;
}

.success-message.show {
  display: flex;
}

.success-message i {
  font-size: 2rem;
  flex-shrink: 0;
}

.success-message h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--success-color);
}

.success-message p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ==========================================
   SIDE INFO
   ========================================== */
.contact-side-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.info-box-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-box-header h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
}

/* Business Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.hours-item .day {
  font-weight: 500;
  color: var(--text-dark);
}

.hours-item .time {
  color: var(--primary-color);
  font-weight: 600;
}

.hours-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  border: 2px solid var(--border-color);
}

.social-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.social-link i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.social-link.facebook i {
  background: #1877F2;
}

.social-link.instagram i {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.social-link.twitter i {
  background: #1DA1F2;
}

.social-link.youtube i {
  background: #FF0000;
}

.social-link div {
  flex: 1;
}

.social-link span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

.social-link strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.quick-links a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  transform: translateX(5px);
}

.quick-links i {
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* ==========================================
   MAP SECTION
   ========================================== */
.contact-map-section {
  padding: 5rem 0;
  background: white;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.map-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.map-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-wrapper iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 50px;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 350px;
  z-index: 10;
}

.overlay-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.map-overlay-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.map-overlay-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
}

.direction-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.contact-faq-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.contact-section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: rgba(124, 58, 237, 0.05);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.contact-cta-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: phonering 1.5s infinite;
}

@keyframes phonering {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.cta-btn.primary {
  background: white;
  color: var(--primary-color);
}

.cta-btn.secondary {
  background: #25D366;
  color: white;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   FOOTER
   ========================================== */
.contact-footer {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: white;
  position: relative;
}

.contact-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.contact-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  color: #1F2937;
}

.contact-footer-main {
  padding: 4rem 0 2rem;
}

.contact-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo span:first-child {
  font-size: 2.5rem;
}

.footer-logo span:last-child span {
  color: var(--primary-color);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: start;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.contact-footer-bottom .contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 3rem;
  }

  .contact-main-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .contact-nav-links.active {
    left: 0;
  }

  .contact-hamburger {
    display: flex;
  }

  .contact-nav-actions {
    display: none;
  }

  .contact-hero {
    height: 550px;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-buttons {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .map-overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-whatsapp-float span {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-nav-container {
    padding: 1rem;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .contact-section-header h2 {
    font-size: 2rem;
  }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}