/*
 * TopRank Tour & Travels - Luxury Style Sheet
 * Author: Senior UI/UX Designer & Frontend Developer
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Theme - Premium Navy & Gold/Orange */
  --primary-color: #0A192F;
  --primary-rgb: 10, 25, 47;
  --secondary-color: #020C1B;
  --secondary-rgb: 2, 12, 27;
  --accent-color: #FF6800; /* Keeping vibrant orange based on MS branding */
  --accent-rgb: 255, 104, 0;
  --bg-color: #FFFFFF;
  --dark-color: #020C1B;
  --dark-rgb: 2, 12, 27;
  --light-grey: #F8FAFC;
  --white: #FFFFFF;
  
  /* Text and Card Colors */
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  
  /* Glassmorphism Styles - Sleeker */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 10px 40px 0 rgba(10, 25, 47, 0.08);
  
  /* Typography - Modern & Premium */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout details */
  --container-max: 1280px;
  --header-height: 90px;
  --section-padding-lg: 120px 0;
  --section-padding-md: 90px 0;
  --section-padding-sm: 60px 0;
  --gap-lg: 40px;
  --gap-md: 30px;
  --gap-sm: 20px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Dark Mode Overrides */
body.dark-mode {
  --bg-color: #080F18;
  --light-grey: #0F1A2A;
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --border-color: #1E293B;
  --glass-bg: rgba(13, 27, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

body.dark-mode .nav-menu a:hover,
body.dark-mode .nav-menu a.active {
  color: var(--accent-color) !important;
}

body.dark-mode .nav-menu a::after {
  background: var(--accent-color);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding-lg);
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title-wrap {
  margin-bottom: 60px;
  text-align: center;
}

.section-title-wrap p {
  max-width: 600px;
  margin: 0 auto;
}

/* Luxury Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 104, 0, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #009e86 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 194, 168, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 194, 168, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-color);
  border-color: var(--text-main);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 104, 0, 0.3);
}

.btn-accent:hover {
  background: #E55D00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 104, 0, 0.4);
}

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--primary-color);
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.btn-link:hover {
  border-bottom-color: var(--primary-color);
}

.btn-link i {
  margin-left: 8px;
  transition: var(--transition-fast);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Glassmorphism elements */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

/* Animated Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.loader-logo span {
  color: var(--secondary-color);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 10001;
  width: 0%;
}

/* Sticky Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: var(--bg-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

header.sticky {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

header.sticky .logo {
  color: var(--text-main);
}

header.sticky .nav-menu a {
  color: var(--text-main);
}

header.sticky .theme-toggle i {
  color: var(--text-main);
}

header.sticky .mobile-toggle span {
  background: var(--text-main);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

header.sticky .nav-container {
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo span {
  color: var(--secondary-color);
}

.logo i {
  color: var(--primary-color);
  margin-right: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: 15px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color) !important;
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.theme-toggle:hover {
  transform: rotate(20deg) scale(1.1);
  color: var(--secondary-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Floating Elements */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(11, 95, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 95, 255, 0.5);
  background-color: var(--secondary-color);
}

/* Sticky Contact Bar */
.sticky-contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sticky-contact-info {
  display: flex;
  gap: 15px;
}

.sticky-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
}

.sticky-contact-info a:hover {
  color: var(--secondary-color);
}

.sticky-contact-info i {
  color: var(--secondary-color);
}

.sticky-contact-socials {
  display: flex;
  gap: 15px;
}

.sticky-contact-socials a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.sticky-contact-socials a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Page Header (Subpages) */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Accounts for fixed navbar */
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Premium Video Carousel Hero Section */
.video-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 120px;
}

.video-carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--primary-color);
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.bg-video.active {
  opacity: 1;
  z-index: 2;
}

.video-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(2, 12, 27, 0.6) 100%);
  z-index: 3;
}

.hero-content-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-rated-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.avatars {
  display: flex;
  margin-right: 15px;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  margin-left: -12px;
}
.avatars img:first-child {
  margin-left: 0;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-info .stars {
  color: #FFB400;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.rating-info .score {
  color: #FFFFFF;
  font-weight: 700;
  margin-left: 6px;
}

.rating-info .rating-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 3.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), #FFB400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Search Trip Section (Glassmorphism Overlay) */
.search-widget {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 40px;
  padding: 25px 30px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
  border: 1px solid var(--border-color);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 15px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 600;
}

.form-group input,
.form-group select {
  height: 50px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border-color);
  padding: 0 15px;
  border-radius: var(--border-radius-sm);
  color: var(--dark-color);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select {
  background: rgba(15, 26, 42, 0.8);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 104, 0, 0.15);
}

/* Popular Destinations / Slider styling */
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.slider-slide {
  flex-shrink: 0;
  width: calc(100% / 4);
  padding: 15px;
}

.destination-card {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-card:hover .destination-img {
  transform: scale(1.15);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(360deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.3) 50%, transparent 100%);
  color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.destination-info h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.destination-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 12px;
}

.destination-meta span {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-meta i {
  color: var(--accent-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Tour Packages Layout */
.package-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--light-grey);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.package-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 95, 255, 0.1);
  border-color: rgba(11, 95, 255, 0.2);
}

.package-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.1);
}

.package-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.package-content {
  padding: 30px;
}

