/*
 ==========================================
   ENIX TRAVELS - PREMIUM STYLE SHEET
   Aesthetics: High-Fidelity Figma Prototype, Glassmorphism, 
               Metallic Gold Gradients, Shimmer Effects, Aurora Glows
 ==========================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Outfit:wght@200;300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Colors */
  --primary: #030c17;          /* Primary deep navy base */
  --primary-light: rgba(13, 27, 42, 0.4);    /* Transparent glassmorphic card fill */
  --accent: #c5a880;           /* Champagne / Sand Gold */
  --accent-glow: rgba(197, 168, 128, 0.4);
  --accent-hover: #e0cca7;     /* Lighter Sand Gold */
  --bg-dark: #02070f;          /* Almost black */
  
  /* Ocean Breeze Color Palette (customized background blends) */
  --ocean-light: #DFF7FF;      /* Light pastel sky blue */
  --ocean-medium: #7FCDFF;     /* Vibrant sky blue */
  --ocean-deep: #4DA8FF;       /* Medium blue accent */
  --ocean-glow-1: rgba(223, 247, 255, 0.08);
  --ocean-glow-2: rgba(127, 205, 255, 0.06);
  --ocean-glow-3: rgba(77, 168, 255, 0.04);
  
  --text-white: #ffffff;       /* Pure white headings */
  --text-slate: #94a3b8;       /* Legible slate body */
  --text-light: #e2e8f0;       /* High contrast body text */
  --border-light: rgba(255, 255, 255, 0.06); /* Ultra-thin border */
  
  /* Professional Designer Fonts */
  --font-serif: 'Cinzel', serif;
  --font-display: 'Syne', sans-serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Animation / Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Premium ease-out curve */
  --transition-fast: all 0.25s ease;
  
  /* Shadow & Blur */
  --card-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.7);
  --card-shadow-hover: 0 25px 50px -12px rgba(197, 168, 128, 0.15), 0 0 25px rgba(127, 205, 255, 0.06);
  --glass-bg: rgba(3, 12, 23, 0.7);
  --glass-blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset to prevent fixed navbar from covering headings */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  /* Aurora Ambient Gradient Glows mixing Ocean Breeze palette in background */
  background-image: 
    radial-gradient(circle at 85% 15%, var(--ocean-glow-1) 0%, transparent 40%),
    radial-gradient(circle at 10% 65%, var(--ocean-glow-2) 0%, transparent 45%),
    radial-gradient(circle at 50% 35%, var(--ocean-glow-3) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, var(--ocean-glow-1) 0%, transparent 35%);
  background-attachment: fixed; /* Keeps glow gradients fixed in screen coords during scroll */
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

ul {
  list-style: none;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border: 2px solid var(--bg-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Common UI Utilities --- */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 10%, var(--accent) 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Luxury Divider under Headings */
.divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 30px 0;
}
.divider-gold::before, .divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light) 50%, transparent);
}
.divider-gold::before {
  margin-right: 15px;
}
.divider-gold::after {
  margin-left: 15px;
}
.divider-gold span {
  display: inline-block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1.5px solid var(--accent);
  background-color: var(--bg-dark);
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-slate);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Shimmer Reflection sweep on buttons */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}
.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-30deg);
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.shimmer-btn:hover::after {
  left: 150%;
  opacity: 1;
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 30px; /* Rounded pill style from Figma */
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.glow-btn:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 10px 30px -10px var(--accent-glow);
  transform: translateY(-2px);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: 16px; /* Smooth rounded corner */
}

/* --- Sticky Glassmorphism Header --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  object-fit: cover;
}

.logo-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
}

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

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

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

/* Checkbox hack variables */
.nav-checkbox {
  display: none;
}

.hamburger-label {
  display: none;
  cursor: pointer;
  z-index: 1010;
}

/* --- Hero Section (Homepage) --- */
.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, rgba(3,12,23,0.1) 0%, rgba(2,7,15,0.98) 100%), 
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 950px;
  z-index: 10;
}

.hero h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: var(--text-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 5.2rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-slate);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

/* --- Sub-page Hero Section --- */
.sub-hero {
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3,12,23,0.3) 0%, rgba(2,7,15,1) 100%);
  z-index: 1;
}

.sub-hero-about {
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80');
}

.sub-hero-destinations {
  background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80');
}

.sub-hero-packages {
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1920&q=80');
}

.sub-hero-tips {
  background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1920&q=80');
}

.sub-hero-contact {
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80');
}

