@charset "UTF-8";
/* ===== CSS Variables ===== */
:root {
  --background: 45 30% 98%;
  --foreground: 30 10% 15%;
  --primary-green: 145 35% 28%;
  --primary1: 204 94% 45%;
  --primary: 202.05deg 96.69% 23.73%;
  --primary-foreground: 45 30% 98%;
  --secondary: 35 25% 90%;
  --secondary-foreground: 30 10% 25%;
  --accent: 25 70% 50%;
  --accent-foreground: 45 30% 98%;
  --muted: 35 15% 92%;
  --muted-foreground: 30 10% 45%;
  --border: 35 20% 85%;
  --ring: 145 35% 28%;
  --sand: 35 30% 85%;
  --olive: 85 25% 35%;
  --olive: 215 65% 45%;
  --terracotta: 25 70% 50%;
  --warm-brown: 30 25% 25%;
  --cream: 45 40% 95%;
  --cream-blue: linear-gradient(135deg, hsla(144, 38%, 95%, 0.4), hsla(202, 85%, 92%, 0.507));
  --radius: 0.75rem;
  --shadow-soft: 0 4px 20px -4px hsl(30 25% 12% / 0.08);
  --shadow-medium: 0 8px 30px -8px hsl(30 25% 12% / 0.12);
  --shadow-glow: 0 0 30px hsl(145 35% 28% / 0.12);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Utilities ===== */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--olive)));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary1)));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 15px hsla(var(--primary), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsla(var(--primary), 0.4);
}

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

.btn-outline:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-hero {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary1)));
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px hsla(var(--accent), 0.4);
  transition: all 0.5s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px hsla(var(--accent), 0.5);
  background: linear-gradient(135deg, hsl(var(--primary1)), hsl(var(--primary1)));
  color: white;
  transition: all 0.5s ease;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100px;
}

.header.scrolled {
  position: absolute;
}

.nav-desktop {
  display: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  color: #e8f4ff;
  transition: color 0.2s ease;
  position: relative;
  padding: 12px 20px;
  border-radius: 3rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 0;
  height: 2px;
  background: #e8f4ff;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #e8f4ff;
}

.nav-link:hover::after {
  width: calc(100% - 40px);
}

.nav-link.active {
  background: rgba(232, 244, 255, 0.875);
  color: hsl(var(--primary));
  font-weight: 700;
  padding: 12px 20px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: hsl(var(--primary-foreground));
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: hsl(var(--primary-foreground));
  transition: all 0.3s ease;
  right: -5px;
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  bottom: -10px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-small {
  min-height: 70vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/home-hero.webp") center/cover no-repeat;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-hero.webp") center/cover no-repeat;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/services-hero.webp") center/cover no-repeat;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/contact-hero.webp") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.5rem;
  padding-top: 70px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(45, 90%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes scroll {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(6px);
  }
}
/* ===== Animations ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Trust Bar ===== */
.trust-bar {
  background: hsl(var(--cream));
  padding: 2rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary)/0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(var(--primary)/0.9);
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(var(--accent));
  color: hsl(var(--primary)/0.9);
  padding-bottom: 5px;
  margin-bottom: 0;
}

.trust-description {
  font-size: 0.8725rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0;
}

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

.section-badge {
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--accent));
  text-transform: uppercase;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.8rem;
  padding: 0.6rem 1rem 0.5rem !important;
}

.section-badge i {
  font-size: 1rem;
  line-height: 0;
}

