:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --text: #182026;
  --muted: #ffffff;
  --primary: #0b7a75;
  --primary-strong: #085f5b;
  --accent: #f39c3d;
  --line: #dde3e8;
  --shadow: 0 14px 34px rgba(24, 32, 38, 0.09);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% -10%, #e7f2ef 0%, var(--bg) 45%) no-repeat;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.container {
  width: min(1140px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(24, 32, 38, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  font: 700 1.35rem/1 "Cormorant Garamond", serif;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2px;
}

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

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-strong);
  box-shadow: 0 10px 22px rgba(8, 95, 91, 0.24);
}

.btn-outline {
  background: transparent;
  border-color: white;
  color:white;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-v2 {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Sync background color with slide changes */
  animation: hero-theme-cycle 24s steps(1) infinite;
}

@keyframes hero-theme-cycle {
  0%, 16.65%, 83.34%, 100% { background: #0b2e2d; } /* Slide 1 & 6 (Green) */
  16.66%, 33.32% { background: #0c1a2b; } /* Slide 2 (Blue/Mountain) */
  33.33%, 49.99% { background: #2b1f0c; } /* Slide 3 (Temple/Gold) */
  50%, 66.65% { background: #1a232e; } /* Slide 4 (Iceland/Snowy) */
  66.66%, 83.33% { background: #2b140c; } /* Slide 5 (Autumn forest) */
}

.hero-v2::before,
.hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: all 1s ease-in-out;
}

.hero-v2::before {
  z-index: 0;
  animation: 
    hero-gradient-drift 16s ease-in-out infinite alternate,
    hero-glow-cycle 24s steps(1) infinite;
  filter: blur(12px);
}

@keyframes hero-glow-cycle {
  0%, 16.65%, 83.34%, 100% { 
    background: radial-gradient(ellipse at 20% 88%, rgba(20, 184, 166, 0.4), transparent 46%); 
  }
  16.66%, 33.32% { 
    background: radial-gradient(ellipse at 20% 88%, rgba(20, 110, 184, 0.4), transparent 46%); 
  }
  33.33%, 49.99% { 
    background: radial-gradient(ellipse at 20% 88%, rgba(184, 140, 20, 0.4), transparent 46%); 
  }
  50%, 66.65% { 
    background: radial-gradient(ellipse at 20% 88%, rgba(255, 255, 255, 0.2), transparent 46%); 
  }
  66.66%, 83.33% { 
    background: radial-gradient(ellipse at 20% 88%, rgba(184, 76, 20, 0.4), transparent 46%); 
  }
}

.hero-v2::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 12% 82%, rgba(172, 167, 167, 0.3) 0 14px, transparent 15px),
    radial-gradient(ellipse at 26% 90%, rgba(170, 214, 183, 0.1) 0 18px, transparent 19px),
    radial-gradient(ellipse at 42% 84%, rgba(151, 146, 146, 0.2) 0 12px, transparent 13px),
    radial-gradient(ellipse at 58% 92%, rgba(194, 226, 174, 0.1) 0 16px, transparent 17px),
    radial-gradient(ellipse at 74% 86%, rgba(141, 132, 132, 0.2) 0 13px, transparent 14px),
    radial-gradient(ellipse at 90% 90%, rgba(161, 206, 165, 0.1) 0 17px, transparent 18px);
  opacity: 0.3;
  filter: blur(0.2px);
  animation: hero-nature-drift 20s ease-in-out infinite;
}

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

.hero-v2-content {
  z-index: 5;
}

.hero-v2-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.1;
}

.hero-v2-content .lead {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Right Side: Visuals */
.hero-v2-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1.04;
  isolation: isolate;
  filter: drop-shadow(0 26px 56px rgba(11, 122, 117, 0.24));
}

.blob-wrapper::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  background:
    radial-gradient(circle at 22% 28%, rgba(11, 122, 117, 0.36), transparent 56%),
    radial-gradient(circle at 84% 76%, rgba(243, 156, 61, 0.3), transparent 54%);
  filter: blur(20px);
  animation: aura-drift 11s ease-in-out infinite;
}

/* .blob-wrapper::after {
  content: "";
  position: absolute;
  inset: -8px;
  padding: 6px;
  background: conic-gradient(from 210deg,
      #0f8d87 0deg,
      #f2a647 105deg,
      #4a9f78 220deg,
      #0f8d87 360deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  animation: blob-border-morph 10s ease-in-out infinite, ring-spin 16s linear infinite;
  z-index: 1;
} */

.slideshow {
  position: relative;
  width:650px;
  height:650px;
  background: #dfe8ec;
  overflow: hidden;
  z-index: 2;
  border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  animation: blob-border-morph 10s ease-in-out infinite;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 -22px 40px rgba(7, 34, 39, 0.18);
}

.slide {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  /* Fallback color */
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slide-cut 24s steps(1, end) infinite;
  will-change: opacity;
}

.slide:nth-child(1) { opacity: 1; z-index: 6; animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; z-index: 5; }
.slide:nth-child(3) { animation-delay: 8s; z-index: 4; }
.slide:nth-child(4) { animation-delay: 12s; z-index: 3; }
.slide:nth-child(5) { animation-delay: 16s; z-index: 2; }
.slide:nth-child(6) { animation-delay: 20s; z-index: 1; }

/* Glitch Effect: RGB Split */
/* .glitch {
  position: relative;
} */

.glitch::before,
.glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}