.package-rating {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-rating span {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 5px;
}

.package-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.package-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-meta-item i {
  color: var(--secondary-color);
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.package-price strong {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

body.dark-mode .package-price strong {
  color: var(--white);
}

/* Why Choose Us & Services Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-8px);
  background: var(--bg-color);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.05);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
  background: var(--accent-color);
  color: var(--white);
}

.feature-box h4 {
  margin-bottom: 12px;
}

/* Statistics Counters Block */
.stats-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #050d15 100%);
  color: var(--white);
  padding: var(--section-padding-md);
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.stat-title {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Dynamic Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* FAQ Accordion Elements */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-color);
  transition: var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--light-grey);
}

.faq-question i {
  transition: var(--transition-smooth);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(11, 95, 255, 0.05);
}

.faq-item.active .faq-question {
  background: var(--light-grey);
  color: var(--primary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
}

/* Video Section Block */
.video-section {
  position: relative;
  padding: 180px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.8);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.5);
  animation: pulsePlay 2s infinite;
  transition: var(--transition-smooth);
}

.play-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(11, 95, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 95, 255, 0); }
}

/* Newsletter Container */
.newsletter-section {
  background: var(--light-grey);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 50px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  height: 55px;
  border-radius: 30px;
  padding: 0 25px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-main);
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
}

/* Footer layout */
footer {
  background: linear-gradient(180deg, #091322 0%, #04080f 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 4px;
}

.footer-contact span,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(11, 95, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Page Header (Internal Hero) */
.page-header {
  position: relative;
  padding: 140px 0 var(--section-padding-md);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb span {
  color: var(--accent-color);
}

/* Packages Grid layouts (Internal pages) */
.packages-sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.filter-sidebar {
  padding: 30px;
}

.sidebar-widget {
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Contact Page Layout details */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info-card {
  padding: 30px;
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-content p, .contact-info-content a {
  margin: 0;
  color: var(--text-muted);
}

.contact-form-card {
  padding: 40px;
}

.contact-form-card h3 {
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-full {
  margin-bottom: 20px;
}

.form-full label, .form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-full input, .form-full select, .form-full textarea,
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background: var(--light-grey);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-full input:focus, .form-full select:focus, .form-full textarea:focus,
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--primary-color);
  background: var(--bg-color);
}

.google-map-wrap {
  margin-top: 50px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--border-color);
}

.google-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cookie Consent Box */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  padding: 24px;
  z-index: 10000;
  border-radius: var(--border-radius-md);
  display: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Partner Logos Slider Styling */
.partners-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  width: calc(200px * 16);
  animation: scrollTrack 30s linear infinite;
}

.partner-logo {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-muted);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--primary-color);
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 8)); }
}

/* Blog layouts */
.blog-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 95, 255, 0.08);
}

.blog-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-meta span {
  margin-right: 15px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Live Search Styling */
.search-results-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.95);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.search-results-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-results-box {
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 40px;
}

.search-input-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.2rem;
  font-family: var(--font-heading);
  padding: 10px 0;
}

.search-input-wrap input:focus {
  border-bottom-color: var(--secondary-color);
}

.close-search-btn {
  position: absolute;
  right: 0;
  top: 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--border-radius-sm);
  color: var(--white);
}

.search-result-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.search-result-info h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}

.search-result-info p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* --- Premium Added Styles --- */

.hero-bg-anim {
  animation: slow-pan 20s linear infinite alternate;
}

@keyframes slow-pan {
  0% { transform: scale(1); background-position: center; }
  100% { transform: scale(1.1); background-position: right center; }
}

.card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

body.dark-mode .glass-panel {
  background: rgba(20, 25, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .card-hover {
  background: #111827 !important;
  color: #fff;
}

/* Rate Table Styling */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1rem;
}
.rate-table th {
  background-color: #f1f5f9;
  font-weight: 700;
  color: var(--text-main);
  padding: 15px;
  border-bottom: 2px solid var(--border-color);
}
.rate-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}
.rate-table tr:last-child td {
  border-bottom: none;
}
.rate-table tr:nth-child(even) {
  background-color: #f8fafc;
}
.rate-table tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
body.dark-mode .rate-table th {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}
body.dark-mode .rate-table td {
  color: var(--white);
}
body.dark-mode .rate-table tr:nth-child(even) {
  background-color: rgba(255,255,255,0.03);
}
body.dark-mode .rate-table tr:hover {
  background-color: rgba(255,255,255,0.05);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
  border: 1px solid var(--border-color);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown-menu a {
  color: var(--text-main);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover, .dropdown-menu a.active {
  background-color: rgba(0,0,0,0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

body.dark-mode .dropdown-menu {
  background-color: var(--card-bg);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

body.dark-mode .dropdown-menu a {
  color: var(--white);
}

body.dark-mode .dropdown-menu a:hover, body.dark-mode .dropdown-menu a.active {
  background-color: rgba(255,255,255,0.05);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 15px;
    background: transparent;
    border: none;
    margin-top: 10px;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  body.dark-mode .dropdown-menu {
    background: transparent;
    box-shadow: none;
    border: none;
  }
}

/* Rate List Table Styling */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.rate-table th {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rate-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.rate-table tr:hover td {
  background: rgba(10, 25, 47, 0.05);
}

body.dark-mode .rate-table th {
  background: var(--secondary-color);
}

body.dark-mode .rate-table td {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.1);
}

body.dark-mode .rate-table tr:hover td {
  background: rgba(255,255,255,0.05);
}