.section-title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  color: hsl(var(--primary));
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ===== Services Section ===== */
.services {
  padding: 5rem 0 7rem;
  background: hsl(var(--background));
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-content {
  padding: 1.5rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary)/0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: hsl(var(--primary1));
  color: hsl(var(--primary-foreground));
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

/* ===== Destinations Section ===== */
.destinations {
  padding: 5rem 0;
  background: hsl(var(--cream));
  background: hsl(var(--foreground));
  overflow: hidden;
}

.destinations-scroll {
  overflow-x: auto;
  padding: 1rem 1.5rem;
  scrollbar-width: none;
}

.destinations-scroll::-webkit-scrollbar {
  display: none;
}

.destinations-track {
  display: flex;
  gap: 1.5rem;
  width: -moz-max-content;
  width: max-content;
}

.destination-card {
  position: relative;
  width: 375px;
  height: 500px;
  border-radius: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

.destination-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.destination-tag {
  display: inline-block;
  background: hsl(var(--accent));
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}

.destination-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.destination-desc {
  font-size: 0.875rem;
  opacity: 0.9;
}

.destinations {
  background: linear-gradient(135deg, #f5f7fa 0%, rgba(195, 207, 226, 0.7137254902) 100%);
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
}
.destinations .slider-container {
  position: relative;
  overflow: hidden;
  padding: 35px 0 35px;
}
.destinations .section-header {
  margin-bottom: 0rem;
}
.destinations .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}
.destinations .tour-card {
  min-width: calc(25% - 15px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.destinations .tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.destinations .card-image {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.destinations .tour-card:hover .card-image {
  transform: scale(1.1);
}
.destinations .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 30px 30px 20px;
  transform: translateY(0%);
  transition: transform 0.3s ease;
}
.destinations .tour-card:hover .card-overlay {
  transform: translateY(0);
}
.destinations .card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
}
.destinations .card-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}
.destinations .tour-card:hover .card-description {
  opacity: 1;
}
.destinations .card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
}
.destinations .tour-card:hover .card-arrow {
  opacity: 1;
}
.destinations .destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}
.destinations .destination-highlights span {
  color: rgba(255, 255, 255, 0.842);
  background: rgba(255, 255, 255, 0.259);
  background: hsla(25, 80%, 55%, 0.5);
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 20px;
}
.destinations .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.destinations .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
}
.destinations .nav-btn:hover {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
  transform: scale(1.1);
}
.destinations .progress-bar {
  flex: 1;
  max-width: 400px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.destinations .progress-fill {
  height: 100%;
  background: #2c3e50;
  width: 25%;
  transition: width 0.5s ease;
}
@media (max-width: 1200px) {
  .destinations .tour-card {
    min-width: calc(33.333% - 14px);
  }
}
@media (max-width: 960px) {
  .destinations .tour-card {
    min-width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .destinations h1 {
    font-size: 28px;
  }
  .destinations .tour-card {
    min-width: calc(50% - 10px);
  }
  .destinations .card-image {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .destinations .tour-card {
    min-width: calc(100% - 20px);
    margin: 0 10px;
  }
  .destinations .card-image {
    height: 400px;
  }
  .destinations .slider-wrapper {
    gap: 0;
  }
}

/* ===== Why Choose Us ===== */
.why-us {
  padding: 5rem 0;
  background: white;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-us-content .section-title {
  margin-bottom: 1.5rem;
}

.why-us-text {
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-us-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .why-us-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.why-us-image {
  position: relative;
  height: 100%;
  max-height: 420px;
}

.why-us-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: white;
  padding: 0.6rem 1.5rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.exp-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exp-text {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

/* ===== Student & Corporate ===== */
.student-corporate {
  padding: 5rem 0;
  background: hsl(var(--cream));
  background: rgba(241, 236, 228, 0.3019607843);
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sc-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

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

.sc-title {
  color: hsl(var(--primary));
}

.student-card {
  background: #fdfdfc;
}

.corporate-card {
  background: hsl(var(--foreground));
}
.corporate-card .btn {
  color: #e8f4ff;
  background: hsl(var(--accent));
}
.corporate-card .sc-icon {
  background: rgba(255, 255, 255, 0.1);
  color: hsl(var(--accent));
}
.corporate-card:hover .sc-icon {
  color: rgba(255, 255, 255, 0.9);
  background: hsl(var(--accent));
}
.corporate-card .sc-title {
  color: #fdfdfc;
}
.corporate-card .sc-desc {
  color: rgba(253, 253, 252, 0.8980392157);
}
.corporate-card .sc-features li {
  color: rgba(253, 253, 252, 0.8980392157);
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--primary)/0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
}

.sc-card:hover .sc-icon {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary)/0.9);
}

.corporate-card:hover .sc-icon {
  color: rgba(255, 255, 255, 0.9);
  background: hsl(var(--accent));
}

.sc-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sc-desc {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sc-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sc-features li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.sc-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--accent));
  font-weight: bold;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 5rem 0;
  background: white;
}

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

.testimonial-card {
  display: none;
  background: hsl(var(--cream));
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: center;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-stars {
  color: hsl(var(--accent));
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: hsl(var(--foreground));
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.author-type {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(var(--border));
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: hsl(var(--primary));
  transform: scale(1.2);
}

/* ===== Ecotourism ===== */
.ecotourism {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
}

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

@media (min-width: 1024px) {
  .eco-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.eco-badge {
  background: white;
  border-color: hsl(var(--primary));
}

.eco-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.eco-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eco-item {
  display: flex;
  gap: 1rem;
}

.eco-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.eco-item:hover .eco-icon {
  background: hsl(var(--primary));
  color: white;
  transform: translateY(-2px);
}

.eco-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: "DM Sans", sans-serif;
  color: hsl(var(--primary)/0.8);
}

.eco-item p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.eco-link {
  font-weight: 600;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.eco-link:hover {
  gap: 0.5rem;
}

.eco-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--warm-brown)), hsl(30, 30%, 20%));
  text-align: center;
  background: url("../images/cta-bg.webp") bottom/cover no-repeat;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-title .text-gradient {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(45, 90%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
  background: hsl(var(--foreground));
  color: white;
}

.footer-brand .logo {
  width: 100%;
}
.footer-brand .logo img {
  max-width: 140px;
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--primary));
}

.footer-links h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.footer-links a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 0%;
  height: 2px;
  background: hsl(var(--accent));
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
  width: calc(100% + 5px);
}

