/* =========================================
   ROYAL INDIA TRAVELS - STYLE GUIDE
   ========================================= */

:root {
  /* Colors */
  --primary: #87CEEB;
  /* Sky Blue */
  --primary-hover: #00BFFF;
  /* Deep Sky Blue*/
  --secondary: #FF9933;
  /* Saffron */
  --secondary-hover: #E68A2E;
  /* Dark Saffron */
  --dark: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --text-muted: #64748b;
  --gradient-bg: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(135, 206, 235, 0.2) 100%);
  --gradient-overlay: linear-gradient(to right, rgba(135, 206, 235, 0.8), rgba(255, 153, 51, 0.6));

  /* Typography */
  --font-main: 'Poppins', sans-serif;

  /* Spacing & Layout */
  --section-padding: 5rem 0;
  --container-width: 1200px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.7; /* Improved for better readability */
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

ul {
  list-style: none;
}

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

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3; /* Adjusted line height for cleaner headings */
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
}

.bg-gradient {
  background: var(--gradient-bg);
}

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

/* =========================================
   DESTINATIONS PAGE SPECIFIC STYLES (ULTRA PREMIUM)
   ========================================= */

.destinations-header {
  min-height: 550px;
  padding: 100px 0 60px;
  background: url('https://images.unsplash.com/photo-1518349666012-debc1f8a846f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  /* offset navbar */
}

.destinations-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.8));
}

.destinations-header .container {
  position: relative;
  z-index: 2;
  color: var(--white);
  transform: translateY(-20px);
}

.destinations-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.destinations-header p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphic Search Filter */
.glass-filter-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.filter-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-item:last-child {
  border-right: none;
}

.filter-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cbd5e1;
  font-weight: 600;
}

