/*
 * Empire Travels - Custom Premium Design System
 * Brand Style: Luxury, Modern, Minimal, Elegant
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --navy-deep: #0A2342;
  --navy-light: #16365c;
  --navy-dark: #051325;
  --gold-royal: #C89B3C;
  --gold-light: #E5C158;
  --gold-dark: #A67C2B;
  --white: #FFFFFF;
  --bg-light: #F8F9FA;
  --text-dark: #222222;
  --text-muted: #555555;
  --text-light: #E0E0E0;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #C89B3C, #ebd297, #C89B3C);
  --navy-gradient: linear-gradient(135deg, #0A2342, #051325);
  --overlay-gradient: linear-gradient(to bottom, rgba(10, 35, 66, 0.7), rgba(5, 19, 37, 0.85));
  --card-overlay: linear-gradient(to top, rgba(10, 35, 66, 0.9) 0%, rgba(10, 35, 66, 0) 70%);

  /* Typography */
  --font-headings: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', 'Poppins', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(10, 35, 66, 0.05), 0 4px 6px -2px rgba(10, 35, 66, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(10, 35, 66, 0.1), 0 10px 10px -5px rgba(10, 35, 66, 0.04);
  --shadow-luxury: 0 30px 60px rgba(10, 35, 66, 0.08);
  --shadow-gold: 0 10px 20px rgba(200, 155, 60, 0.2);

  /* Borders */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-round: 30px;
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

/* --- Header Section (Sticky) --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 1.5rem 0;
}

header.transparent {
  background: rgba(10, 35, 66, 0.15);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(10, 35, 66, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

header.scrolled .logo img {
  height: 42px;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-item {
  position: relative;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  cursor: default;
  padding: 0.5rem 0;
  white-space: nowrap;
}

header.scrolled .nav-item {
  color: var(--navy-deep);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold-royal);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
}

.nav-item:hover::after {
  width: 80%;
}

.nav-item:hover {
  color: var(--gold-royal) !important;
}

/* Mobile Menu Toggle button (Non functional but stylized) */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

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

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

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

.hero-video-container video, 
.hero-video-container .hero-slider-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 25s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-container-layout {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
  gap: 4rem;
}

.hero-left-content {
  max-width: 650px;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-royal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-left-content h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-left-content p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-buttons-left {
  display: flex;
  gap: 1.5rem;
}

.hero-right-card {
  max-width: 380px;
  width: 100%;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

.glass-featured-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-luxury), 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.glass-featured-card:hover {
  border-color: rgba(200, 155, 60, 0.4);
  transform: translateY(-5px);
}

.glass-featured-card .card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-royal);
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

.glass-featured-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.glass-featured-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.glass-featured-card .card-link {
  color: var(--gold-royal);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: inline-block;
  cursor: default;
  transition: color 0.3s ease;
}

.glass-featured-card:hover .card-link {
  color: var(--white);
}

/* --- Premium Buttons --- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold), 0 15px 30px rgba(200, 155, 60, 0.3);
  color: var(--navy-dark);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  border: none;
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 35, 66, 0.25);
}

/* --- Floating Statistics Section --- */
.floating-stats-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: -5rem auto 0;
  z-index: 10;
  padding: 0 2rem;
}

.floating-stats {
  background: var(--navy-gradient);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.5rem;
  box-shadow: var(--shadow-luxury);
  text-align: center;
  position: relative;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-royal);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 500;
}

/* --- Section Typography & Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-royal);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--gold-royal);
  margin: 1.5rem auto 0;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Featured Destinations --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 480px;
  box-shadow: var(--shadow-md);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--navy-deep);
}

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

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-overlay);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: all 0.5s ease;
}

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

.destination-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-royal);
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.destination-name {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.destination-card .btn-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}

.destination-card .btn-link span.arrow {
  transition: transform 0.4s ease;
}

.destination-card:hover .btn-link span.arrow {
  transform: translateX(6px);
  color: var(--gold-royal);
}

.destination-card:hover .btn-link {
  color: var(--gold-royal);
}

/* --- Why Choose Us Section --- */
.why-choose {
  background-color: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose .section-title {
  color: var(--white);
}

.why-choose .section-desc {
  color: var(--text-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 155, 60, 0.3);
  transform: translateY(-5px);
}

.why-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon-container {
  background: var(--gold-gradient);
  transform: rotateY(180deg);
}

.why-icon-container svg {
  width: 36px;
  height: 36px;
  fill: var(--gold-royal);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon-container svg {
  fill: var(--navy-deep);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- Luxury Experiences (Alternating layouts) --- */
.experience-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 8rem;
}

.experience-row:last-child {
  margin-bottom: 0;
}

.experience-row:nth-child(even) {
  flex-direction: row-reverse;
}

.experience-img-wrapper {
  flex: 1.1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  height: 500px;
}

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

.experience-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(10, 35, 66, 0.15);
  pointer-events: none;
}

.experience-row:hover .experience-img {
  transform: scale(1.05);
}

.experience-content {
  flex: 0.9;
}

.experience-content .tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-royal);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
}

.experience-content h3 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.experience-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.exp-feat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.exp-feat-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-royal);
}