.sub-hero h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  margin-bottom: 16px;
  z-index: 10;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  z-index: 10;
}

/* Staggered Animations for Hero Text */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-sub {
  animation-delay: 0.4s;
}

.hero-cta {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* --- About Us Page Layouts --- */
.about {
  padding: 120px 8%;
  background-color: transparent;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-text h2 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: var(--text-slate);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-highlight {
  font-size: 1.3rem;
  color: var(--text-light);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  font-family: var(--font-serif);
  margin: 30px 0;
}

/* About Stats badges */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  flex: 1;
  padding: 24px;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-slate);
  font-weight: 600;
}

/* Visual Collage side */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 90%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(3,12,23,0.6) 0%, rgba(3,12,23,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.visual-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  top: 20px;
  left: 20px;
  z-index: -1;
  opacity: 0.25;
  transition: var(--transition-smooth);
}

.about-visual:hover .visual-backdrop {
  transform: translate(-10px, -10px);
  opacity: 0.5;
}

/* Why Choose Grid */
.why-choose {
  padding: 120px 8%;
  background-color: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-box {
  padding: 44px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.why-box:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.why-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-box p {
  color: var(--text-slate);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
}

/* History / Values section */
.agency-profile {
  padding: 120px 8%;
  background-color: transparent;
}

.profile-block {
  margin-bottom: 80px;
}

.profile-block h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.vm-box {
  padding: 44px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.vm-box:hover {
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.vm-box h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.vm-tagline {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-slate);
  margin-bottom: 20px;
}

.vm-box p {
  color: var(--text-light);
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  padding: 36px 28px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.value-item p {
  color: var(--text-slate);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  padding: 36px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-card p {
  color: var(--text-slate);
  font-size: 0.9rem;
  font-weight: 300;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.simple-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-light);
  font-weight: 300;
}

.simple-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.guidance-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.guidance-list a {
  display: inline-block;
  margin-left: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Services section in About page */
.services {
  padding: 120px 8%;
  background-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  padding: 36px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card p {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- Destinations Page Layouts --- */
.destinations {
  padding: 120px 8%;
  background-color: transparent;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Columns on desktop */
  gap: 30px;
}

.destination-card {
  position: relative;
  background-color: var(--primary-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  height: 440px;
  display: flex;
  flex-direction: column;
}

.dest-img-container {
  height: 65%;
  overflow: hidden;
  position: relative;
}

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

/* Hover overlays */
.dest-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3,12,23,0) 40%, rgba(3,12,23,0.85) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

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

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.dest-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(3, 12, 23, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  z-index: 2;
  font-weight: 600;
  font-family: var(--font-display);
}

.dest-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--primary-light);
  position: relative;
  z-index: 2;
}

.dest-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.destination-card:hover .dest-content h3 {
  color: var(--accent);
}

.dest-content p {
  color: var(--text-slate);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.dest-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-display);
}

.dest-link span {
  transition: transform 0.3s ease;
}

.destination-card:hover .dest-link span {
  transform: translateX(5px);
}

/* --- Interactive Pure CSS Photo Gallery Section --- */
.gallery-filter-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Hide radio buttons */
input[name="gallery-filter"] {
  display: none;
}

/* Filter Tab Pills */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 8px;
  border-radius: 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.filter-tab {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid transparent;
  color: var(--text-slate);
  transition: var(--transition-fast);
}

.filter-tab:hover {
  color: var(--text-white);
}

/* Radio check logic to highlight tabs */
#filter-all:checked ~ .filter-tabs label[for="filter-all"],
#filter-maldives:checked ~ .filter-tabs label[for="filter-maldives"],
#filter-dubai:checked ~ .filter-tabs label[for="filter-dubai"],
#filter-bali:checked ~ .filter-tabs label[for="filter-bali"],
#filter-thailand:checked ~ .filter-tabs label[for="filter-thailand"],
#filter-switzerland:checked ~ .filter-tabs label[for="filter-switzerland"],
#filter-paris:checked ~ .filter-tabs label[for="filter-paris"],
#filter-singapore:checked ~ .filter-tabs label[for="filter-singapore"],
#filter-malaysia:checked ~ .filter-tabs label[for="filter-malaysia"] {
  background-color: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 15px -3px var(--accent-glow);
}

/* Photo Grid */
.photo-grid {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory;
  gap: 20px;
  width: 100%;
  padding: 10px 0 24px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: var(--transition-smooth);
}
.photo-grid::-webkit-scrollbar {
  display: none;
}

.photo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  flex: 0 0 320px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  scroll-snap-align: start;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  cursor: zoom-in;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(3,12,23,0.9) 0%, rgba(3,12,23,0) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 5;
}

.photo-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.photo-overlay p {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.photo-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-item:hover .photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Hide non-selected filter items */
#filter-maldives:checked ~ .photo-grid .photo-item:not(.item-maldives),
#filter-dubai:checked ~ .photo-grid .photo-item:not(.item-dubai),
#filter-bali:checked ~ .photo-grid .photo-item:not(.item-bali),
#filter-thailand:checked ~ .photo-grid .photo-item:not(.item-thailand),
#filter-switzerland:checked ~ .photo-grid .photo-item:not(.item-switzerland),
#filter-paris:checked ~ .photo-grid .photo-item:not(.item-paris),
#filter-singapore:checked ~ .photo-grid .photo-item:not(.item-singapore),
#filter-malaysia:checked ~ .photo-grid .photo-item:not(.item-malaysia) {
  display: none;
}

/* --- Pure CSS Lightbox Overlays --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 12, 23, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease-out;
}

.lightbox:target {
  display: flex;
}

.lightbox-close-helper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
  z-index: 2010;
}

.lightbox-content-box {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  z-index: 2020;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomInLight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content-box img {
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 60px -10px rgba(0,0,0,0.8);
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-title-box {
  text-align: center;
  margin-top: 15px;
}

.lightbox-title-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-white);
}

.lightbox-title-box p {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.btn-close-lightbox {
  position: absolute;
  top: -45px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-close-lightbox:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

@keyframes zoomInLight {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Tour Categories Grid */
.categories-section {
  padding: 120px 8%;
  background-color: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-box {
  padding: 44px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.category-box:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.category-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.category-desc {
  color: var(--text-slate);
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-weight: 300;
  line-height: 1.6;
}

.category-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-box li a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-light);
}

.category-box li a:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* Country Know before you go cards */
.country-info-section {
  padding: 120px 8%;
  background-color: transparent;
}

.country-info-card {
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  margin-bottom: 40px;
  scroll-margin-top: 120px;
}

.country-info-card h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--border-light);
  padding-bottom: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-col h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.info-col p {
  color: var(--text-slate);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* --- Tour Packages Page Layouts --- */
.packages {
  padding: 120px 8%;
  background-color: transparent;
  position: relative;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.package-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 420px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.package-header {
  padding: 36px 30px;
  background-color: rgba(255,255,255,0.01);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.package-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 12px;
}

.package-duration {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
}

.package-details {
  padding: 36px 30px;
  flex: 1;
  background-color: transparent;
}

/* Custom Gold Circular Checkboxes */
.details-list {
  margin-bottom: 30px;
}

.details-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--text-slate);
  font-weight: 300;
}

.details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background-color: rgba(197, 168, 128, 0.08);
  box-shadow: 0 0 5px var(--accent-glow);
  transition: var(--transition-fast);
}

