/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--indigo) 0%,
      var(--mauve) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

:root {
  --sand: #f5e3b8;
  --coral: #f9a397;
  --rose: #de7482;
  --mauve: #845a7e;
  --indigo: #41416b;
  --sand-light: #faf4e6;
  --indigo-dark: #2d2d4a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--indigo);
  background: var(--sand-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 47px;
  /* Height of urgency banner */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4%;
  box-shadow: 0 4px 30px rgba(65, 65, 107, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s;
}

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

.logo-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.mobile-cta {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: var(--indigo);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: var(--white) !important;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(222, 116, 130, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.navbar.scrolled .menu-toggle span {
  background: var(--indigo);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(65, 65, 107, 0.3) 0%,
      rgba(132, 90, 126, 0.4) 30%,
      rgba(222, 116, 130, 0.3) 60%,
      rgba(249, 163, 151, 0.2) 100%),
    url("https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(65, 65, 107, 0.5) 0%,
      rgba(65, 65, 107, 0.25) 50%,
      rgba(65, 65, 107, 0.6) 100%);
}

/* Floating particles animation */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(249, 163, 151, 0.6);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  animation-duration: 15s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 1s;
  animation-duration: 17s;
}

.particle:nth-child(10) {
  left: 15%;
  animation-delay: 3s;
  animation-duration: 13s;
}

@keyframes float-particle {

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

  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }

  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--coral);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title span {
  font-style: italic;
  color: var(--coral);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: var(--white);
  box-shadow: 0 10px 40px rgba(222, 116, 130, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(222, 116, 130, 0.5);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--indigo);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--coral), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

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

/* About Section */
.about {
  padding: 8rem 4%;
  background: var(--white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--sand-light), transparent);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(65, 65, 107, 0.15);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--sand), var(--coral));
  border-radius: 20px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--indigo);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(65, 65, 107, 0.3);
}

.about-badge-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
}

.about-badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.about-content {
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--rose);
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--indigo);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--rose);
  font-style: italic;
}

.about-text {
  font-size: 1.1rem;
  color: var(--mauve);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sand), var(--coral));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 1.1rem;
  color: var(--indigo);
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: 0.9rem;
  color: var(--mauve);
}

/* Destinations Section */
.destinations {
  padding: 8rem 4%;
  background: var(--indigo);
  position: relative;
  overflow: hidden;
}

.destinations::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--mauve) 0%, transparent 70%);
  opacity: 0.3;
}

.destinations-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.destinations-header .section-label {
  color: var(--coral);
}

.destinations-header .section-label::before {
  background: var(--coral);
}

.destinations-header .section-title {
  color: var(--white);
}

.destinations-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.destination-card:hover {
  transform: translateY(-10px);
}

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

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(65, 65, 107, 0.95) 0%,
      rgba(65, 65, 107, 0.3) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top,
      rgba(132, 90, 126, 0.95) 0%,
      rgba(132, 90, 126, 0.5) 50%,
      transparent 100%);
}

.destination-tours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}

.destination-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.destination-card:first-child .destination-name {
  font-size: 2.5rem;
}

.destination-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.destination-card:hover .destination-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Safari Experiences */
.experiences {
  padding: 8rem 4%;
  background: var(--sand-light);
}

.experiences-container {
  max-width: 1400px;
  margin: 0 auto;
}

.experiences-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.experiences-header-text {
  max-width: 600px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s;
}

.view-all:hover {
  gap: 1.25rem;
}

.view-all svg {
  transition: transform 0.3s;
}

.view-all:hover svg {
  transform: translateX(5px);
}

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

.experience-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(65, 65, 107, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(65, 65, 107, 0.15);
}

.experience-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.experience-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--indigo);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.experience-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.experience-favorite:hover {
  background: var(--rose);
  color: var(--white);
}

.experience-content {
  padding: 1.75rem;
}

.experience-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mauve);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.experience-title {
  font-size: 1.4rem;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.experience-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--mauve);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.experience-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.experience-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(65, 65, 107, 0.1);
}

.experience-price {
  font-family: "Cormorant Garamond", serif;
}

.experience-price span {
  font-size: 0.85rem;
  color: var(--mauve);
}

.experience-price strong {
  font-size: 1.75rem;
  color: var(--indigo);
}

.btn-book {
  background: var(--indigo);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-book:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* Payment Plans */
.payment {
  padding: 6rem 4%;
  background: linear-gradient(135deg, var(--mauve), var(--indigo));
  position: relative;
  overflow: hidden;
}

.payment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.payment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.payment-content {
  color: var(--white);
}

.payment-content .section-label {
  color: var(--sand);
}

.payment-content .section-label::before {
  background: var(--sand);
}

.payment-content .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.payment-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.payment-features {
  display: flex;
  gap: 2rem;
}

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

.payment-feature-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
}