.glitch::before {
  background-color: rgba(255, 0, 0, 0.2);
  background-blend-mode: multiply;
  z-index: 10;
  animation: glitch-flash-a 12s linear infinite;
}

.glitch::after {
  background-color: rgba(0, 255, 255, 0.2);
  background-blend-mode: multiply;
  z-index: 11;
  animation: glitch-flash-b 12s linear infinite;
}

.slide:nth-child(1)::before, .slide:nth-child(1)::after { animation-delay: 0s; }
.slide:nth-child(2)::before, .slide:nth-child(2)::after { animation-delay: 4s; }
.slide:nth-child(3)::before, .slide:nth-child(3)::after { animation-delay: 8s; }
.slide:nth-child(4)::before, .slide:nth-child(4)::after { animation-delay: 12s; }
.slide:nth-child(5)::before, .slide:nth-child(5)::after { animation-delay: 16s; }
.slide:nth-child(6)::before, .slide:nth-child(6)::after { animation-delay: 20s; }

/* Scanlines */
.scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.15) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 20;
}

.scanlines::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 0, 0, 0.03),
      rgba(0, 255, 0, 0.01),
      rgba(0, 0, 255, 0.03));
  background-size: 3px 100%;
}

/* Animations */
@keyframes blob-border-morph {
  0% {
    border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  }

  33% {
    border-radius: 58% 42% 50% 50% / 45% 58% 42% 55%;
  }

  66% {
    border-radius: 42% 58% 44% 56% / 62% 40% 60% 38%;
  }

  100% {
    border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  }
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes aura-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(10px, -12px) scale(1.03);
  }
}

@keyframes hero-gradient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.02);
  }

  100% {
    transform: translate3d(-6px, 6px, 0) scale(1.01);
  }
}

