/* 
  Friden Holidays - Premium Travel Agency Stylesheet
  Design Theme: Modern, Luxury, Minimal, Premium, Elegant
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --- Root Variables (Design System) --- */
:root {
  --primary: #0F766E;        /* Deep Teal */
  --primary-light: #14B8A6;  /* Teal Accent Light */
  --primary-dark: #0F172A;   /* Sleek Dark */
  --secondary: #06B6D4;      /* Sky Blue */
  --secondary-light: #E0F2FE;
  --accent: #F59E0B;         /* Golden Yellow */
  --accent-light: #FEF3C7;
  --background: #F8FAFC;     /* Premium Soft Background */
  --text-dark: #1F2937;      /* Charcoal text */
  --text-muted: #64748B;     /* Slate grey text */
  --white: #FFFFFF;
  --light-grey: #F1F5F9;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 118, 110, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 118, 110, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --max-width: 1280px;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease-out;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

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

/* --- Loader/Spinner --- */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo-container {
  text-align: center;
}

.loader-logo {
  max-width: 120px;
  height: auto;
  animation: pulse 1.8s infinite ease-in-out;
  margin-bottom: 20px;
  filter: grayscale(100%);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-grey);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* --- Common Layout & Containers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--white);
}

.section-bg-grey {
  background-color: var(--light-grey);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .subtitle {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: inline-block;
}

.section-header h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 8px;
  letter-spacing: 0.3px;
  text-align: center;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.btn-accent:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

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

/* Button Ripple effect */
.btn-ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

/* --- Sticky glassmorphism Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

header.scrolled .logo-img {
  height: 45px;
  padding: 4px 8px;
}

header.scrolled .nav-link {
  color: var(--text-dark);
}

header.scrolled .nav-link:hover {
  color: var(--primary);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  padding: 8px 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
  background-color: var(--white);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

/* No invert/filters needed anymore since it has its own white card background */
header:not(.scrolled) .logo-img {
  filter: none;
  mix-blend-mode: normal;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--white);
  letter-spacing: 0.3px;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

header.scrolled .mobile-nav-toggle span {
  background-color: var(--text-dark);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Fullscreen Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video-bg, 
.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slider-bg .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-content h1 {
  font-size: 3.75rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content .tagline {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-family: var(--font-heading);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-content .description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

/* Floating Search Box */
.floating-search-container {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1050px;
  z-index: 10;
}

.floating-search {
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px 32px;
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-field label i {
  color: var(--secondary);
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.floating-search .btn-search {
  height: 50px;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.floating-search .btn-search:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 118, 110, 0.2);
}

/* Animated Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-down-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-down-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
}

.scroll-down-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s infinite;
}

/* --- Banner & Inner Header Page Section --- */
.inner-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.inner-hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li a {
  color: var(--secondary);
}

.breadcrumb li::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child::after {
  display: none;
}

/* --- About Us Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  font-size: 1.05rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 250px;
  animation: float 4s ease-in-out infinite;
}

.about-image-card h4 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-card p {
  color: var(--secondary-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Why Choose Us (Icon Cards) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.1);
}

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

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(15, 118, 110, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.925rem;
  line-height: 1.5;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.1);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition-fast);
  display: inline-block;
}

.service-card:hover .service-icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .btn-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.service-card .btn-link i {
  transition: var(--transition-fast);
}

.service-card:hover .btn-link {
  color: var(--secondary);
}

.service-card:hover .btn-link i {
  transform: translateX(4px);
}

/* --- Popular Destinations Section --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.destination-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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(180deg, rgba(15, 23, 42, 0.1) 40%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.destination-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.destination-glass-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-md);
  padding: 20px;
  color: var(--white);
  transition: var(--transition-smooth);
  transform: translateY(10px);
}

.destination-card:hover .destination-glass-box {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.destination-glass-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.destination-glass-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.destination-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.destination-price span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.destination-card .btn-book {
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 20px;
  background-color: var(--white);
  color: var(--primary);
  border: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.destination-card:hover .btn-book {
  background-color: var(--primary);
  color: var(--white);
}

/* Destinations page filtering & categories */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  padding: 10px 24px;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(15, 118, 110, 0.15);
}

/* --- Tour Packages Section --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
}

.package-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.1);
}

.package-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img-container img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.package-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.package-duration i {
  color: var(--secondary);
}

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

.package-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.package-rating i {
  color: var(--accent);
  font-size: 0.85rem;
}

.package-rating span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
}

.package-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.package-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.package-meta {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 14px 0;
  margin-bottom: 20px;
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-meta-item i {
  color: var(--primary);
}

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

.package-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-price span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.package-footer-btns {
  display: flex;
  gap: 8px;
}

.package-footer-btns .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* --- Featured Offers Section --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.offer-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.offer-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #EF4444; /* High conversion Red */
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.offer-image {
  height: 200px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.offer-discount {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.offer-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  background-color: var(--light-grey);
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  min-width: 60px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* --- Statistics Section (Parallax Banner) --- */
.stats-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 118, 110, 0.9); /* Deep teal translucent overlay */
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Testimonials Section (Premium Slider) --- */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 40px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 40px;
  font-size: 8rem;
  color: rgba(15, 118, 110, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

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

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 118, 110, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--primary);
}

/* Review submission form (on testimonials page) */
.review-form-container {
  max-width: 600px;
  margin: 60px auto 0;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
}

.review-form-container h3 {
  text-align: center;
  margin-bottom: 24px;
}

.rating-select {
  display: flex;
  gap: 8px;
  font-size: 1.5rem;
  color: #CBD5E1;
  margin-bottom: 20px;
  justify-content: center;
}

.rating-select i {
  cursor: pointer;
  transition: var(--transition-fast);
}

.rating-select i.active,
.rating-select i:hover,
.rating-select i:hover ~ i {
  color: var(--accent);
}

/* --- Gallery Section (Masonry & Lightbox) --- */
.gallery-grid {
  columns: 4 280px;
  column-gap: 20px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--light-grey);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 118, 110, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-hover {
  opacity: 1;
}

.gallery-item-hover i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.gallery-item-hover h4 {
  color: var(--white);
  font-size: 1.15rem;
}

.gallery-item-hover p {
  color: var(--secondary-light);
  font-size: 0.8rem;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  margin-top: 15px;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  color: var(--accent);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* --- Modern Blog Cards Section --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.blog-meta i {
  color: var(--primary);
}

.blog-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-body .btn-read {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.blog-card:hover .btn-read {
  color: var(--secondary);
}

.blog-card:hover .btn-read i {
  transform: translateX(4px);
}

/* --- FAQ Accordion Section --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--light-grey);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.1);
}

.faq-item.active .faq-icon-box {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content {
  padding: 0 28px 22px;
  border-top: 1px solid transparent;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-body {
  max-height: 500px; /* Big enough for text */
}

.faq-item.active .faq-content {
  border-top-color: var(--light-grey);
}

/* --- Visa Timeline & Process Section --- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 4px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.15);
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -18px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -18px;
}

.timeline-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.1);
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
}

/* --- Contact & Enquiry Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
}

.contact-info-title {
  margin-bottom: 24px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.925rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-grey);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

/* Form Styling */
.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Interactive Map Section */
.map-section {
  padding: 0;
  height: 450px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Premium Modal Popup for Booking/Enquiry --- */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 11000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-wrapper.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-wrapper.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-grey);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--primary);
  color: var(--white);
}

.modal-header {
  padding: 30px 40px 15px;
  border-bottom: 1px solid var(--light-grey);
}

.modal-header h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-body {
  padding: 24px 40px 40px;
}

/* Success Overlay for forms */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.form-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981; /* Green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  animation: scale-up 0.5s ease-out;
}

/* --- Modern Dark Footer --- */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-about .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  background-color: var(--white);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.9rem;
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
}

.newsletter-form .btn-submit {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form .btn-submit:hover {
  background-color: var(--primary-light);
}

/* Trust Badges */
.footer-trust-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin: 40px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 500;
}

.trust-badge-item i {
  color: var(--accent);
  font-size: 1.15rem;
}

/* Payment Icons Row */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-icon-card {
  height: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* --- Floating Actions System --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
  font-size: 1.4rem;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-whatsapp {
  background-color: #25D366; /* WhatsApp official green */
}

.float-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.float-call {
  background-color: var(--primary);
}

.float-call:hover {
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

.float-back-to-top {
  background-color: var(--primary-dark);
  opacity: 0;
  visibility: hidden;
}

.float-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.float-back-to-top:hover {
  background-color: var(--secondary);
}

/* Mobile Sticky Book Bar */
.sticky-mobile-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid var(--light-grey);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
  padding: 12px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.sticky-mobile-info {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sticky-mobile-info .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.sticky-mobile-booking .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* --- Animations Definitions --- */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

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

@keyframes scale-up {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Scroll triggered animation library --- */
.fade-up, .fade-left, .fade-right, .zoom-in, .zoom-out {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(50px); }
.fade-right { transform: translateX(-50px); }
.zoom-in { transform: scale(0.9); }
.zoom-out { transform: scale(1.1); }

.animate-in {
  opacity: 1 !important;
  transform: none !important;
}

/* --- Specific Page Styling --- */

/* Flight page / Hotel page search panel */
.inner-search-panel {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.inner-search-title {
  margin-bottom: 24px;
}

.partner-logos-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.partner-logo {
  max-width: 140px;
  opacity: 0.4;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  opacity: 0.9;
}

/* Travel Insurance Coverages */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.coverage-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}

.coverage-card i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 4px;
}

.coverage-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.coverage-card p {
  font-size: 0.85rem;
}

/* 404 Page Styling */
.error-page-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.error-code {
  font-size: 8rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.error-msg {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

/* Privacy Policy Layout */
.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 35px;
}

.policy-block h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.policy-block p {
  margin-bottom: 14px;
}

.policy-block ul {
  padding-left: 24px;
  margin-bottom: 14px;
}

.policy-block li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* --- Media Queries (Fully Responsive Layouts) --- */

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .floating-search {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating-search-container {
    bottom: -130px;
  }
  
  .about-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  header {
    background-color: transparent;
    box-shadow: none;
    padding: 0 !important;
    height: 70px;
    border-bottom: 1px solid transparent;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  
  header.scrolled,
  header.menu-open {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 !important;
  }
  
  .header-container {
    padding: 0 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  
  header:not(.scrolled) .logo-img {
    filter: none;
    mix-blend-mode: normal;
  }
  
  header.scrolled .logo-img, 
  .logo-img {
    height: 40px;
    padding: 4px 8px;
  }
  
  .nav-link {
    color: var(--text-dark) !important;
  }
  
  nav {
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-nav-toggle span {
    background-color: var(--white);
  }
  
  header.scrolled .mobile-nav-toggle span, 
  header.menu-open .mobile-nav-toggle span {
    background-color: var(--text-dark);
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    visibility: hidden;
  }
  
  .nav-menu.open {
    left: 0;
    visibility: visible;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-grey);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .hero {
    height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content .tagline {
    font-size: 1.15rem;
  }
  
  .hero-content .description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .scroll-down-indicator {
    display: none;
  }
  
  .floating-search-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
  
  .floating-search {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-badge {
    left: 2px !important;
  }
  
  .sticky-mobile-booking {
    display: flex;
  }
  
  body {
    padding-bottom: 70px; /* Leave room for mobile sticky booking */
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .testimonial-slide {
    padding: 0 10px;
  }
  
  .testimonial-card {
    padding: 40px 24px;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .map-section {
    height: 350px;
  }
  
  .contact-info,
  .contact-form-container,
  .review-form-container {
    padding: 30px 20px !important;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 580px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn-submit {
    padding: 12px;
  }
}