.payment-feature-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.payment-card {
  background: var(--white);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.payment-card h3 {
  font-size: 1.75rem;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.payment-card>p {
  color: var(--mauve);
  margin-bottom: 2rem;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-form input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(65, 65, 107, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.payment-form input:focus {
  outline: none;
  border-color: var(--rose);
}

.payment-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 8rem 4%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: var(--sand);
  border-radius: 50%;
  opacity: 0.5;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.testimonial-card {
  background: var(--sand-light);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(65, 65, 107, 0.1);
}

.testimonial-card:nth-child(2) {
  background: var(--indigo);
  color: var(--white);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--coral);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-card:nth-child(2) .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral);
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  color: var(--indigo);
}

.testimonial-card:nth-child(2) .testimonial-author-info h4 {
  color: var(--white);
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--mauve);
}

.testimonial-card:nth-child(2) .testimonial-author-info span {
  color: var(--coral);
}

/* Newsletter */
.newsletter {
  padding: 6rem 4% 8rem;
  /* Increased bottom padding for silhouette */
  background: var(--sand);
  position: relative;
  overflow: hidden;
}



.newsletter::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 117px;
  background: url("../images/divider/footer_divider.webp") no-repeat bottom center;
  background-size: 100% auto;
  /* Professional color match to #2d2d4a */
  filter: brightness(0) saturate(100%) invert(17%) sepia(19%) saturate(1319%) hue-rotate(201deg) brightness(91%) contrast(89%);
  /* Fade effect top to bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 14%, black 85%);
  mask-image: linear-gradient(to bottom, transparent 14%, black 85%);
  z-index: 1;
  pointer-events: none;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter .section-title {
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--mauve);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.25rem 1.75rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(65, 65, 107, 0.08);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(222, 116, 130, 0.2);
}

.newsletter-form .btn-primary {
  padding: 1.25rem 2.5rem;
}

/* Footer */
.footer {
  background: var(--indigo-dark);
  color: var(--white);
  padding: 5rem 4% 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-about .logo {
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

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

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--sand);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: var(--coral);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--coral);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: white;
  width: 32px;
  height: 32px;
}

.whatsapp-float::before {
  content: "Chat with us!";
  position: absolute;
  right: 70px;
  background: white;
  color: var(--indigo);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

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

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

/* Animal Silhouette Overlays - Subtle Decorative Background Elements */
.silhouette-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Animal Silhouettes */
.silhouette-giraffe {
  background-image: url("../images/silhouettes/giraffe.webp");
  width: 180px;
  height: 220px;
  opacity: 0.06;
}

.silhouette-lion {
  background-image: url("../images/silhouettes/lion.webp");
  width: 160px;
  height: 120px;
  opacity: 0.07;
}

.silhouette-zebra {
  background-image: url("../images/silhouettes/zebra.webp");
  width: 150px;
  height: 120px;
  opacity: 0.06;
}

.silhouette-rhino {
  background-image: url("../images/silhouettes/rhino.webp");
  width: 160px;
  height: 100px;
  opacity: 0.06;
}

.silhouette-antelope {
  background-image: url("../images/silhouettes/antelope.webp");
  width: 140px;
  height: 140px;
  opacity: 0.06;
}

.silhouette-wildebeest {
  background-image: url("../images/silhouettes/wilderbeast.webp");
  width: 150px;
  height: 110px;
  opacity: 0.06;
}

/* Animal Footprints */
.footprint-lion {
  background-image: url("../images/footprints/lion foot print pair.webp");
  width: 80px;
  height: 100px;
  opacity: 0.08;
}

.footprint-elephant {
  background-image: url("../images/footprints/elephant foot print pair.webp");
  width: 100px;
  height: 120px;
  opacity: 0.07;
}

.footprint-zebra {
  background-image: url("../images/footprints/zebra foot print pair.webp");
  width: 70px;
  height: 90px;
  opacity: 0.08;
}

.footprint-rhino {
  background-image: url("../images/footprints/rhino foot print pair.webp");
  width: 80px;
  height: 100px;
  opacity: 0.07;
}

.footprint-gorilla {
  background-image: url("../images/footprints/gorilla foot print pair.webp");
  width: 70px;
  height: 90px;
  opacity: 0.08;
}

.footprint-buffalo {
  background-image: url("../images/footprints/buffalo.webp");
  width: 70px;
  height: 80px;
  opacity: 0.08;
}

/* Rotation variations */
.rotate-15 {
  transform: rotate(15deg);
}

.rotate-30 {
  transform: rotate(30deg);
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-neg15 {
  transform: rotate(-15deg);
}

.rotate-neg30 {
  transform: rotate(-30deg);
}

.rotate-neg45 {
  transform: rotate(-45deg);
}

.flip-x {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .silhouette-giraffe {
    width: 120px;
    height: 150px;
  }

  .silhouette-lion {
    width: 110px;
    height: 80px;
  }

  .silhouette-zebra {
    width: 100px;
    height: 80px;
  }

  .silhouette-rhino {
    width: 110px;
    height: 70px;
  }

  .silhouette-antelope {
    width: 100px;
    height: 100px;
  }

  .silhouette-wildebeest {
    width: 100px;
    height: 75px;
  }

  .footprint-lion {
    width: 55px;
    height: 70px;
  }

  .footprint-elephant {
    width: 70px;
    height: 85px;
  }

  .footprint-zebra {
    width: 50px;
    height: 65px;
  }

  .footprint-rhino {
    width: 55px;
    height: 70px;
  }

  .footprint-gorilla {
    width: 50px;
    height: 65px;
  }

  .footprint-buffalo {
    width: 50px;
    height: 55px;
  }
}

/* Trust Indicators Section */
.trust-bar {
  background: var(--white);
  padding: 1.5rem 4%;
  border-bottom: 1px solid rgba(65, 65, 107, 0.1);
}

.trust-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--indigo);
}