.filter-item strong {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.btn-filter {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-filter:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.bg-light-premium {
  background-color: #f8fafc;
}

.packages-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

/* Premium Card Design */
.package-card-premium {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-badge i {
  color: var(--secondary);
}

.package-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pkg-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.package-card-premium:hover .pkg-img-wrapper img {
  transform: scale(1.1);
}

.pkg-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.pkg-body-premium {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-location {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pkg-title-premium {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease;
}

.package-card-premium:hover .pkg-title-premium {
  color: var(--primary);
}

.pkg-features {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

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

.pkg-footer-premium {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.price-values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.old-price {
  font-size: 0.9rem;
  color: #cbd5e1;
  text-decoration: line-through;
}

.new-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-book {
  background: #f1f5f9;
  color: #0f172a;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.package-card-premium:hover .btn-book {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .glass-filter-bar {
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
  }

  .filter-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
  }

  .filter-item span {
    color: #64748b;
  }

  .filter-item strong {
    color: #0f172a;
  }

  .packages-grid-premium {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ABOUT PAGE SPECIFIC STYLES (ULTRA PREMIUM)
   ========================================= */

.about-header-premium {
  min-height: 500px;
  padding: 100px 0 60px;
  background: url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background-attachment: fixed;
  /* Simple parallax */
}

.about-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.6), rgba(17, 24, 39, 0.8));
}

.about-header-premium .container {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.about-header-premium h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-header-premium p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  color: #f1f5f9;
}

/* Floating Stats Bar */
.stats-bar-premium {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: -60px auto 4rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-item {
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium Story Layout */
.story-section-premium {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-images {
  position: relative;
  height: 600px;
}

.story-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.story-img-secondary {
  width: 60%;
  height: 50%;
  object-fit: cover;
  border-radius: 15px;
  border: 10px solid #f8fafc;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: transform 0.5s ease;
}

.story-images:hover .story-img-secondary {
  transform: translate(-10px, -10px);
}

.exp-badge {
  position: absolute;
  top: -20px;
  right: 10%;
  background: white;
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
  border: 2px solid #f8fafc;
}

.exp-badge span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.exp-badge small {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-content h2::after {
  display: none;
}

.story-content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.mv-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.2));
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mv-card.vision .mv-icon {
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0.2));
  color: var(--secondary);
}

.mv-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.mv-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Premium Team Section */
.team-premium {
  padding: 6rem 0;
  background: linear-gradient(180deg, white 0%, #f8fafc 100%);
}

.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-card-premium {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  margin-top: 60px;
  /* Space for absolute image */
}

.team-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f1f5f9;
  transition: border-color 0.3s ease;
}

.team-card-premium:hover .team-img-wrap img {
  border-color: var(--primary);
}

.team-card-premium h4 {
  font-size: 1.4rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  margin-top: 50px;
  /* Push below image overlap */
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-images {
    height: 500px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-bar-premium {
    grid-template-columns: 1fr;
    margin: 20px 20px 4rem;
    gap: 2rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SERVICES PAGE SPECIFIC STYLES (ULTRA PREMIUM & ANIMATED)
   ========================================= */

.services-header-premium {
  min-height: 550px;
  padding: 100px 0 60px;
  background: url('https://images.unsplash.com/photo-1526485856375-9110812fbf35?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background-attachment: fixed;
  overflow: hidden;
}

.services-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(14, 165, 233, 0.8), rgba(15, 23, 42, 0.9));
  z-index: 1;
}

/* Subtle moving light effect over hero background */
.services-header-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  animation: rotateLight 15s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes rotateLight {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.services-header-premium .container {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.services-header-premium h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
}

.services-header-premium p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: #e2e8f0;
  font-weight: 300;
}

.services-hub {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Background Animated Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

.blob-1 {
  top: 10%;
  left: -10%;
  width: 400px;
  max-width: 100vw;
  height: 400px;
  max-height: 100vw;
  background: rgba(14, 165, 233, 0.3);
}

.blob-2 {
  bottom: 20%;
  right: -5%;
  width: 500px;
  max-width: 100vw;
  height: 500px;
  max-height: 100vw;
  background: rgba(249, 115, 22, 0.2);
  animation-delay: -5s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.service-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

/* 3D Glassmorphic Card Animation */
.service-card-3d {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.service-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.service-card-3d:hover {
  transform: translateY(-15px) rotateX(5deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.service-card-3d:hover::before {
  transform: scaleX(1);
}

.service-icon-glow {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.5s ease;
  z-index: 2;
}

/* Glowing pulse effect behind icon */
.service-icon-glow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: all 0.5s ease;
  transform: scale(0.8);
}

.service-card-3d:hover .service-icon-glow {
  background: var(--primary);
  color: white;
  transform: translateZ(30px);
  /* 3D pop */
}

.service-card-3d:hover .service-icon-glow::after {
  opacity: 0.6;
  transform: scale(1.1);
}

.service-card-3d h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.service-card-3d:hover h3 {
  transform: translateZ(20px);
}

.service-card-3d p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}

.service-card-3d:hover p {
  transform: translateZ(10px);
}

.service-features-animated {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.service-features-animated li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 1rem;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-features-animated li i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Staggered animation on hover */
.service-card-3d:hover .service-features-animated li {
  transform: translateX(0);
  opacity: 1;
}

.service-card-3d:hover .service-features-animated li:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card-3d:hover .service-features-animated li:nth-child(2) {
  transition-delay: 0.2s;
}

.service-card-3d:hover .service-features-animated li:nth-child(3) {
  transition-delay: 0.3s;
}

.service-card-3d:hover .service-features-animated li:nth-child(4) {
  transition-delay: 0.4s;
}

.btn-service-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.btn-service-animated::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.btn-service-animated i {
  transition: transform 0.3s ease;
}

.btn-service-animated:hover::after {
  width: 100%;
}

.btn-service-animated:hover i {
  transform: translateX(5px);
}

/* Feature Showcase Section */
.service-showcase {
  background: #0f172a;
  /* Dark premium background */
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.showcase-content h2 span {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.showcase-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.showcase-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 7s ease;
}

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

.play-btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-btn-pulse::before,
.play-btn-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid white;
  animation: ripple 2s infinite ease-out;
}

.play-btn-pulse::after {
  animation-delay: 1s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-grid-3d {
    grid-template-columns: 1fr;
  }

  .services-header-premium h1 {
    font-size: 2.8rem;
  }
}

/* =========================================
   GALLERY PAGE SPECIFIC STYLES (PREMIUM MASONRY)
   ========================================= */

.gallery-header-premium {
  min-height: 500px;
  padding: 100px 0 60px;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background-attachment: fixed;
  overflow: hidden;
}

.gallery-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
  z-index: 1;
}

.gallery-header-premium h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  z-index: 2;
  position: relative;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-header-premium p {
  font-size: 1.2rem;
  color: #cbd5e1;
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Advanced Masonry Grid */
.masonry-gallery-premium {
  column-count: 2;
  column-gap: 2rem;
  padding: 5rem 0;
  background: #f8fafc;
}

.masonry-item-premium {
  break-inside: avoid;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transform: translateZ(0);
  /* Hardware acceleration */
}

.masonry-item-premium img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

/* Glassmorphic overlay */
.masonry-overlay-premium {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.masonry-overlay-premium::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
  pointer-events: none;
}

.masonry-overlay-premium h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.masonry-overlay-premium p {
  color: #94a3b8;
  font-size: 0.95rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

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

.masonry-item-premium:hover .masonry-overlay-premium {
  opacity: 1;
}

.masonry-item-premium:hover .masonry-overlay-premium::before {
  opacity: 1;
  transform: scale(1);
}

.masonry-item-premium:hover .masonry-overlay-premium h4,
.masonry-item-premium:hover .masonry-overlay-premium p {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .masonry-gallery-premium {
    column-count: 1;
  }
}

/* =========================================
   CONTACT PAGE SPECIFIC STYLES (GLASSMORPHIC)
   ========================================= */
.contact-header-premium {
  min-height: 450px;
  padding: 100px 0 60px;
  background: url('../images/contact-hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background-attachment: fixed;
}

.contact-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

.contact-header-premium .container {
  z-index: 2;
  position: relative;
  color: white;
}

.contact-header-premium h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.contact-header-premium p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-top: 1rem;
}

.contact-section-premium {
  padding: 6rem 0 0;
  margin-bottom: -6rem;
  /* Negative bottom to overlap map */
  background: #f1f5f9;
  position: relative;
  z-index: 10;
}

.contact-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

/* Floating Info Cards */
.contact-info-glass {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card-premium {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(14, 165, 233, 0.1);
}

.info-icon-glow {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--white), #f8fafc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.info-icon-glow::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.info-card-premium:hover .info-icon-glow::after {
  opacity: 0.3;
}

.info-card-premium h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.info-card-premium p {
  color: #64748b;
  line-height: 1.6;
}

/* Glassmorphic Form */
.contact-form-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  position: relative;
}

.contact-form-glass h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #0f172a;
}

.input-group-animated {
  position: relative;
  margin-bottom: 2rem;
}

.input-animated {
  width: 100%;
  padding: 1.2rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #334155;
  transition: all 0.3s ease;
}

.input-animated:focus {
  outline: none;
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.input-animated::placeholder {
  color: #94a3b8;
}

.contact-form-glass .btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 0.8rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .contact-grid-premium {
    grid-template-columns: 1fr;
  }

  .contact-form-glass {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .contact-section-premium {
    padding: 4rem 0 0;
    margin-bottom: -4rem;
  }
  
  .info-card-premium {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-form-glass {
    padding: 1.5rem;
  }
  
  .contact-form-glass h3 {
    font-size: 1.8rem;
  }
}

/* Map specific override to look premium */
.premium-map-container {
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.premium-map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(10%) contrast(110%);
}

/* =========================================
   ACTIVITIES PAGE SPECIFIC STYLES (PREMIUM)
   ========================================= */

.activities-header-premium {
  height: 60vh;
  min-height: 450px;
  background: url('https://images.unsplash.com/photo-1544644181-1484b3fdfc62?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background-attachment: fixed;
  overflow: hidden;
}

.activities-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.95));
  z-index: 1;
}

.activities-header-premium h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: white;
  z-index: 2;
  position: relative;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.activities-header-premium p {
  font-size: 1.25rem;
  color: #e2e8f0;
  z-index: 2;
  position: relative;
  max-width: 650px;
  margin: 1rem auto 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Vibrant Grid Layout matching the screenshot */
.activities-section {
  padding: 6rem 0;
  background: #0f172a;
  /* Dark premium background to make colors pop */
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 350px;
  gap: 1.5rem;
  padding: 1rem;
}

/* 
Targeting specific grid spots to match the asymmetric layout in the screenshot:
Top row: 3 equal cards
Bottom row: 2 unequal cards (one spans 4, one spans 2, or 3/3 depending on screen)
Let's build a dynamic spanning system 
*/

.activity-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: translateZ(0);
  /* Hardware acceleration */
  text-decoration: none;
  display: block;
}

/* Grid spanning rules */
.activity-card:nth-child(1),
.activity-card:nth-child(2),
.activity-card:nth-child(3) {
  grid-column: span 2;
  /* 3 up on top row */
}

.activity-card:nth-child(4) {
  grid-column: span 4;
  /* Wide card */
}

.activity-card:nth-child(5) {
  grid-column: span 2;
  /* Narrower card */
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.85) contrast(1.1) saturate(1.2);
}

/* The gradient overlay that makes the text readable */
.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.1) 60%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  transition: all 0.5s ease;
  z-index: 2;
}

.activity-overlay::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.activity-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.activity-trips {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  /* The vibrant orange from the screenshot */
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

/* Hover effects */
.activity-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

.activity-card:hover .activity-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      transparent 100%);
}

.activity-card:hover .activity-overlay::before {
  opacity: 1;
  transform: scale(1);
}

.activity-card:hover .activity-title,
.activity-card:hover .activity-trips {
  transform: translateY(0);
}

/* Floating Action Button (like the orange arrow in screenshot) */
.fab-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.fab-btn::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px dashed var(--secondary);
  border-radius: 50%;
  animation: spinDot 15s linear infinite;
  opacity: 0.6;
}

@keyframes spinDot {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fab-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
  background: white;
  color: var(--secondary);
}

/* Responsive grid adjustments */
@media (max-width: 1100px) {
  .activities-grid {
    grid-auto-rows: 300px;
  }
}

@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-card:nth-child(1),
  .activity-card:nth-child(2),
  .activity-card:nth-child(3),
  .activity-card:nth-child(4),
  .activity-card:nth-child(5) {
    grid-column: span 1;
    /* Reset all to span 1 in a 2-col grid */
  }

  .activity-card:nth-child(4) {
    grid-column: span 2;
    /* Keep one wide card */
  }
}

@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .activity-card:nth-child(4) {
    grid-column: span 1;
  }

  .activity-title {
    font-size: 2rem;
  }
}

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem; /* Slightly wider padding for premium feel */
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================================
   NAVBAR (Sticky)
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0;
  height: 80px;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 90px;
  transition: height 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineText 3s linear infinite;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 4px;
  opacity: 0.9;
}

@keyframes shineText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.navbar.scrolled .logo img {
  height: 70px !important;
}

.navbar.scrolled .logo-text {
  transform: scale(0.85);
  transform-origin: left center;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-item a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.navbar.scrolled .nav-item a {
  color: var(--dark);
}

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--dark);
}

