/* 
   =========================================
   ARJUN ROKA CHHETRI - TRAVEL PORTFOLIO
   Theme: Modern Cinematic Adventure
   Colors: Dark Mode (#050505) & Neon Cyan (#00E5FF)
   =========================================
*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #00E5FF;
  --primary-glow: rgba(0, 229, 255, 0.4);
  --primary-glow-subtle: rgba(0, 229, 255, 0.1);
  --bg-dark: #050505;
  --bg-card: rgba(18, 18, 18, 0.65);
  --bg-nav: rgba(5, 5, 5, 0.8);
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 229, 255, 0.2);
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-secondary);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 2px solid var(--bg-dark);
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--primary-color), 0 0 20px var(--primary-color);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--primary-glow-subtle);
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor Hover States */
.cursor-hover {
  width: 16px;
  height: 16px;
  background: var(--text-white);
  box-shadow: 0 0 15px #fff;
}

.cursor-outline-hover {
  width: 55px;
  height: 55px;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Page Loader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.loader-logo span {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-glow);
}

.loader-bar-container {
  width: 250px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  animation: loadProgress 2.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #00B0FF);
  z-index: 9991;
  box-shadow: 0 0 10px var(--primary-color);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-white);
  letter-spacing: 1px;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 0 25px var(--primary-glow), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--bg-dark);
  border-color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Glassmorphism Card Style */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.05), 0 0 20px var(--primary-glow-subtle);
}

/* =========================================
   1. NAVIGATION HEADER
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
  color: var(--text-white);
}

.navbar-brand span {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-glow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
  transition: var(--transition-smooth);
}

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

.nav-socials {
  display: flex;
  align-items: center;
  margin-left: 40px;
  gap: 15px;
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
}

.nav-social-link {
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-social-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  text-shadow: 0 0 10px var(--primary-color);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary-color);
}

/* =========================================
   2. HERO VIDEO & IMAGE SLIDER
   ========================================= */
.hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.95));
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  text-align: center;
  z-index: 2;
  padding: 0 30px;
}

.hero-tag {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .hero-tag {
  animation: slideInUp 0.8s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .hero-title {
  animation: slideInUp 0.8s 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .hero-desc {
  animation: slideInUp 0.8s 0.7s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .hero-actions {
  animation: slideInUp 0.8s 0.9s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Slider Controls */
.hero-slider-prev,
.hero-slider-next {
  width: 55px !important;
  height: 55px !important;
  border: 1px solid var(--border-color) !important;
  background: rgba(5, 5, 5, 0.4) !important;
  border-radius: 50% !important;
  color: var(--text-white) !important;
  transition: var(--transition-smooth) !important;
  backdrop-filter: blur(5px);
}

.hero-slider-prev::after,
.hero-slider-next::after {
  font-size: 1.1rem !important;
  font-weight: bold;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 0 15px var(--primary-glow) !important;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
}

.scroll-indicator span {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0; }
  100% { top: 8px; opacity: 0; }
}

/* =========================================
   3. ABOUT SECTION ("Meet Arjun")
   ========================================= */
.about {
  background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(10,10,10,1) 100%);
}

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

/* About Left - Image */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 229, 255, 0.15) 0%, rgba(5,5,5,0) 60%);
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.8s ease-out;
}

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

.about-image-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px var(--primary-glow);
  z-index: 0;
  pointer-events: none;
}

.about-image-wrapper:hover .about-image-glow {
  opacity: 0.8;
}

/* About Right - Content */
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-title span {
  color: var(--primary-color);
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Highlights Grid */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: rgba(0, 229, 255, 0.03);
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-val {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
}

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

/* =========================================
   4. COUNTRIES EXPLORED SECTION
   ========================================= */
.countries {
  background: var(--bg-dark);
}

.countries-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Interactive Map Hub Layout */
.interactive-map-hub {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

/* Custom Vector Map Design */
.map-visualizer {
  position: relative;
  width: 100%;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, rgba(5,5,5,0.2) 70%);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.map-visualizer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

/* Custom Leaflet Marker Styling */
.custom-map-marker {
  background: transparent;
  border: none;
}

.map-pin-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-pin-marker .pin-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color);
  transition: var(--transition-smooth);
}

.map-pin-marker .pin-pulse {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 1;
  animation: pinPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-pin-marker .pin-marker-label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 24px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  color: #fff;
  transition: var(--transition-smooth);
  position: absolute;
  pointer-events: none;
}