.trust-item-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--sand), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--indigo);
}

.trust-item-text strong {
  display: block;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--indigo);
}

.trust-item-text span {
  font-size: 0.8rem;
  color: var(--mauve);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-rating svg {
  width: 16px;
  height: 16px;
  fill: #ffb800;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--sand-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--indigo);
}

.trust-badge img {
  height: 20px;
  width: auto;
}

/* Featured In Section */
.featured-in {
  padding: 4rem 4%;
  background: var(--white);
  border-top: 1px solid rgba(65, 65, 107, 0.1);
}

.featured-in-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-in-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mauve);
  margin-bottom: 2rem;
}

.featured-in-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.featured-in-logos:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.featured-in-logos img {
  height: 35px;
  width: auto;
  transition: transform 0.3s;
}

.featured-in-logos img:hover {
  transform: scale(1.1);
}

.featured-logo-placeholder {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo);
  opacity: 0.5;
}

/* How to Book Section */
.booking-steps {
  padding: 8rem 4%;
  background: linear-gradient(180deg,
      var(--sand-light) 0%,
      var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.booking-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-steps-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.booking-steps-header p {
  color: var(--mauve);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Journey Path Container */
.journey-path {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

/* Connecting Line */
.journey-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--sand) 0%,
      var(--coral) 25%,
      var(--rose) 50%,
      var(--mauve) 75%,
      var(--indigo) 100%);
  border-radius: 2px;
  z-index: 1;
}

.journey-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 10px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
}

/* Animated dots on the line */
.journey-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  top: -4px;
  animation: travelDot 8s linear infinite;
  box-shadow: 0 0 20px var(--coral);
}