.navbar.scrolled .hamburger .bar {
  background-color: var(--dark);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.4s ease-in-out;
    justify-content: center;
    padding-top: 80px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
    overflow-y: auto;
  }

  .nav-item {
    margin: 1.5rem 0;
  }

  .nav-item a {
    color: var(--dark);
    font-size: 1.5rem;
  }

  .navbar .logo {
    color: var(--primary);
    z-index: 1001;
  }

  .navbar .hamburger .bar {
    background-color: var(--dark);
  }
}

/* =========================================
   HOME PAGE SPECIFIC STYLES
   ========================================= */

/* Hero Section Modern */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--light);
  padding: 120px 0 60px;
}

/* Abstract Animated Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 1;
  animation: float-ambient 15s infinite alternate ease-in-out;
}

.glow-1 {
  width: 500px;
  max-width: 100vw;
  height: 500px;
  max-height: 100vw;
  background: rgba(135, 206, 235, 0.4);
  top: -10%;
  left: -5%;
}

.glow-2 {
  width: 600px;
  max-width: 100vw;
  height: 600px;
  max-height: 100vw;
  background: rgba(255, 153, 51, 0.3);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.glow-3 {
  width: 400px;
  max-width: 100vw;
  height: 400px;
  max-height: 100vw;
  background: rgba(0, 191, 255, 0.2);
  top: 40%;
  left: 60%;
  animation-duration: 20s;
}

@keyframes float-ambient {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -50px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.hero-grid-modern {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left Content Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  opacity: 0.5;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero-text-modern h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text-modern p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.btn-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--dark);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-glass i {
  margin-right: 8px;
  color: var(--primary);
}

/* Trust Section */
.trust-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.trust-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.trust-logo:hover {
  color: var(--dark);
}

