/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;600;700&display=swap');

.hero-section {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                    url('images/TT_04167tab.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
  box-sizing: border-box;
}

.hero-content {
  max-width: 800px;
  color: #ffffff;
}

.destination-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 27px; /* Increased from 24px */
  color: #f8d56b;
  display: block;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.destination-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 70px; /* Increased from 64px */
  line-height: 1.1;
  margin: 0 0 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.destination-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px; /* Increased from 18px */
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .destination-title {
    font-size: 72px;
  }
}

@media (max-width: 992px) {
  .destination-title {
    font-size: 62px;
  }
  .destination-description {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 8%;
  }
  .destination-tag {
    font-size: 30px;
  }
  .destination-title {
    font-size: 52px;
  }
  .destination-description {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .destination-tag {
    font-size: 26px;
  }
  .destination-title {
    font-size: 42px;
  margin-bottom: 20px;
  }
  .destination-description {
    font-size: 18px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;600;700&display=swap');

.overview-section {
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.text-content {
  flex: 1;
  min-width: 400px;
}

.section-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #2C3E20;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #333;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.section-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

.highlights {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #2C3E20;
}

.highlight-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-gallery {
  flex: 1;
  min-width: 400px;
  position: relative;
}

.gallery-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.gallery-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-dots .dot.active {
  background-color: #2C3E20;
}

/* Responsive Design */
@media (max-width: 992px) {
  .overview-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .text-content, .image-gallery {
    min-width: 100%;
  }
  
  .gallery-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .overview-container {
    padding: 0 25px;
  }
  
  .highlights {
    flex-direction: column;
    gap: 20px;
  }
  
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .overview-section {
    padding: 60px 0;
  }
  
  .gallery-container {
    height: 300px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;600;700&display=swap');

.wilderness-section {
  width: 100%;
  padding: 80px 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
}

.wilderness-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #2C3E20;
  display: block;
  margin-bottom: 15px;
}

.wilderness-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #2a2a2a;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.wilderness-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0 auto;
  max-width: 600px;
}

.experience-cards-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 1400px;
}

/* Desktop - Cards fit viewport */
.experience-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.experience-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(193, 154, 91, 0.3);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  color: white;
}

.experience-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.experience-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Mobile - Horizontal scrolling */
@media (max-width: 992px) {
  .experience-cards-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #2C3E20 #faf7f2;
    -webkit-overflow-scrolling: touch;
  }

  .experience-cards-container::-webkit-scrollbar {
    height: 8px;
  }

  .experience-cards-container::-webkit-scrollbar-track {
    background: #faf7f2;
  }

  .experience-cards-container::-webkit-scrollbar-thumb {
    background-color: #2C3E20;
    border-radius: 4px;
  }

  .experience-card {
    flex: 0 0 auto;
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .wilderness-section {
    padding: 60px 20px;
  }
  
  .wilderness-title {
    font-size: 36px;
  }
  
  .wilderness-description {
    font-size: 16px;
  }
  
  .experience-card {
    height: 320px;
    width: 240px;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .experience-card h3 {
    font-size: 22px;
  }
  
  .experience-card p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .wilderness-tag {
    font-size: 24px;
  }
  
  .wilderness-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .experience-card {
    height: 280px;
    width: 220px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.serengeti-packages {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.packages-intro {
  flex: 1;
  min-width: 400px;
}

.intro-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E20;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.intro-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #2a2a2a;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.intro-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

.package-highlights h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #333;
  margin: 0 0 20px 0;
}

.highlight-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.highlight-features li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.highlight-features li:before {
  content: "•";
  color: #2C3E20;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -3px;
}

.package-cards {
  flex: 1;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #2C3E20 #f0f0f0;
}

.package-cards::-webkit-scrollbar {
  height: 6px;
}

.package-cards::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.package-cards::-webkit-scrollbar-thumb {
  background-color: #2C3E20;
  border-radius: 3px;
}

.package-card {
  min-width: 320px;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.card-details {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  color: white;
}

.card-info {
  margin-bottom: 20px;
}

.card-type {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #D4C5A0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.card-duration {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.card-pricing {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.daily-price {
  margin-bottom: 15px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: white;
  display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.price-note {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.total-cost {
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.package-inclusions {
  list-style-type: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.package-inclusions li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.package-inclusions li:before {
  content: "✓";
  color: #D4C5A0;
  font-size: 14px;
  position: absolute;
  left: 0;
}

.cta-button {
  width: 100%;
  padding: 14px;
  background-color: #D4C5A0;
  color: #2C3E20;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.cta-button:hover {
  background-color: #D4C5A0;
  transform: translateY(-2px);
}

/* Card type modifiers */
.budget-card {
  background-image: url('images/TT_05387tab.jpg');
}

.midrange-card {
  background-image: url('images/TT_03972tab.jpg');
}

.luxury-card {
  background-image: url('images/TT_04238tab.jpg');
}

.ultra-luxury-card {
  background-image: url('images/TT_06684_DxOtab.jpg');
}

@media (max-width: 1200px) {
  .package-card {
    min-width: 300px;
    height: 450px;
  }
}

@media (max-width: 992px) {
  .packages-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .packages-intro {
    min-width: 100%;
  }
  
  .package-cards {
    padding-bottom: 15px;
  }
  
  .package-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .packages-container {
    padding: 0 25px;
  }
  
  .intro-title {
    font-size: 32px;
  }
  
  .package-card {
    min-width: 280px;
    height: 400px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .serengeti-packages {
    padding: 80px 0;
  }
  
  .intro-title {
    font-size: 28px;
  }
  
  .intro-description,
  .highlight-features li,
  .package-highlights h3 {
    font-size: 15px;
  }
  
  .price-amount {
    font-size: 28px;
  }
  
  .package-card {
    min-width: 260px;
    height: 380px;
  }
}

/* Premium Best Time Section */
.premium-timing-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.premium-timing-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('images/serengeti-pattern.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.premium-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.premium-image-wrapper {
  flex: 0 0 48%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.premium-safari-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 600px;
}

.image-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.9);
  padding: 8px 20px;
  border-radius: 30px;
  z-index: 2;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.badge-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C3E20;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-content {
  flex: 1;
  padding-top: 30px;
}

.premium-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E20;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.premium-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 40px 0;
  position: relative;
}

.premium-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2C3E20;
}

.season-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}

.season-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: none;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.season-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.season-dates {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2a2a2a;
}

.season-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-tag {
  background: rgba(193, 154, 91, 0.1);
  color: #c19a5b;
  border: 1px solid rgba(193, 154, 91, 0.3);
}

.luxury-tag {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.value-tag {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.season-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px 0;
}

.season-meta {
  display: flex;
  gap: 20px;
}

.meta-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
}

.meta-item i {
  margin-right: 8px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .premium-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .premium-image-wrapper {
    flex: 1;
    min-height: 400px;
  }
  
  .premium-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .premium-title {
    font-size: 36px;
  }
  
  .season-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .season-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .premium-timing-section {
    padding: 70px 0;
  }
  
  .premium-title {
    font-size: 32px;
  }
  
  .season-desc {
    font-size: 15px;
  }
}

.serengeti-cta {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/TT_04217tab.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.serengeti-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.serengeti-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
}

.serengeti-cta-pretitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.serengeti-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.serengeti-cta-title span {
    font-family: 'Dancing Script', cursive;
    color: #e8b954;
}

.serengeti-cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.serengeti-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, #3C4F2A 0%, #2C3E20 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.serengeti-cta-button i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.serengeti-cta-button:hover {
    background: linear-gradient(90deg, #3C4F2A 0%, #2C3E20 100%);
    transform: translateY(-2px);
}

.serengeti-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .serengeti-cta {
        height: 450px;
        background-position: 60% center;
    }
    
    .serengeti-cta-overlay {
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .serengeti-cta-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .serengeti-cta-title {
        font-size: 36px;
    }
    
    .serengeti-cta-subtitle {
        max-width: 100%;
        font-size: 16px;
    }
    
    .serengeti-cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .serengeti-cta {
        height: 400px;
    }
    
    .serengeti-cta-title {
        font-size: 28px;
    }
    
    .serengeti-cta-subtitle {
        font-size: 15px;
    }
}