@keyframes travelDot {
  0% {
    left: 0;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Individual Step */
.booking-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 200px;
}

/* Step Number Circle */
.step-number {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg,
      var(--coral),
      var(--rose),
      var(--mauve));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.booking-step:hover .step-number::before {
  opacity: 1;
}

.booking-step:hover .step-number {
  transform: scale(1.08);
}

/* Step colors */
.step-1 .step-number {
  background: linear-gradient(135deg, #fef3e2, #fde5c8);
}

.step-2 .step-number {
  background: linear-gradient(135deg, #fce4e0, #f9d0ca);
}

.step-3 .step-number {
  background: linear-gradient(135deg, #f5d5e0, #efc0d0);
}

.step-4 .step-number {
  background: linear-gradient(135deg, #e5d0e8, #d4bce0);
}

.step-5 .step-number {
  background: linear-gradient(135deg, #d0d4e8, #b8bee0);
}

.step-number-inner {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(65, 65, 107, 0.1);
}

.step-number-digit {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.step-1 .step-number-digit {
  color: #e6a756;
}

.step-2 .step-number-digit {
  color: var(--coral);
}

.step-3 .step-number-digit {
  color: var(--rose);
}

.step-4 .step-number-digit {
  color: var(--mauve);
}

.step-5 .step-number-digit {
  color: var(--indigo);
}

.step-icon {
  margin-top: 0.25rem;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.step-1 .step-icon svg {
  stroke: #e6a756;
}

.step-2 .step-icon svg {
  stroke: var(--coral);
}

.step-3 .step-icon svg {
  stroke: var(--rose);
}

.step-4 .step-icon svg {
  stroke: var(--mauve);
}

.step-5 .step-icon svg {
  stroke: var(--indigo);
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--mauve);
  line-height: 1.6;
}

/* Safari Vehicle Graphic */
.safari-vehicle {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60px;
  height: auto;
  animation: driveAcross 12s linear infinite;
  z-index: 3;
  opacity: 0;
}

@keyframes driveAcross {
  0% {
    left: -80px;
    opacity: 0;
  }

  5% {
    opacity: 0.6;
  }

  95% {
    opacity: 0.6;
  }

  100% {
    left: calc(100% + 80px);
    opacity: 0;
  }
}

/* CTA below steps */
.booking-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(65, 65, 107, 0.1);
}

.booking-cta p {
  font-size: 1.2rem;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}

.booking-cta p strong {
  color: var(--indigo);
}

/* Responsive */
@media (max-width: 1024px) {
  .journey-path {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .journey-line {
    display: none;
  }

  .booking-step {
    flex: 0 0 calc(33.333% - 2rem);
    max-width: none;
  }

  .safari-vehicle {
    display: none;
  }
}

@media (max-width: 768px) {
  .booking-step {
    flex: 0 0 calc(50% - 1rem);
  }

  .step-number {
    width: 100px;
    height: 100px;
  }

  .step-number-inner {
    width: 80px;
    height: 80px;
  }

  .step-number-digit {
    font-size: 1.5rem;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .booking-step {
    flex: 0 0 100%;
  }
}

/* Accommodations Section */
.accommodations {
  padding: 8rem 4%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.accommodations::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.5;
}

.accommodations-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.accommodations-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.accommodations-header p {
  color: var(--mauve);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

.accommodation-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(65, 65, 107, 0.2);
}

/* Featured large card */
.accommodation-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.accommodation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accommodation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(65, 65, 107, 0.9) 0%,
      rgba(65, 65, 107, 0.4) 40%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}

.accommodation-card:hover .accommodation-overlay {
  background: linear-gradient(to top,
      rgba(132, 90, 126, 0.95) 0%,
      rgba(132, 90, 126, 0.5) 40%,
      transparent 100%);
}

.accommodation-card.featured .accommodation-overlay {
  padding: 2.5rem;
}

.accommodation-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.accommodation-card.featured .accommodation-type {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
}

.accommodation-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.accommodation-card.featured .accommodation-name {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.accommodation-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.accommodation-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accommodation-features {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}

.accommodation-card:hover .accommodation-features {
  opacity: 1;
  transform: translateY(0);
}

.accommodation-feature {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.accommodation-feature svg {
  width: 16px;
  height: 16px;
}

.accommodation-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  color: var(--indigo);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accommodation-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--mauve);
}

.accommodations-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .accommodations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .accommodation-card {
    height: 280px;
  }

  .accommodation-card.featured {
    grid-column: span 2;
    grid-row: span 1;
    height: 350px;
  }
}

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

  .accommodation-card.featured {
    grid-column: span 1;
    height: 300px;
  }

  .accommodation-card {
    height: 260px;
  }

  .accommodation-features {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: white;
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
}

.urgency-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.urgency-banner strong {
  font-weight: 700;
}

.urgency-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-right: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.navbar.scrolled .lang-btn {
  border-color: rgba(65, 65, 107, 0.2);
  color: var(--indigo);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-btn:hover {
  background: var(--sand-light);
}

/* Phone in navbar */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 1.5rem;
  transition: color 0.3s;
}

.navbar.scrolled .nav-phone {
  color: var(--indigo);
}

.nav-phone:hover {
  color: var(--coral);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .destination-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 400px;
  }

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

  .payment-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-features {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .navbar {
    top: 65px;
    /* Taller urgency banner on mobile due to text wrap */
    background: linear-gradient(180deg,
        rgba(65, 65, 107, 0.95) 0%,
        rgba(65, 65, 107, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 4%;
  }

  .navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--indigo);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.25rem;
  }

  .mobile-cta {
    display: block;
    margin-top: 1rem;
  }

  .nav-cta-mobile {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--rose));
    color: var(--white) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem !important;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .nav-cta-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(222, 116, 130, 0.4);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

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

  .destination-card:first-child {
    grid-column: span 1;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav-phone,
  .lang-selector,
  .nav-cta {
    display: none;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-icon {
    width: 50px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .trust-bar-container {
    gap: 1.5rem;
  }

  .trust-item-text strong {
    font-size: 1.1rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float::before {
    display: none;
  }

  .featured-in-logos {
    gap: 2rem;
  }

  .urgency-banner {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .payment-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}