/* Active / Hover Marker State */
.custom-map-marker.active-marker .pin-dot,
.custom-map-marker:hover .pin-dot {
  background-color: #fff;
  box-shadow: 0 0 20px #fff, 0 0 30px var(--primary-color);
  transform: scale(1.3);
}

.custom-map-marker.active-marker .pin-marker-label,
.custom-map-marker:hover .pin-marker-label {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow-subtle);
}

/* Leaflet Map UI Dark-theme overrides */
.leaflet-container {
  font-family: var(--font-secondary) !important;
}

.leaflet-bar {
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4) !important;
}

.leaflet-bar a {
  background-color: var(--bg-card) !important;
  color: var(--text-white) !important;
  border-bottom: 1px solid var(--border-color) !important;
  transition: var(--transition-fast) !important;
}

.leaflet-bar a:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-dark) !important;
}

/* Map Info Panel */
.map-info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.country-details-box {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.country-details-box.active {
  display: block;
}

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

.country-badge {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.country-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.country-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.country-highlights-list {
  list-style: none;
}

.country-highlights-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.country-highlights-list li i {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-shadow: 0 0 8px var(--primary-glow);
}

/* Slider Layout of Country Cards */
.countries-slider-container {
  position: relative;
  padding: 20px 0 60px 0;
}

.countries-slider {
  width: 100%;
  overflow: hidden;
}

.country-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  cursor: grab;
  transition: var(--transition-smooth);
}

.country-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.country-card:hover .country-card-bg {
  transform: scale(1.08);
}

.country-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 60%, rgba(5, 5, 5, 0) 100%);
  z-index: 1;
}

.country-card-info-box {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 30px;
  border-radius: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 75%;
}

.country-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
}

.country-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.15), 0 0 20px var(--primary-glow-subtle);
  transform: translateY(-8px);
}

.country-card:hover .country-card-info-box {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow-subtle);
}

.country-card:hover .country-card-title {
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-glow);
}

/* Scrollbar for Countries Slider */
.countries-scrollbar {
  position: absolute !important;
  bottom: 0px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 250px !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px !important;
  border: 1px solid var(--border-color) !important;
  cursor: pointer;
  z-index: 10;
}

.countries-scrollbar .swiper-scrollbar-drag {
  background: var(--primary-color) !important;
  box-shadow: 0 0 10px var(--primary-color) !important;
  height: 100% !important;
  border-radius: 4px !important;
}

/* =========================================
   5. FEATURED DESTINATIONS SLIDER
   ========================================= */
.featured {
  background: linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(5,5,5,1) 100%);
}

.featured-slider-container {
  position: relative;
  padding: 20px 0 60px 0;
}

.featured-slider {
  overflow: visible !important; /* Allow cards to peek/shadows to overflow */
}

.destination-card {
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
  cursor: grab;
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.destination-card:hover .destination-image {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.2) 60%, rgba(5, 5, 5, 0) 100%);
  z-index: 1;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.destination-country {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.destination-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.destination-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1), 0 0 20px var(--primary-glow-subtle);
  transform: translateY(-8px);
}

.destination-card:hover .destination-name {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

/* Swiper Pagination/Scrollbar Details */
.featured-pagination {
  display: none !important;
}

.featured-scrollbar {
  position: absolute !important;
  bottom: 0px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 250px !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px !important;
  border: 1px solid var(--border-color) !important;
  cursor: pointer;
}

.featured-scrollbar .swiper-scrollbar-drag {
  background: var(--primary-color) !important;
  box-shadow: 0 0 10px var(--primary-color) !important;
  height: 100% !important;
  border-radius: 4px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: var(--transition-smooth) !important;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  width: 28px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 10px var(--primary-color) !important;
}

/* =========================================
   6. JOURNEY TIMELINE
   ========================================= */
.timeline {
  background: var(--bg-dark);
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* The Vertical Line */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--border-color) 80%);
  opacity: 0.3;
}

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

/* Left & Right Alternating Items */
.timeline-item-left {
  left: 0;
  text-align: right;
}

.timeline-item-right {
  left: 50%;
  text-align: left;
}

/* The Timeline Indicator Nodes */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--bg-dark);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  border-radius: 50%;
  top: 28px;
  z-index: 1;
}

.timeline-item-left::after {
  right: -8px;
}

.timeline-item-right::after {
  left: -8px;
}

/* Timeline Content Cards */
.timeline-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-card {
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.05), 0 0 15px var(--primary-glow-subtle);
  transform: translateY(-5px);
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
  margin-bottom: 10px;
  display: block;
}

.timeline-event {
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================
   7. TRAVEL STATISTICS
   ========================================= */
.stats {
  background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(10,10,10,1) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: var(--border-color);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-glow);
  margin-bottom: 10px;
  line-height: 1;
}

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

.stat-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* =========================================
   8. PHOTO GALLERY (Masonry Grid)
   ========================================= */
.gallery {
  background: var(--bg-dark);
}

/* Masonry Columns */
.gallery-masonry {
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-info {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-info i {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
  margin-bottom: 10px;
}

.gallery-caption {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  display: block;
}

.gallery-country {
  font-size: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Hover */
.gallery-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

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

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

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10005;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  animation: lightboxScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.2rem;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 20px;
  user-select: none;
}

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

.lightbox-nav:hover {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-color);
}

/* =========================================
   9. VIDEO STORIES SECTION
   ========================================= */
.videos {
  background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(10,10,10,1) 100%);
}

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

.video-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.video-thumbnail-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.video-card:hover .video-thumbnail-player {
  transform: scale(1.05);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.3) 60%, rgba(5, 5, 5, 0) 100%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glowing Play Button */
.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(5, 5, 5, 0.6);
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  z-index: 2;
  box-shadow: 0 0 15px var(--primary-glow-subtle);
  position: relative;
}

.play-btn i {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-left: 4px;
  transition: var(--transition-smooth);
  text-shadow: 0 0 8px var(--primary-glow);
}

.video-card:hover .play-btn {
  background: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: scale(1.1);
}

.video-card:hover .play-btn i {
  color: var(--bg-dark);
  text-shadow: none;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.video-category {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  display: block;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.15);
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10006;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.2rem;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

/* =========================================
   10. TESTIMONIALS SLIDER
   ========================================= */
.testimonials {
  background: var(--bg-dark);
}

.testimonials-slider-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 60px 0;
}

.testimonial-card {
  text-align: center;
  padding: 40px 60px;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-glow-subtle);
  margin-bottom: 30px;
  display: inline-block;
  text-shadow: 0 0 10px var(--primary-glow);
}

.testimonial-text {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-white);
  margin-bottom: 30px;
}

.testimonial-author {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-glow);
}

/* =========================================
   11. TRAVEL JOURNAL (Blog Section)
   ========================================= */
.blog {
  background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(10,10,10,1) 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

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

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

.blog-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(5, 5, 5, 0.85);
  border: 1.5px solid var(--primary-color);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow-subtle);
}

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.blog-card-link i {
  transition: transform 0.2s ease;
}

.blog-card-link:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

.blog-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.08), 0 0 15px var(--primary-glow-subtle);
  transform: translateY(-8px);
}

/* =========================================
   12. CONTACT SECTION & FOOTER
   ========================================= */
.contact {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.contact-heading span {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.contact-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-detail-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: scale(1.05);
}

.contact-detail-label {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 18px 25px;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow-subtle);
  background: rgba(18, 18, 18, 0.85);
}

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

.submit-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 0 10px var(--primary-glow-subtle);
}

.submit-btn:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 0 25px var(--primary-glow);
}

/* Footer Section */
.footer {
  background: #030303;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.footer-text {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-3px);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-copy a:hover {
  color: var(--text-white) !important;
  text-shadow: 0 0 10px var(--primary-color) !important;
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */

@media (max-width: 1100px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gallery-masonry {
    column-count: 3;
  }

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

@media (max-width: 900px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .navbar .container {
    height: 70px;
  }
  
  /* Mobile Navigation Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 50px;
    transition: var(--transition-smooth);
    z-index: 10000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 20px 0;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }
  
  .nav-socials {
    margin-left: 0;
    margin-top: 40px;
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
    justify-content: flex-start;
  }
  
  /* Timeline Responsive */
  .timeline-wrapper::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item-right {
    left: 0;
  }
  
  .timeline-item::after {
    left: 12px !important;
  }
  
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stat-item::after {
    display: none;
  }
  
  /* Video Grid & Countries Grid */
  .video-grid,
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .interactive-map-hub {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .map-visualizer {
    height: 280px;
  }
  
  .gallery-masonry {
    column-count: 2;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 70px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .btn {
    width: 100%;
    margin: 10px 0 !important;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .gallery-masonry {
    column-count: 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