.footer-address,
.footer-hours {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.about-icon {
  width: 50px;
  height: 50px;
  background: hsl(var(--accent)/0.1);
  border-radius: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(var(--accent));
  transition: all 0.3s ease;
  margin-right: 10px;
}

.icon-box {
  width: 55px;
  height: 55px;
  background: hsl(var(--accent)/0.1);
  border-radius: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(var(--accent));
  transition: all 0.3s ease;
  margin-right: 10px;
}

.value-card {
  background: hsl(var(--cream));
  border: 1px solid hsl(var(--border));
}

.about-us {
  background: white;
}
.about-us h6 {
  color: hsl(var(--primary));
  color: hsl(var(--primary)/0.8);
  color: rgba(33, 37, 41, 0.75);
}
.about-us .section-header span {
  box-shadow: var(--shadow-soft);
}

.mission-vision-section {
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
}

.value-cards h4 {
  color: hsl(var(--primary));
  color: hsl(var(--accent)/0.9);
  font-size: calc(1.01rem + 0.3vw);
}
.value-cards .col-md-4:nth-child(3) .icon-box {
  background: hsl(var(--accent)/0.1);
  color: hsl(var(--accent));
}

.impact-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7));
}
.impact-section .counter {
  color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.impact-section .counter .number {
  font-size: 4.5rem;
  margin-left: 10px;
  letter-spacing: -1px;
}
.impact-section .counter .symbol {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  margin-left: 2px;
  margin-top: -10px;
  font-weight: 600;
}
.impact-section .count-text {
  font-size: 1.1rem;
  color: #21c264;
}
.impact-section .text-gradient {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(45, 90%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-section .text-green {
  color: #21c264;
}

.intro-stats .counter {
  color: hsl(var(--primary-green));
  color: #1f7643;
  line-height: 1;
}
.intro-stats .counter .number {
  font-size: 4rem;
  margin-left: 0px;
  letter-spacing: -1px;
}
.intro-stats .counter .symbol {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin-left: 5px;
  margin-top: -5px;
  font-weight: 800;
}
.intro-stats .count-text {
  font-size: 1.1rem;
  color: #21c264;
}
.intro-stats .text-gradient {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(45, 90%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-main {
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
}
.services-main .section-badge {
  box-shadow: var(--shadow-soft);
  background: white;
}

.services-intro .section-badge {
  box-shadow: var(--shadow-soft);
}

.why-choose-features h4 {
  color: hsl(var(--primary)/0.9);
  font-size: calc(1.01rem + 0.3vw);
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.why-choose-features .feature-item {
  padding-bottom: 10px;
}
.why-choose-features .feature-item span {
  color: hsl(var(--muted-foreground));
}
.why-choose-features .feature-item .feature-icon {
  color: hsl(var(--accent));
  margin-left: 12px;
}

.pricing-section .section-badge {
  box-shadow: var(--shadow-soft);
  background: white;
}
.pricing-section .badge {
  background: hsl(var(--primary)) !important;
  color: white;
  border-radius: 0;
  padding-top: 10px;
}
.pricing-section .display-5 {
  color: hsl(25, 80%, 55%) !important;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(45, 90%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-section .btn-outline-primary {
  border: 1px solid hsl(var(--primary)) !important;
  color: hsl(var(--primary)) !important;
}
.pricing-section .btn-outline-primary:hover {
  background: hsl(var(--primary)) !important;
  color: white !important;
}
.pricing-section .pricing-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  color: white;
  transition: all 0.3s ease-in-out;
  padding-bottom: 1.8rem !important;
  box-shadow: 0 0.125rem 0.25rem rgba(251, 251, 251, 0.275) !important;
}
.pricing-section .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/about-hero.webp") center/cover no-repeat;
  opacity: 0.9;
  z-index: 0;
}
.pricing-section .pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.pricing-section .pricing-card:hover::after {
  background: rgba(0, 0, 0, 0.65);
}
.pricing-section .pricing-card .pricing-card-content {
  position: relative;
  z-index: 2;
}
.pricing-section .pricing-card .h5 {
  font-size: 1.4rem !important;
}
.pricing-section .pricing-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.pricing-section .pricing-card .btn-primary {
  background: hsl(var(--primary)) !important;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%)) !important;
  color: white !important;
  transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-card .btn-primary:hover {
  background: hsl(var(--primary)) !important;
  color: white !important;
  border-color: hsl(var(--primary)) !important;
}
.pricing-section .pricing-card .btn-outline-primary {
  border: 1px solid white !important;
  color: white !important;
  transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-card .btn-outline-primary:hover {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%)) !important;
  color: white !important;
  border-color: hsl(var(--accent)) !important;
}
.pricing-section .pricing-card .text-muted {
  color: white !important;
}
.pricing-section .pricing-card li i {
  color: white !important;
}
.pricing-section .maasai-card::before {
  background: url("../images/kenya.webp") center/cover no-repeat;
}
.pricing-section .big-five-card::before {
  background: url("../images/big5.webp") center/cover no-repeat;
}
.pricing-section .kenya-safari-card::before {
  background: url("../images/kenya-safari.webp") center/cover no-repeat;
}

.process-section .section-badge {
  box-shadow: var(--shadow-soft);
  background: white;
}
.process-section .rounded-circle {
  color: hsl(var(--accent)) !important;
  background: hsl(var(--accent)/0.1) !important;
}
.process-section h3 {
  color: hsl(var(--primary)/0.9);
}

.service-card h3 {
  color: hsl(var(--primary)/0.9);
}
.service-card .btn {
  color: hsl(var(--accent)/0.8) !important;
}
.service-card .btn:hover {
  background: hsl(var(--accent)) !important;
  color: white !important;
}
.service-card .starting-price span {
  color: hsl(var(--primary)) !important;
}
.service-card .service-icon {
  background: hsl(var(--primary)/0.1) !important;
  color: hsl(var(--primary)) !important;
}
.service-card .service-icon i {
  line-height: 0;
}
.service-card .service-title h3 {
  color: hsl(var(--primary)/0.9);
  font-size: calc(1.1rem + 0.3vw);
}

.contact-section .section-badge {
  box-shadow: var(--shadow-soft);
  background: white;
  margin: 0 0 0.8rem;
}
.contact-section .contact-icon {
  background: hsl(var(--accent)/0.9) !important;
  color: hsl(var(--accent)) !important;
  color: white !important;
}
.contact-section .contact-icon i {
  line-height: 0;
}
.contact-section .hover-lift {
  background: hsl(var(--cream)) !important;
  background: hsl(var(--primary)/0.1) !important;
  background: hsl(var(--accent)/0.065) !important;
}
.contact-section .hover-lift a {
  color: hsl(var(--primary)/0.8) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}
.contact-section .hover-lift a:hover {
  color: hsl(var(--accent)) !important;
}
.contact-section .hover-lift address {
  color: hsl(var(--primary)/0.8) !important;
  font-size: 0.925rem !important;
  font-weight: 500 !important;
}
.contact-section .hover-lift:hover {
  background: hsl(var(--accent)/0.9) !important;
}
.contact-section .hover-lift:hover h4 {
  color: #fff !important;
}
.contact-section .hover-lift:hover a {
  color: #fff !important;
}
.contact-section .hover-lift:hover address {
  color: #fff !important;
}
.contact-section .hover-lift:hover p {
  color: #fff !important;
}
.contact-section .hover-lift:hover .contact-icon {
  background: white !important;
  color: hsl(var(--accent)) !important;
}
.contact-section h4 {
  color: hsl(var(--primary)/0.9);
}
.contact-section h5 {
  color: hsl(var(--primary)/0.8);
}
.contact-section .contact-socials a {
  width: 35px;
  height: 35px;
  background: hsl(var(--primary)/0.1) !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-socials a i {
  color: hsl(var(--primary)) !important;
}
.contact-section .contact-socials a:hover {
  background: hsl(var(--primary)) !important;
}
.contact-section .contact-socials a:hover i {
  color: white !important;
}
.contact-section .contact-form-bg {
  box-shadow: var(--shadow-medium) !important;
  box-shadow: var(--shadow-glow) !important;
}
.contact-section .contact-form-bg h3 {
  color: hsl(var(--primary)) !important;
}
.contact-section .form-floating > label {
  color: hsl(var(--primary)/0.8) !important;
  font-weight: 500;
}
.contact-section .form-control {
  background: none;
}
.contact-section .btn-primary {
  background: hsl(var(--accent)) !important;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%)) !important;
  color: white !important;
}
.contact-section .btn-primary:hover {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary1))) !important;
  color: white !important;
}
.contact-section .form-select {
  color: hsl(var(--primary)/0.8) !important;
  color: rgba(0, 0, 0, 0.65) !important;
  padding: 1rem 0.75rem;
}
.contact-section label.form-label {
  color: hsl(var(--primary)/0.8) !important;
  margin-bottom: 4px;
  font-weight: 500;
}