.details-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  width: 5px;
  height: 8px;
  border: solid var(--accent);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  transition: var(--transition-fast);
}

/* Hover Feedback: checkboxes turn gold */
.package-card:hover .details-list li::before {
  border-color: var(--text-white);
  background-color: var(--accent);
}

.package-card:hover .details-list li::after {
  border-color: var(--bg-dark);
}

.package-pricing {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-white);
  font-weight: 700;
  margin: 5px 0 20px 0;
}

.price-amount span {
  font-size: 1.6rem;
  color: var(--accent);
}

.package-btn {
  width: 100%;
  padding: 18px;
  text-align: center;
}

/* Country sections on packages page */
.country-block {
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}

.country-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--accent);
  margin-bottom: 40px;
  position: relative;
  display: block;
}

/* Tour packages Table style */
.table-section {
  padding: 120px 8%;
  background-color: transparent;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: rgba(13, 27, 42, 0.2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.tour-table caption {
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  background-color: rgba(255,255,255,0.01);
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.tour-table th {
  padding: 20px;
  background-color: rgba(3, 12, 23, 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1.5px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-display);
}

.tour-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
}

.tour-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
}

.tour-table .btn-table-book {
  padding: 10px 22px;
  font-size: 0.75rem;
  border-radius: 20px;
}

/* --- Travel Tips & FAQ Page Layouts --- */
.tips-section {
  padding: 120px 8%;
  background-color: transparent;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tip-card {
  padding: 44px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.tip-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.tip-card p {
  color: var(--text-slate);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* FAQ Details/Summary Accordion */
.faq-section {
  padding: 120px 8%;
  background-color: transparent;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item summary {
  padding: 24px 30px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Rotating arrow icon */
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 5px 20px -10px var(--accent-glow);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 30px 24px 30px;
  color: var(--text-slate);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.02);
}

/* --- Contact & Booking Page Layouts --- */
.contact-wrapper {
  padding: 120px 8% 60px 8%;
  background-color: transparent;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: start;
}

.contact-info h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-slate);
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--primary-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
}

.info-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.info-details h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-slate);
  margin-bottom: 4px;
  font-weight: 600;
}

