@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #FF3B30;
  --primary-dark: #D70015;
  --black: #000000;
  --off-black: #1C1C1E;
  --white: #FFFFFF;
  --gray-100: #F2F2F7;
  --gray-200: #E5E5EA;
  --gray-300: #D1D1D6;
  --gray-400: #8E8E93;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(0, 0, 0, 0.8);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 10px 30px rgba(255, 59, 48, 0.3);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: 120px 10%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

body:not(.loaded) {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 10px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-line {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: load 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes load {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

.loader-text {
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.5em;
  font-size: 0.8rem;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

header {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
}

body.loaded header {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.accent-text {
  color: var(--primary);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scroll-blur {
  padding: 15px 10%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  gap: 20px;
}

.nav-logo {
  height: clamp(3px, 3vw, 40px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text {
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: var(--transition);
  text-transform: uppercase;
  line-height: 1;
}

header.scroll-blur .logo-text {
  color: var(--black);
}

header.scroll-blur .nav-logo {
  height: clamp(20px, 3vw, 45px);
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

header.scroll-blur .nav-link {
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

header.scroll-blur .menu-toggle span,
.nav-menu.active ~ .cta-group .menu-toggle span {
  background: var(--black);
}

.call-btn-mini {
  background: var(--white);
  color: var(--black);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  z-index: 1001;
}

header.scroll-blur .call-btn-mini {
  background: var(--black);
  color: var(--white);
}

.call-btn-mini:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.carousel-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-content {
  max-width: 1000px;
  color: var(--white);
  transform: translateY(30px);
  transition: transform 1.2s ease-out;
}

.carousel-slide.active .carousel-content {
  transform: translateY(0);
}

.carousel-content h1 {
  font-size: clamp(2.5rem, 10vw, 8rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.carousel-content p {
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  z-index: 10;
  pointer-events: none;
}

.carousel-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.carousel-control:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

.section-v2 {
  padding: var(--section-pad);
}

.section-v2-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-v2-header h2 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 0.85;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 30px;
}

.dest-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: clamp(400px, 60vh, 550px);
  cursor: pointer;
}

.dest-img-wrapper {
  height: 100%;
  width: 100%;
}

.dest-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 5vw, 40px);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dest-overlay h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  margin-bottom: 5px;
}

.dest-overlay p {
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.service-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 30px;
}

.service-card-v2 {
  background: var(--gray-100);
  padding: clamp(40px, 8vw, 80px) 40px;
  border-radius: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-v2:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-10px);
}

.card-num {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.05;
}

.service-card-v2 i {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.service-card-v2 h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--gray-100);
  padding: 50px 40px;
  border-radius: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  border-color: var(--gray-200);
}

.testimonial-content {
  margin-bottom: 40px;
  position: relative;
}

.testimonial-content i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.testimonial-content p {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--off-black);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  background: var(--gray-200);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  color: var(--black);
}

.author-info .rating {
  color: #FFB300;
  font-size: 0.8rem;
  display: flex;
  gap: 4px;
}

.page-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  position: relative;
}

.page-hero-content {
  color: var(--white);
  max-width: 800px;
}

.page-hero-content h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.category-filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-400);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.ethos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.ethos-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
}

.ethos-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-heading {
  font-size: clamp(2.5rem, 10vw, 8rem);
  margin-bottom: 40px;
}

.book-btn-v2 {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: clamp(15px, 2.5vw, 20px) 40px;
  border-radius: 15px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.book-btn-v2:hover {
  background: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.view-more-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.wa-v2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  width: clamp(60px, 10vw, 70px);
  height: clamp(60px, 10vw, 70px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.wa-v2:hover {
  transform: scale(1.1) rotate(10deg);
}

.footer-v2 {
  background: var(--black);
  color: var(--white);
  padding: 100px 10% 50px;
}

.footer-top-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-top-v2 h2 {
  font-size: clamp(3.5rem, 10vw, 6rem);
}

.footer-links-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 15px;
  transition: var(--transition);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(10px);
}

@media (max-width: 1024px) {
  :root { --section-pad: 80px 5%; }
  header { padding: 20px 5%; }
  header.scroll-blur { padding: 15px 5%; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    gap: 30px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-link {
    color: var(--black);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 10px;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .ethos-content {
    grid-template-columns: 1fr;
  }
  
  .footer-v2 { padding: 80px 5% 40px; }
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .book-btn-v2 {
    width: 100%;
    justify-content: center;
  }
  
  .footer-top-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .logo-text-leesha { font-size: 1.6rem; }
  .logo-text-voyages { font-size: 0.6rem; letter-spacing: 0.3em; }
  
  .ethos-stats {
    grid-template-columns: 1fr;
  }
  
  .carousel-controls {
    display: none; 
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(20px);
  transition: opacity 2.0s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 2.0s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 2.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

header, section, footer {
  transition: filter 2.0s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 2.0s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.loaded) header, 
body:not(.loaded) section, 
body:not(.loaded) footer {
  filter: blur(10px);
  opacity: 0;
}

body.loaded header, 
body.loaded section, 
body.loaded footer {
  filter: blur(0);
  opacity: 1;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

