/* Hero Section Styles */
.mordern-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('images/kilimajaro.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.hero-heading {
  font-family: 'Finger Paint', cursive;
  font-size: 4rem;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(45deg, #ff8c06, #e67e22);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 4.5rem;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover:before {
  left: 100%;
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.8rem;
  }
  
  .hero-subheading {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 2.2rem;
  }
  
  .hero-subheading {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 10px 25px;
  }
}

/* Premium Overview Section Styles */
.premium-overview {
  padding: 5rem 2rem;
  background-color: #fff;
  color: #333;
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.overview-content {
  flex: 1;
}

.overview-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.overview-image:hover {
  transform: translateY(-5px);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overview-image img:hover {
  transform: scale(1.03);
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D35400;
  margin-bottom: 1rem;
  display: block;
}

.main-heading {
  font-family: 'Finger Paint', cursive;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}

.tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #7F8C8D;
  margin-bottom: 2rem;
}

.description {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #34495E;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: #E67E22;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
  background-color: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.route-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7F8C8D;
}

/* Responsive Design */
@media (max-width: 992px) {
  .overview-container {
    gap: 3rem;
  }
  
  .main-heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .premium-overview {
    padding: 3rem 1.5rem;
  }
  
  .overview-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .main-heading {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .premium-overview {
    padding: 2rem 1rem;
  }
  
  .main-heading {
    font-size: 1.75rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
  }
}

/* Parks Section Styles */
.parks-section {
  padding: 4rem 2rem;
  background: #fff;
  color: #2c3e50;
}

.parks-container {
  max-width: 1200px;
  margin: 0 auto;
}

.parks-header {
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 800px;
}

.parks-main-heading {
  font-family: 'Finger Paint', cursive;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.parks-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #7f8c8d;
  margin: 0;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.park-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 280px;
}

.park-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.park-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.park-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.park-card:hover .park-image img {
  transform: scale(1.05);
}

.park-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.park-card:hover .park-overlay {
  opacity: 0.9;
}

.park-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem;
  box-sizing: border-box;
}

.park-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fafdff;
  margin: 0 0 0.8rem 0;
  text-shadow: none;
}

.park-name::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #e67e22;
  margin-top: 6px;
  border-radius: 2px;
}

.park-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  text-shadow: none;
  max-width: 90%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .parks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .parks-main-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .parks-section {
    padding: 3rem 1.5rem;
  }
  
  .parks-main-heading {
    font-size: 1.8rem;
  }
  
  .parks-subheading {
    font-size: 1rem;
  }
  
  .park-card {
    height: 250px;
  }
  
  .park-content {
    padding: 1.2rem;
  }
  
  .park-name {
    font-size: 1.1rem;
  }
  
  .park-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .parks-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .park-card {
    height: 220px;
  }
  
  .parks-main-heading {
    font-size: 1.6rem;
  }
}

/* Premium Safari Itineraries Section - Compact Version with Transparent Tags */
.safari-itineraries {
  padding: 6rem 1.5rem;
  background:#ffffff;
  color: #1a2a3a;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.safari-itineraries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9IiNmMWYxZjEiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  opacity: 0.3;
  z-index: 0;
}

.itineraries-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.itineraries-header {
  text-align: center;
  margin-bottom: 4rem;
}

.itineraries-heading {
  font-family: "Finger Paint", cursive;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.itineraries-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #d35400);
  border-radius: 2px;
}

.itineraries-subheading {
  font-size: 1.15rem;
  font-weight: 400;
  color: #6b7280;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.itineraries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.itinerary-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  height: auto;
  isolation: isolate;
}

.itinerary-card.featured {
  grid-column: span 1;
}

.itinerary-card.featured .card-image {
  height: 280px;
}

.card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.itinerary-card:hover .card-image img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #fff;
  background: none; /* Transparent orange */
  padding: 0.5rem 1rem;
  border-radius: 20px;
  z-index: 2;
  box-shadow: none;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-tag {
  background: rgba(22, 160, 133, 0.85); /* Transparent teal */
  box-shadow: 0 6px 15px rgba(22, 160, 133, 0.4);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.itinerary-card:hover .card-overlay {
  opacity: 0.95;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  box-sizing: border-box;
  z-index: 1;
}

.card-title {
  font-family: 'poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.card-duration {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-duration::before {
  content: "⏱";
  color: #e67e22;
  font-size: 1rem;
}

.card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-features {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(10px);
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #fff;
  color: #e67e22;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-button:hover {
  background: #e67e22;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  gap: 0.6rem;
}

.card-button::after {
  content: "→";
  transition: transform 0.3s ease;
}

.card-button:hover::after {
  transform: translateX(3px);
}

.card-features{
    gap: 0.7rem;
    margin-bottom: -1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .itinerary-card.featured .card-image {
    height: 240px;
  }
}

@media (max-width: 1024px) {
  .safari-itineraries {
    padding: 5rem 1.5rem;
  }
  
  .itineraries-heading {
    font-size: 2.5rem;
  }
  
  .itineraries-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .safari-itineraries {
    padding: 4rem 1.2rem;
  }
  
  .itineraries-heading {
    font-size: 2.2rem;
  }
  
  .itineraries-subheading {
    font-size: 1.05rem;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
  
  .card-features {
    gap: 0.7rem;
  }
  
  .feature {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .itineraries-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .itineraries-heading {
    font-size: 2rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-description {
    -webkit-line-clamp: 2;
  }
  
  .card-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .safari-itineraries {
    padding: 3.5rem 1rem;
  }
  
  .itineraries-heading {
    font-size: 1.9rem;
  }
  
  .itineraries-heading::after {
    width: 50px;
    height: 3px;
    bottom: -6px;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-tag {
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-features {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Premium CTA Section Styles */
.premium-cta {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Olifanten-voor-de-Kilimanjaro-Tanzania-1900x1000-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cta-text {
  max-width: 600px;
}

.cta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e67e22;
  margin-bottom: 1rem;
  display: block;
}

.cta-heading {
  font-family: 'Finger Paint', cursive;
  font-size: 3.2rem;
  color: #fff;
  margin: 0 0 1.2rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem 0;
  line-height: 1.5;
}

.cta-tags {
  display: flex;
  gap: 1rem;
}

.cta-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cta-tag:hover {
  background: none;
  transform: translateY(-2px);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.availability-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: rgba(231, 76, 60, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.availability-tag:hover {
  background: rgba(231, 76, 60, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(231, 76, 60, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .premium-cta {
    height: 450px;
    text-align: center;
  }
  
  .cta-content {
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
  }
  
  .cta-text {
    margin-bottom: 2rem;
  }
  
  .cta-heading {
    font-size: 2.4rem;
  }
  
  .cta-tags {
    justify-content: center;
  }
  
  .availability-tag {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .premium-cta {
    height: 400px;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .cta-subheading {
    font-size: 1.1rem;
  }
  
  .cta-tags {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .cta-tag {
    width: fit-content;
  }
}