.info-details p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

.social-platforms {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -10px var(--accent);
}

/* Glassmorphism Form */
.contact-form-panel {
  padding: 48px;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
}

.contact-form-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-panel p {
  color: var(--text-slate);
  margin-bottom: 36px;
  font-weight: 300;
  font-size: 0.95rem;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-display);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-slate);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px -5px var(--accent-glow);
}

select.form-input option, select.form-input optgroup {
  background-color: var(--primary-light);
  color: var(--text-light);
}

textarea.form-input {
  height: 140px;
  resize: none;
}

.form-submit-btn {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  padding: 18px;
  border-radius: 30px;
}

/* CSS Target alerts on Contact Page */
.selected-note {
  display: none;
  padding: 20px 24px;
  border-radius: 12px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1.5px dashed var(--accent);
  color: var(--text-white);
  margin-bottom: 30px;
  font-weight: 500;
  animation: slideFadeIn 0.5s ease-out;
}

.selected-note:target {
  display: block;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Footer Area --- */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-slate);
  font-weight: 300;
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h4, .footer-support h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-nav a {
  color: var(--text-slate);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-nav a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-support p {
  color: var(--text-slate);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.helpline {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-white);
  font-weight: 600;
}

.copyright {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-slate);
  font-weight: 300;
}

/* --- Advanced CSS Scroll-Driven Reveal Animations --- */
@supports (animation-timeline: view()) {
  /* Reveal cards, grids and blocks as they enter the screen */
  .why-box, .destination-card, .package-card, .faq-item, 
  .info-card, .country-info-card, .stat-item, .about-visual, .about-text, .value-item, .team-card, .service-card {
    animation: revealOnScroll both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
  }
  
  @keyframes revealOnScroll {
    from {
      opacity: 0;
      transform: translateY(35px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* =====================================================
   TABLET BREAKPOINT — 992px
   ===================================================== */
@media (max-width: 992px) {
  /* Section heading sizes */
  .section-header h2 {
    font-size: 2.4rem;
  }

  /* Navbar */
  .navbar {
    padding: 16px 5%;
  }

  /* Hero */
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero h1 span {
    font-size: 3.8rem;
  }

  /* About */
  .about, .why-choose, .agency-profile, .services,
  .destinations, .categories-section, .country-info-section,
  .packages, .table-section, .tips-section, .faq-section,
  .contact-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* About stats */
  .about-stats {
    gap: 16px;
  }

  /* Destinations */
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Packages */
  .packages-grid {
    gap: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* About sections */
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  /* Footer */
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================
   MOBILE BREAKPOINT — 768px
   ===================================================== */
@media (max-width: 768px) {

  /* ---- NAVBAR / HAMBURGER ---- */
  .hamburger-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1100;
  }

  .hamburger-label span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(3, 12, 23, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 1050;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  /* Open state */
  .nav-checkbox:checked ~ .nav-menu {
    right: 0;
  }

  /* X animation */
  .nav-checkbox:checked ~ .hamburger-label span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-checkbox:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-checkbox:checked ~ .hamburger-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Nav overlay backdrop when open */
  .nav-checkbox:checked ~ .nav-menu::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    left: -200%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }

  /* ---- HERO ---- */
  .hero {
    padding: 0 5%;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero h1 span {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Sub-hero pages */
  .sub-hero {
    height: 42vh;
    padding: 0 5%;
  }

  .sub-hero h1 {
    font-size: 2.5rem;
  }

  .sub-hero p {
    font-size: 1rem;
  }

  /* ---- SECTION PADDING ---- */
  .about, .why-choose, .agency-profile, .services,
  .destinations, .categories-section, .country-info-section,
  .packages, .table-section, .tips-section, .faq-section {
    padding: 80px 5%;
  }

  .contact-wrapper {
    padding: 80px 5% 50px 5%;
  }

  /* ---- SECTION HEADER ---- */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* ---- ABOUT ---- */
  .about-text h2 {
    font-size: 2.4rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
    padding: 18px 12px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .image-wrapper img {
    height: 300px;
  }

  /* Profile block headings */
  .profile-block h3 {
    font-size: 1.8rem;
  }

  /* VM boxes */
  .vm-box {
    padding: 28px 22px;
  }

  .vm-box h3 {
    font-size: 1.8rem;
  }

  /* Vision/mission grid stacked */
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  /* ---- HORIZONTAL SCROLL CAROUSELS ---- */
  /* Why Choose, Services, Tips, Team, Values, Category, Info-cards, Destinations-grid, Photo-grid, Packages-grid, Country-info-cards-wrapper */
  .why-grid,
  .services-grid,
  .tips-grid,
  .team-grid,
  .values-grid,
  .category-grid,
  .info-cards,
  .destinations-grid,
  .photo-grid,
  .packages-grid,
  .country-info-cards-wrapper {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    gap: 16px !important;
    padding: 10px 5% 24px 5% !important;
    margin-left: -5% !important;
    margin-right: -5% !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar visually */
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: stretch;
  }

  /* Hide webkit scrollbar on carousels */
  .why-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .tips-grid::-webkit-scrollbar,
  .team-grid::-webkit-scrollbar,
  .values-grid::-webkit-scrollbar,
  .category-grid::-webkit-scrollbar,
  .info-cards::-webkit-scrollbar,
  .destinations-grid::-webkit-scrollbar,
  .photo-grid::-webkit-scrollbar,
  .packages-grid::-webkit-scrollbar,
  .country-info-cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  /* Card widths inside carousels */
  .why-box,
  .service-card,
  .tip-card,
  .team-card,
  .value-item,
  .category-box,
  .destination-card,
  .package-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Photo items can be slightly narrower */
  .photo-item {
    flex: 0 0 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    height: 250px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Info cards slightly wider for text readability */
  .country-info-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Info card layout on mobile scroll */
  .country-info-card .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Trailing spacer to show peeking next card */
  .why-grid::after,
  .services-grid::after,
  .tips-grid::after,
  .team-grid::after,
  .values-grid::after,
  .category-grid::after,
  .info-cards::after,
  .destinations-grid::after,
  .photo-grid::after,
  .packages-grid::after,
  .country-info-cards-wrapper::after {
    content: '';
    flex: 0 0 5%;
    display: block;
  }

  /* Destination card height adjust for horizontal display */
  .destination-card {
    height: 420px !important;
  }

  /* Filter tabs wrap */
  .filter-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 6px 4% !important;
    border-radius: 30px;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0 !important;
    padding: 8px 14px;
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  /* ---- COUNTRY INFO ---- */
  .country-info-card {
    padding: 28px 20px;
  }

  .country-info-card h3 {
    font-size: 1.8rem;
  }

  /* ---- PACKAGES ---- */
  .package-card {
    max-width: 100% !important;
    flex: 0 0 310px !important;
    min-width: 310px !important;
    max-width: 310px !important;
  }

  .details-list li {
    font-size: 0.95rem !important;
    padding-left: 28px !important;
    margin-bottom: 12px !important;
  }

  .details-list li::before {
    top: 4px !important;
    width: 16px !important;
    height: 16px !important;
  }

  .details-list li::after {
    left: 5px !important;
    top: 7px !important;
    width: 4px !important;
    height: 7px !important;
  }

  .package-header h3 {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .country-title {
    font-size: 2.2rem;
  }

  /* ---- TOUR TABLE — horizontal scroll ---- */
  .table-section {
    padding: 60px 5%;
  }

  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .tour-table {
    min-width: 640px;
  }

  .tour-table th,
  .tour-table td {
    padding: 14px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* ---- FAQ ---- */
  .faq-item summary {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .faq-item p {
    padding: 0 20px 20px 20px;
    font-size: 0.92rem;
  }

  /* ---- CONTACT ---- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }

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

  .contact-form-panel {
    padding: 28px 20px;
  }

  .contact-form-panel h3 {
    font-size: 1.8rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ---- FOOTER ---- */
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .helpline {
    font-size: 1.4rem;
  }

  .copyright {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ---- LOADER ---- */
  .enix-loader-title {
    font-size: 1.8rem;
  }
}

/* =====================================================
   SMALL PHONE BREAKPOINT — 480px
   ===================================================== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 14px 4%;
  }

  .logo-section h2 {
    font-size: 1.3rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .glow-btn {
    padding: 13px 26px;
    font-size: 0.78rem;
  }

  /* Sub-hero */
  .sub-hero h1 {
    font-size: 2rem;
  }

  .sub-hero p {
    font-size: 0.88rem;
  }

  /* Section headings */
  .section-header h2 {
    font-size: 1.7rem;
  }

  /* Sections padding */
  .about, .why-choose, .agency-profile, .services,
  .destinations, .categories-section, .country-info-section,
  .packages, .table-section, .tips-section, .faq-section {
    padding: 60px 4%;
  }

  .contact-wrapper {
    padding: 60px 4% 40px 4%;
  }

  /* About */
  .about-text h2 {
    font-size: 2rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Gallery */
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-item {
    height: 220px;
  }

  /* Filter tabs — horizontal scroll */
  .filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 8px 4%;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  /* Carousel cards even narrower */
  .why-box,
  .service-card,
  .tip-card,
  .team-card,
  .value-item,
  .category-box,
  .destination-card,
  .photo-item,
  .country-info-card {
    flex: 0 0 230px !important;
    min-width: 230px !important;
    max-width: 230px !important;
  }

  .package-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
  }

  /* Destination cards */
  .destination-card {
    height: 360px;
  }

  /* Packages */
  .package-header {
    padding: 24px 18px;
  }

  .package-details {
    padding: 24px 18px;
  }

  .package-header h3 {
    font-size: 1.4rem;
  }

  .country-title {
    font-size: 1.8rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  /* Country info */
  .country-info-card {
    padding: 22px 16px;
  }

  .country-info-card h3 {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 1rem;
    padding: 16px 16px;
  }

  /* Contact form */
  .contact-form-panel {
    padding: 22px 16px;
  }

  .contact-form-panel h3 {
    font-size: 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }

  .helpline {
    font-size: 1.2rem;
  }
}


/*
============================================================
  ENIX TRAVELS - INTERACTIVE & MOTION DESIGN ENGINE STYLES
============================================================
*/

/* Custom Scroll Progress Bar (Top) */
.enix-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffffff 50%, var(--accent) 100%);
  box-shadow: 0 0 10px var(--accent-glow);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease-out;
  pointer-events: none;
}

/* Custom Cursor Glow (Desktop only) */
.enix-cursor-glow {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.04) 0%, rgba(127, 205, 255, 0.02) 40%, transparent 70%);
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  opacity: 0;
  border-radius: 50%;
}

/* Ripple Click Effect */
.enix-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
  animation: enix-ripple-anim 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes enix-ripple-anim {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.8;
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

/* Noise & Aurora Background Overlays */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  opacity: 0.012;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Animated Floating Aurora Gradient Blobs */
body::after {
  content: '';
  position: fixed;
  top: 15%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ocean-glow-2) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  animation: float-aurora-1 25s infinite ease-in-out alternate;
  filter: blur(80px);
}

.aurora-bg-secondary {
  position: fixed;
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  animation: float-aurora-2 20s infinite ease-in-out alternate;
  filter: blur(80px);
}

@keyframes float-aurora-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15vw, -10vh) scale(1.15); }
  100% { transform: translate(-5vw, 15vh) scale(0.9); }
}

@keyframes float-aurora-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10vw, 10vh) scale(1.2); }
  100% { transform: translate(5vw, -5vh) scale(0.95); }
}

/* Scroll-Triggered Reveal Classes */
.reveal-prep {
  opacity: 0 !important;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-prep.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
}

/* 1. Page Loader Styles */
.enix-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.enix-loader-container.fade-out {
  opacity: 0;
  transform: translateY(-50px);
  pointer-events: none;
}

.enix-loader-content {
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.enix-loader-logo-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px auto;
}

.enix-loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  animation: logo-pulse 2s infinite ease-in-out;
}

.enix-loader-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
  animation: spin-loader 1.5s infinite linear;
}

@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(197, 168, 128, 0.1); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(197, 168, 128, 0.4); }
}

.enix-loader-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.enix-loader-progress-track {
  width: 100%;
  height: 3px;
  background-color: var(--border-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.enix-loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #ffffff 100%);
  box-shadow: 0 0 8px var(--accent-glow);
  transition: width 0.1s ease-out;
}

.enix-loader-percent {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-slate);
  letter-spacing: 1.5px;
}