/* Right Content (Glassmorphism & Floating Visuals) */
.hero-visuals-modern {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: absolute;
  overflow: hidden;
}

.main-card {
  width: 400px;
  height: 500px;
  z-index: 2;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.br-lg {
  border-radius: var(--radius-md);
  height: 80%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-info {
  padding: 0 10px;
}

.card-info h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.card-info .rating {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-info .rating i {
  color: #F59E0B;
}

.small-card {
  width: 250px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  top: 10%;
  right: -5%;
  z-index: 3;
}

.icon-wrap {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(135, 206, 235, 0.4);
}

.small-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.small-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.stat-card {
  padding: 20px;
  bottom: 10%;
  left: -10%;
  z-index: 3;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Floating Animations */
.float-anim {
  animation: float 6s ease-in-out infinite;
}

.float-anim-delayed {
  animation: float 7s ease-in-out infinite;
  animation-delay: 1s;
}

.float-anim-fast {
  animation: float 5s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

/* Responsive Adjustments for Hero */
@media (max-width: 992px) {
  .hero-grid-modern {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text-modern p {
    margin: 0 auto 2.5rem;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-visuals-modern {
    height: 500px;
  }

  .main-card {
    width: 350px;
    max-width: 100%;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding-top: 100px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .small-card,
  .stat-card {
    display: none;
  }

  .main-card {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}

/* Nav Right specific */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--secondary);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(135, 206, 235, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.4);
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* Destinations Grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

/* Masonry Layout for Destinations */
.dest-card:nth-child(1) {
  grid-column: span 8;
}

.dest-card:nth-child(2) {
  grid-column: span 4;
}

.dest-card:nth-child(3) {
  grid-column: span 4;
}

.dest-card:nth-child(4) {
  grid-column: span 4;
}

.dest-card:nth-child(5) {
  grid-column: span 4;
}

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

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.dest-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card:hover .dest-info {
  transform: translateY(0);
  opacity: 1;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Testimonials Wrapper */
.testimonial-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative;
  padding: 3rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-slide {
  display: none;
  animation: fadeEffect 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stars {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.client-name {
  color: var(--primary);
  font-weight: 600;
}

.slider-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.slider-btn {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Gallery Preview */
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-header-flex h2 {
  margin-bottom: 0;
}

.section-header-flex h2::after {
  left: 0;
  transform: none;
}

.text-dark {
  color: var(--dark) !important;
}

.border-dark {
  border-color: var(--dark) !important;
}

.border-dark:hover {
  background-color: var(--dark) !important;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
}

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

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

/* Media Queries continued */
@media (max-width: 992px) {
  .dest-grid {
    grid-template-rows: auto;
  }

  .dest-card:nth-child(n) {
    grid-column: span 12;
    height: 300px;
  }

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

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .section-header-flex h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}