@keyframes hero-nature-drift {
  0% {
    transform: translate3d(0, 10px, 0);
  }

  50% {
    transform: translate3d(-8px, -8px, 0);
  }

  100% {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes slide-cut {
  0%, 16.65% { opacity: 1; }
  16.66%, 100% { opacity: 0; }
}

@keyframes glitch-flash-a {
  0%, 14.2% { opacity: 0; transform: translateX(0) skew(0deg); clip-path: inset(0 0 0 0); }
  14.5% { opacity: 1; transform: translateX(-35px) skew(20deg); clip-path: inset(10% 0 70% 0); filter: hue-rotate(90deg); }
  15% { opacity: 0.8; transform: translateX(30px) skew(-10deg); clip-path: inset(60% 0 5% 0); filter: hue-rotate(-90deg); }
  15.5% { opacity: 1; transform: translateX(-25px) skew(5deg); clip-path: inset(30% 0 40% 0); }
  16.2% { opacity: 0.9; transform: translateX(15px); clip-path: inset(80% 0 0% 0); }
  16.66%, 100% { opacity: 0; transform: translateX(0) skew(0deg); clip-path: inset(0 0 0 0); }
}

@keyframes glitch-flash-b {
  0%, 14.2% { opacity: 0; transform: translateX(0) scale(1); clip-path: inset(0 0 0 0); }
  14.8% { opacity: 1; transform: translateX(35px) scale(1.1); clip-path: inset(75% 0 5% 0); filter: brightness(2) contrast(2); }
  15.3% { opacity: 0.8; transform: translateX(-30px) scale(0.9); clip-path: inset(5% 0 75% 0); }
  15.8% { opacity: 1; transform: translateX(25px); clip-path: inset(45% 0 35% 0); }
  16.4% { opacity: 0.7; transform: translateX(-15px); clip-path: inset(12% 0 62% 0); }
  16.66%, 100% { opacity: 0; transform: translateX(0) scale(1); clip-path: inset(0 0 0 0); }
}

/* Metrics Update */
.hero-v2-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
.hero-v2-metrics article{
  padding: 10px;
  border: none !important;
}
.hero-v2-metrics article h3 {
  font-size: 2rem;
  color: white;
  margin: 0;
}

.hero-v2-metrics article p {
  color:white;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-v2-content {
    order: 2;
  }

  .hero-v2-visual {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-v2-metrics {
    justify-content: center;
  }
}


.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

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

.destination-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.2) 0%, 
    rgba(0, 0, 0, 0.5) 40%, 
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1; /* Above image, below content */
}

.destination-card>* {
  position: relative;
  z-index: 2; /* Content above overlay */
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-card p {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.d1 {
  background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d2 {
  background: url("https://images.unsplash.com/photo-1492571350019-22de08371fd3?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d3 {
  background: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d4 {
  background: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d5 {
  background: url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d6 {
  background: url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d7 {
  background: url("https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d8 {
  background: url("https://images.unsplash.com/photo-1552832230-c0197dd311b5?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.d9 {
  background: url("https://images.unsplash.com/photo-1572252009286-268acec5ca0a?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

/* Flip Card Effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  aspect-ratio: 4/3;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius);
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.flip-card-back h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.flip-card-back p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background: white;
  color: var(--primary);
}

.btn-sm:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(243, 156, 61, 0.3);
}

/* .section-tinted {
  background:
    linear-gradient(180deg, rgba(231, 242, 239, 0.4), rgba(243, 233, 219, 0.45)),
    #fdfbf8;
  border-block: 1px solid var(--line);
} */

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(11, 122, 117, 0.1);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(11, 122, 117, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 122, 117, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 400ms ease;
  animation: float 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

@keyframes float {

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

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

.feature-grid h3 {
  margin: 0.4rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  perspective: 1000px; /* For 3D effects */
}

/* Base modern card styling */
.card.quote {
  position: relative;
  border: 1px solid rgba(11, 122, 117, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: none; /* Removing old style */
}

/* Background accent that moves on hover */
.card.quote::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--accent), transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.8s ease;
  z-index: -1;
}

/* Custom quote icon */
.card.quote::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: serif;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.1;
  transition: all 0.5s ease;
}

.card.quote:hover {
  transform: translateY(-15px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 40px 80px rgba(11, 122, 117, 0.15);
  border-color: var(--primary);
  background: #ffffff;
}

.card.quote:hover::before {
  opacity: 0.05;
  transform: scale(1) translate(10%, 10%);
}

.card.quote:hover::after {
  opacity: 0.3;
  transform: translateY(10px) rotate(10deg);
}

.card.quote p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.card.quote h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

/* Staggered reveal for grid items */
.testimonial-grid article:nth-child(1) { transition-delay: 0.1s; }
.testimonial-grid article:nth-child(2) { transition-delay: 0.25s; }
.testimonial-grid article:nth-child(3) { transition-delay: 0.4s; }

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cta {
  padding: 4rem 0 4.7rem;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid #268a76;
  /* background:
    radial-gradient(circle at 88% 12%, rgba(243, 156, 61, 0.35), transparent 29%),
    #fffaf2; */
}

.cta-inner p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cta-form input {
  min-width: 220px;
  flex: 1;
  padding: 0.78rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #ced6dd;
  font: inherit;
}

.cta-form input:focus {
  outline: 2px solid rgba(11, 122, 117, 0.23);
  border-color: var(--primary);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  /* background: #faf9f5; */
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@keyframes hero-base-shift {

  0%,
  100% {
    transform: translate(0, 0) scale(1.02);
  }

  40% {
    transform: translate(2px, -2px) scale(1.03);
  }

  74% {
    transform: translate(-3px, 1px) scale(1.02);
  }
}

@keyframes hero-glitch {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate(0, 0) scale(1.02);
  }

  8% {
    opacity: 0.9;
    clip-path: inset(5% 0 62% 0);
    transform: translate(-10px, 2px) scale(1.03);
  }

  22% {
    clip-path: inset(64% 0 12% 0);
    transform: translate(8px, -3px) scale(1.03);
  }

  38% {
    clip-path: inset(22% 0 41% 0);
    transform: translate(-7px, 2px) scale(1.02);
  }

  55% {
    opacity: 0.85;
    clip-path: inset(72% 0 7% 0);
    transform: translate(9px, 3px) scale(1.03);
  }

  72% {
    clip-path: inset(0 0 0 0);
    transform: translate(-5px, -2px) scale(1.02);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero.glitching::before,
  .hero.glitching::after {
    animation: none;
  }
}

@media (max-width: 980px) {

  .destination-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }
}/* --- PREMIUM DARK & GLASS THEME --- */
:root {
  --bg: #060b10;
  --surface: rgba(255, 255, 255, 0.05);
  --text: #e0f2f1;
  --muted: #94a3b8;
  --primary: #14b8a6;
  --accent: #f59e0b;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

body {
  background: radial-gradient(circle at 50% 0%, #0c1a2b 0%, var(--bg) 70%) no-repeat;
  color: var(--text);
}

.site-header {
  background: rgba(6, 11, 16, 0); /* Fallback */
  border-bottom: 1px solid var(--glass-border);
  animation: header-theme-cycle 24s steps(1) infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes header-theme-cycle {
  0%, 16.65%, 83.34%, 100% { background: rgba(11, 46, 45, 0.4); } /* Green Theme Header */
  16.66%, 33.32% { background: rgba(12, 26, 43, 0.4); } /* Blue Theme Header */
  33.33%, 49.99% { background: rgba(43, 31, 12, 0.4); } /* Gold Theme Header */
  50%, 66.65% { background: rgba(26, 35, 46, 0.4); } /* Snowy Theme Header */
  66.66%, 83.33% { background: rgba(43, 20, 12, 0.4); } /* Autumn Theme Header */
}

.nav-links a, .footer-links a, .brand {
  color: var(--text) !important;
}

/* Glassmorphism for all cards */
.card, .category-card, .feature-card, .hero-metrics article {
  background: var(--glass) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.card:hover, .category-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary) !important;
}/* --- ENHANCED MASS FLIGHTS (TINY) --- */

@keyframes world-tour {
  0% { transform: translate(-100px, 10vh) rotate(135deg) scale(0.6); opacity: 0; }
  5% { opacity: 0.6; }
  25% { transform: translate(80vw, 30vh) rotate(-135deg) scale(0.8); } /* Now facing Left-Down */
  50% { transform: translate(10vw, 60vh) rotate(135deg) scale(0.6); } /* Now facing Right-Down */
  75% { transform: translate(90vw, 85vh) rotate(-135deg) scale(0.9); } /* Now facing Left-Down */
  95% { opacity: 0.6; }
  100% { transform: translate(-100px, 100vh) rotate(-135deg) scale(0.6); opacity: 0; }
}

.world-tour-plane {
  position: absolute;
  width: 45px; /* Slightly bigger than tiny but still elegant */
  height: auto;
  opacity: 0;
  animation: world-tour 40s linear infinite;
  z-index: 999;
}

.plane-svg {
  fill: var(--primary);
  filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.4));
}

.flight-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.btn {
  background: rgba(20, 184, 166, 0.2) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary) !important;
  color: white !important;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.btn:hover {
  background: var(--primary) !important;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.4);
}

.btn-outline {
  background: transparent !important;
  border-color: var(--muted) !important;
  color: var(--muted) !important;
}

/* Glass Metrics */
.hero-v2-metrics article {
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

/* Page Filling Background Decorations */
body::after {
  content: "World Travel Club ";
  position: fixed;
  bottom: 5%;
  left: 100px;
  width: 100%;
  font-size: 15vh;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  letter-spacing: 20px;
}

/* Category Grid Styles */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-card {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.category-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.category-card:hover .category-icon img {
  transform: scale(1.2);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-white { color: white !important; }
.text-center { text-align: center; }

/* Section Overlap look */
#categories {
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.05), transparent);
  border-top: 1px dashed var(--glass-border);
  border-bottom: 1px dashed var(--glass-border);
}

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

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


@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-metrics,
  .destination-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}
.logo{
  height: 70px;
  width: 70px;
  border-radius: 100%;
  
}