.map-section {
  width: 100%;
  float: left;
  height: 100%;
  height: 450px;
}
.map-section iframe {
  border: 0;
  filter: grayscale(50%);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
  height: 100%;
  min-height: 450px;
}
.map-section iframe:hover {
  filter: grayscale(0%);
}

.faq-section {
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%)) !important;
  background: white !important;
}
.faq-section .accordion-button {
  font-size: 1.2rem !important;
  color: hsl(var(--primary)/0.8) !important;
  padding: 1.25rem 1.5rem !important;
}
.faq-section .accordion-button:hover {
  background: hsl(var(--primary)/0.08) !important;
}
.faq-section .accordion-body {
  padding: 1.2rem 1.25rem !important;
}
.faq-section .accordion-button:not(.collapsed) {
  background: hsl(var(--primary)/0.15) !important;
  color: hsl(var(--primary)) !important;
  font-size: 1.2rem !important;
}
.faq-section .accordion-button:not(.collapsed):hover {
  background: hsl(var(--primary)/0.2) !important;
}

/* ===== Responsive Adjustments ===== */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    background: #fff;
    padding: 6px;
    background: rgba(255, 255, 255, 0.13);
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3rem;
    align-items: center;
  }
  .mobile-menu-btn {
    display: none;
  }
  .header .logo {
    max-width: 120px;
  }
}
@media (min-width: 768px) {
  .header-actions .btn {
    display: inline-flex;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%));
  }
}
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}
/* ===== Utilities ===== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

/* ======================================
   DESTINATIONS PAGE STYLES
====================================== */
.destinations-page-wrapper {
  /* Destination Card */
  /* Load More */
  /* Travel Tips */
  /* Destinations CTA */
}
.destinations-page-wrapper .destination-stats {
  background-color: white;
  width: 100%;
}
.destinations-page-wrapper .destination-stats .stats-grid {
  background: hsl(var(--cream));
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
  background: #f4e7d9;
  text-align: center;
  border-radius: 2rem;
  bottom: 5rem;
}
.destinations-page-wrapper .destination-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.destinations-page-wrapper .destination-stats .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: hsl(var(--accent));
}
.destinations-page-wrapper .destination-stats .stat-label {
  color: hsl(var(--primary));
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.destinations-page-wrapper .destination-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
  width: 100%;
  height: 100%;
}
.destinations-page-wrapper .destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px hsla(0, 0%, 0%, 0.12);
}
.destinations-page-wrapper .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.destinations-page-wrapper .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.destinations-page-wrapper .destination-card:hover .card-image img {
  transform: scale(1.08);
}
.destinations-page-wrapper .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.4), transparent 50%);
}
.destinations-page-wrapper .card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
  color: hsl(var(--primary));
}
.destinations-page-wrapper .card-content > p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.destinations-page-wrapper .card-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.destinations-page-wrapper .highlight {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  background: hsl(var(--muted));
  border-radius: 100px;
  color: hsl(var(--muted-foreground));
}
.destinations-page-wrapper .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}
.destinations-page-wrapper .btn-icon {
  margin-left: 0.5rem;
}
.destinations-page-wrapper .travel-tips {
  padding: 5rem 0;
  background: hsl(var(--muted));
}
.destinations-page-wrapper .tip-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease;
  background: hsl(var(--cream));
}
.destinations-page-wrapper .tip-card:hover {
  transform: translateY(-5px);
}
.destinations-page-wrapper .tip-icon {
  width: 60px;
  height: 60px;
  background: hsl(var(--accent)/0.1);
  border-radius: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(var(--accent));
  transition: all 0.3s ease;
  margin: 0 auto 1rem;
}
.destinations-page-wrapper .tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--accent));
}
.destinations-page-wrapper .tip-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.destinations-page-wrapper .destinations-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(145, 40%, 22%));
  text-align: center;
}
.destinations-page-wrapper .destinations-cta .cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}
.destinations-page-wrapper .destinations-cta .cta-content p {
  color: hsl(var(--primary-foreground)/0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Featured Destinations */
.featured-destinations {
  background: hsl(var(--muted));
}
.featured-destinations .featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-column-gap: 1.5rem;
}
.featured-destinations .featured-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-destinations .featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px hsla(0, 0%, 0%, 0.15);
}
.featured-destinations .featured-large {
  grid-row: span 2;
}
.featured-destinations .featured-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.featured-destinations .featured-large .featured-image {
  height: 100%;
  min-height: 400px;
}
.featured-destinations .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-destinations .featured-card:hover .featured-image img {
  transform: scale(1.05);
}
.featured-destinations .featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.7), transparent);
}
.featured-destinations .featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--primary-foreground));
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}
.featured-destinations .featured-content {
  padding: 1.5rem;
}
.featured-destinations .featured-large .featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
}
.featured-destinations .featured-large .featured-content h3,
.featured-destinations .featured-large .featured-content p {
  color: white;
}
.featured-destinations .featured-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.featured-destinations .featured-meta .meta-item {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}
.featured-destinations .featured-large .featured-meta .meta-item {
  color: hsla(0, 0%, 100%, 0.8);
  background: hsla(0, 0%, 100%, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.featured-destinations .featured-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}
.featured-destinations .featured-large .featured-content h3 {
  font-size: 1.75rem;
}
.featured-destinations .featured-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.featured-destinations .featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-destinations .price-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.featured-destinations .price-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.featured-destinations .featured-large .price-label {
  color: hsla(0, 0%, 100%, 0.7);
}
.featured-destinations .price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}
.featured-destinations .featured-large .price-value {
  color: white;
}