/* --- Popular Tour Categories --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 35, 66, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: all 0.4s ease;
}

.category-card:hover .category-icon {
  background: var(--gold-gradient);
}

.category-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--navy-deep);
  transition: all 0.4s ease;
}

.category-card:hover .category-icon svg {
  fill: var(--navy-deep);
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(200, 155, 60, 0.15);
}

/* --- Customer Testimonials --- */
.testimonials {
  background: radial-gradient(circle at 10% 20%, rgba(10, 35, 66, 0.05) 0%, rgba(255, 255, 255, 0) 90%);
  position: relative;
  overflow: hidden;
}

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

.testimonials-carousel {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
}

.quote-icon {
  font-family: var(--font-headings);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-royal);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 3rem;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-royal);
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy-deep);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 35, 66, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold-royal);
  width: 24px;
  border-radius: 4px;
}

/* --- Large Video Section --- */
.video-section {
  position: relative;
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 10rem 0;
  overflow: hidden;
}

.video-section-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.35;
  z-index: 1;
}

.video-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.8), rgba(5, 19, 37, 0.95));
  z-index: 2;
}

.video-section .container {
  position: relative;
  z-index: 3;
}

.video-player-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16/9;
  background: #000;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.video-player-container:hover .video-thumbnail {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-royal);
  border-radius: 50%;
  animation: ripple 2s infinite ease-out;
  pointer-events: none;
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--navy-deep);
  margin-left: 5px;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(200, 155, 60, 0.6);
}

/* Modal Video Player Lightbox */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 19, 37, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.video-lightbox-content {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.video-lightbox-content iframe,
.video-lightbox-content video {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.video-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-close:hover {
  color: var(--gold-royal);
}

/* --- Numbers Section --- */
.numbers-section {
  background-color: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(10, 35, 66, 0.05);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-card {
  padding: 1.5rem;
}

.number-val {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.number-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-royal);
  font-weight: 600;
}

/* --- Travel Gallery (Masonry style using CSS columns or grid) --- */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--navy-deep);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.8) 0%, rgba(10, 35, 66, 0.1) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-dest {
  font-family: var(--font-headings);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

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

.gallery-country {
  color: var(--gold-royal);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

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

/* --- Awards & Trust (Partners logos) --- */
.partners-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.partner-logo {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #a0abb6;
  transition: all 0.4s ease;
  user-select: none;
}

.partner-logo:hover {
  color: var(--gold-royal);
  transform: scale(1.05);
}

/* --- Instagram Style Gallery --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 35, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  z-index: 2;
}

.insta-overlay svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

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

.insta-item:hover .insta-overlay svg {
  transform: scale(1);
}

/* --- Travel Blogs Preview --- */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-royal);
  margin-bottom: 1rem;
}

.blog-date {
  color: var(--text-muted);
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--navy-deep);
}

.blog-card .btn-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}

.blog-card:hover .btn-link {
  color: var(--gold-royal);
}

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

/* --- Call To Action Section (CTA) --- */
.cta-section {
  position: relative;
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 10rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(10, 35, 66, 0.75) 0%, rgba(5, 19, 37, 0.95) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cta-tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-royal);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.cta-content h2 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* --- Footer --- */
footer {
  background-color: var(--navy-dark);
  color: var(--text-light);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--gold-royal);
  margin-top: 0.8rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  color: #a0abb6;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  cursor: default;
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: var(--gold-royal);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a0abb6;
  cursor: default;
}

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

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: #a0abb6;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-royal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #718096;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  cursor: default;
}

.footer-bottom-links a:hover {
  color: var(--gold-royal);
}

/* --- Scroll Animations & Effects --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Image Reveal Effect */
.image-reveal-wrapper {
  position: relative;
  overflow: hidden;
}

.image-reveal-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-deep);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: scaleX(1);
  transform-origin: left;
  z-index: 5;
}

.image-reveal-wrapper.reveal-visible::after {
  transform: scaleX(0);
}

/* --- Floating Keyframes --- */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

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

/* --- Responsive Styles (Desktop First) --- */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  .experience-row {
    gap: 4rem;
  }
  .destinations-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  .section-padding {
    padding: 6rem 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 8rem 0 4rem;
  }
  .hero-container-layout {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    padding-top: 2rem;
  }
  .hero-left-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-left-content h1 {
    font-size: 3.8rem;
  }
  .hero-buttons-left {
    justify-content: center;
  }
  .hero-right-card {
    max-width: 480px;
  }
  .floating-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .experience-row {
    flex-direction: column !important;
    gap: 2.5rem;
    margin-bottom: 6rem;
  }
  .experience-img-wrapper {
    height: 380px;
    width: 100%;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry {
    columns: 2;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-left-content h1 {
    font-size: 3rem;
  }
  .hero-left-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .hero-buttons-left {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .hero-buttons-left .btn {
    width: 100%;
    max-width: 280px;
  }
  .floating-stats-wrapper {
    margin-top: -3rem;
  }
  .floating-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-item::after {
    display: none !important;
  }
  .section-title {
    font-size: 2.3rem;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .gallery-masonry {
    columns: 1;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-content h2 {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