.all-destinations-wrapper {
  background: linear-gradient(135deg, hsl(145, 40%, 95%), hsl(85, 30%, 92%));
  /* Filter Section */
  /* Stats Bar */
  /* Destination Card */
  /* No Results */
}
.all-destinations-wrapper .filter-section {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  border-radius: 1.5rem;
  position: relative;
  z-index: 100;
}
.all-destinations-wrapper .filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.all-destinations-wrapper .filter-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
}
.all-destinations-wrapper .filter-btn {
  padding: 0.55rem 1.25rem;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.all-destinations-wrapper .filter-btn:hover {
  border-color: hsl(var(--accent)/0.9);
  color: hsl(var(--accent));
  transform: translateY(-2px);
}
.all-destinations-wrapper .filter-btn.active {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%));
  color: white;
  border-color: hsl(var(--accent));
}
.all-destinations-wrapper .search-box {
  display: flex;
  align-items: center;
  background: #f9fafb;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  min-width: 250px;
}
.all-destinations-wrapper .search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 1rem;
  margin-left: 0.5rem;
}
.all-destinations-wrapper .search-box svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}
.all-destinations-wrapper .stats-bar {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-destinations-wrapper .results-count {
  font-size: 1.1rem;
  color: #6b7280;
}
.all-destinations-wrapper .results-count strong {
  color: #059669;
  font-size: 1.3rem;
}
.all-destinations-wrapper .sort-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.all-destinations-wrapper .sort-dropdown select {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.all-destinations-wrapper .destination-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
}
.all-destinations-wrapper .destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.all-destinations-wrapper .card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.all-destinations-wrapper .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.all-destinations-wrapper .destination-card:hover .card-image img {
  transform: scale(1.1);
}
.all-destinations-wrapper .card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #059669;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.all-destinations-wrapper .card-featured {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.all-destinations-wrapper .card-content {
  padding: 1.75rem;
}
.all-destinations-wrapper .card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--accent));
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.all-destinations-wrapper .card-location svg {
  width: 18px;
  height: 18px;
}
.all-destinations-wrapper .card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.all-destinations-wrapper .card-description {
  color: #6b7280;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.all-destinations-wrapper .card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.all-destinations-wrapper .feature-tag {
  background: hsl(var(--accent)/0.1);
  color: hsl(var(--accent));
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.all-destinations-wrapper .feature-tag svg {
  width: 14px;
  height: 14px;
}
.all-destinations-wrapper .card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f3f4f6;
  margin-bottom: 1rem;
}
.all-destinations-wrapper .stat-item {
  text-align: center;
}
.all-destinations-wrapper .stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #059669;
  color: hsl(var(--primary));
}
.all-destinations-wrapper .stat-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.all-destinations-wrapper .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f3f4f6;
}
.all-destinations-wrapper .card-price {
  display: flex;
  flex-direction: column;
}
.all-destinations-wrapper .price-label {
  font-size: 0.85rem;
  color: #6b7280;
}
.all-destinations-wrapper .price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
}
.all-destinations-wrapper .price-currency {
  font-size: 1rem;
  color: #6b7280;
}
.all-destinations-wrapper .card-cta {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary1)));
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.all-destinations-wrapper .card-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}
.all-destinations-wrapper .card-cta svg {
  width: 18px;
  height: 18px;
}
.all-destinations-wrapper .no-results {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}
.all-destinations-wrapper .no-results.show {
  display: block;
}
.all-destinations-wrapper .no-results svg {
  width: 80px;
  height: 80px;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}
.all-destinations-wrapper .no-results h3 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.all-destinations-wrapper .no-results p {
  color: #6b7280;
  font-size: 1.1rem;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* 1. Large Screens (min-width: 1024px) */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    background: rgba(255, 255, 255, 0.13);
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3rem;
    align-items: center;
    padding: 6px;
  }
  .mobile-menu-btn {
    display: none;
  }
  .header .logo {
    max-width: 120px;
  }
}
/* 2. Medium Screens (min-width: 768px) */
@media (min-width: 768px) {
  .header-actions .btn {
    display: inline-flex;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(25, 80%, 55%));
  }
}
/* ======================================
   RESPONSIVE DESIGN
====================================== */
/* 3. Landscape Targets (max-width: 1200px) */
@media (max-width: 1200px) {
  .featured-destinations .featured-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }
  .featured-destinations .featured-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .featured-destinations .featured-image {
    height: 280px;
  }
  .featured-destinations .featured-large .featured-image {
    height: 100%;
    min-height: 300px;
    max-height: 500px;
  }
}
/* 4. Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .filters-section {
    position: static;
  }
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-label {
    min-width: auto;
  }
  .featured-destinations .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-destinations .featured-large {
    grid-column: span 1;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 5. Mobile (max-width: 640px) */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */