/* Main Styles CSS - Improved Readability & Card Sizes */

/* CSS Variables */
:root {
  --primary-green: #6cb33d;
  --dark-brown: #513a2a;
  --light-brown: #8b6b4c;
  --off-white: #f5f5f0;
  --black: #1a1a1a;
  --tripadvisor-green: #6cb33d;
  --google-blue: #4285F4;
}

/* Base Styles - Improved Text Sizes */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--off-white);
  font-size: 16px; /* Increased from 14px */
  line-height: 1.7; /* Improved line height */
  color: #333;
}

/* Hero Section Styles */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

.hero-content {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
  position: relative;
}

.hero-content h1 {
  font-size: 4rem; /* Increased from 3.5rem */
  font-weight: 700;
  margin-bottom: 25px; /* Increased spacing */
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.4rem; /* Increased from 1.3rem */
  line-height: 1.6;
  margin-bottom: 35px; /* Increased spacing */
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px; /* Increased gap */
  z-index: 4;
}

.slider-dot {
  width: 14px; /* Increased from 12px */
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.3); /* Increased scale */
}

/* Section Background Styles */
.highlights-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0; /* Increased padding */
}

.highlights-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.highlights-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(74,124,89,0.6) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.highlights-section .container {
  position: relative;
  z-index: 3;
}

.climbing-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0; /* Increased padding */
}

.climbing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.climbing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climbing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(74,124,89,0.6) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.climbing-section .container {
  position: relative;
  z-index: 3;
}

/* Adventure Cards - Larger Sizes */
.adventure-card {
  background: white;
  border-radius: 15px; /* Increased border radius */
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12); /* Enhanced shadow */
  transition: all 0.3s ease;
  height: 100%;
  min-height: 380px; /* Added minimum height */
}

.adventure-card:hover {
  transform: translateY(-10px); /* Increased hover effect */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.card-img-container {
  height: 220px; /* Increased from 200px */
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-body {
  padding: 25px; /* Increased padding */
}

.card-title {
  color: var(--dark-brown, #3d2f24);
  font-size: 1.4rem; /* Increased from 1.2rem */
  font-weight: 600;
  margin-bottom: 15px; /* Increased spacing */
}

.card-text {
  color: #666;
  font-size: 1.05rem; /* Increased from 0.95rem */
  line-height: 1.7; /* Improved line height */
  margin-bottom: 20px; /* Increased spacing */
}

.adventure-btn {
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  color: white;
  padding: 12px 24px; /* Increased padding */
  border-radius: 25px; /* More rounded */
  text-decoration: none;
  font-size: 1rem; /* Increased from 0.9rem */
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.adventure-btn:hover {
  background: linear-gradient(135deg, #3d2f24 0%, #2d1f16 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Discover Cards - Larger Sizes */
.discover-card {
  position: relative;
  height: 300px; /* Increased from 250px */
  border-radius: 15px; /* Increased border radius */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 25px; /* Added spacing */
}

.discover-card:hover {
  transform: translateY(-8px); /* Increased hover effect */
}

.discover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px; /* Increased padding */
  color: white;
  text-align: center;
}

.discover-overlay h4 {
  font-size: 1.5rem; /* Increased from 1.3rem */
  font-weight: 600;
  margin-bottom: 12px; /* Increased spacing */
}

.discover-overlay p {
  font-size: 1.05rem; /* Increased from 0.9rem */
  margin-bottom: 18px; /* Increased spacing */
  opacity: 0.9;
  line-height: 1.6;
}

.discover-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px; /* Increased padding */
  border-radius: 25px; /* More rounded */
  text-decoration: none;
  font-size: 0.95rem; /* Slightly increased */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.discover-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

/* Climbing Cards - Larger Sizes */
.climbing-card {
  position: relative;
  height: 320px; /* Increased from 280px */
  border-radius: 15px; /* Increased border radius */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 25px; /* Added spacing */
}

.climbing-card:hover {
  transform: translateY(-8px); /* Increased hover effect */
}

.climbing-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px; /* Increased padding */
  color: white;
}

.climbing-days {
  position: absolute;
  top: 20px; /* Increased from 15px */
  right: 20px;
  background: #6cb33d;
  color: white;
  padding: 8px 16px; /* Increased padding */
  border-radius: 20px; /* More rounded */
  font-size: 0.9rem; /* Increased from 0.8rem */
  font-weight: 600;
}

.climbing-card-overlay h4 {
  font-size: 1.5rem; /* Increased from 1.3rem */
  font-weight: 600;
  margin-bottom: 12px; /* Increased spacing */
}

.climbing-card-overlay p {
  font-size: 1.05rem; /* Increased from 0.9rem */
  opacity: 0.9;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-item {
  display: flex;
  gap: 25px; /* Increased gap */
  padding: 25px 0; /* Increased padding */
}

.why-choose-icon {
  width: 70px; /* Increased from 60px */
  height: 70px;
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem; /* Increased from 1.5rem */
  flex-shrink: 0;
}

.why-choose-content h4 {
  color: #3d2f24;
  font-size: 1.5rem; /* Increased from 1.3rem */
  font-weight: 600;
  margin-bottom: 12px; /* Increased spacing */
}

.why-choose-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem; /* Added explicit size */
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px; /* Increased border radius */
  padding: 30px; /* Increased padding */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08); /* Enhanced shadow */
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px); /* Increased hover effect */
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; /* Increased spacing */
}

.review-stars {
  color: #ffc107;
  font-size: 1rem; /* Increased from 0.9rem */
}

.review-platform {
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px; /* Increased padding */
  border-radius: 15px; /* More rounded */
  font-size: 0.85rem; /* Slightly increased */
  font-weight: 500;
}

.review-body p {
  color: #444;
  font-style: italic;
  line-height: 1.7; /* Improved line height */
  margin-bottom: 20px; /* Increased spacing */
  font-size: 1.05rem; /* Added explicit size */
}

.review-footer {
  border-top: 1px solid #eee;
  padding-top: 20px; /* Increased spacing */
}

.reviewer-name {
  font-weight: 600;
  color: #3d2f24;
  font-size: 1rem; /* Added explicit size */
}

.review-date {
  color: #999;
  font-size: 0.9rem; /* Slightly increased */
  margin-left: 10px;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px; /* Increased border radius */
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08); /* Enhanced shadow */
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px); /* Increased hover effect */
}

.blog-img-container {
  position: relative;
  height: 220px; /* Increased from 200px */
  overflow: hidden;
}

.blog-content {
  padding: 25px; /* Increased padding */
}

.blog-title {
  color: #3d2f24;
  font-size: 1.3rem; /* Increased from 1.1rem */
  font-weight: 600;
  margin-bottom: 15px; /* Increased spacing */
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  font-size: 1.05rem; /* Increased from 0.9rem */
  line-height: 1.7; /* Improved line height */
  margin-bottom: 20px; /* Increased spacing */
}

/* Common Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px; /* Increased spacing */
}

.section-header h2 {
  font-size: 2.8rem; /* Increased from 2.5rem */
  font-weight: 700;
  color: #3d2f24;
  margin-bottom: 20px; /* Increased spacing */
}

.section-header h2.text-white {
  color: white !important;
}

.section-header p {
  font-size: 1.15rem; /* Increased size */
  line-height: 1.7;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.section-divider {
  width: 70px; /* Increased from 60px */
  height: 4px; /* Increased from 3px */
  background: #6cb33d;
  margin: 0 auto 25px; /* Increased spacing */
}

.adventure-intro,
.climbing-intro {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem; /* Added explicit size */
  line-height: 1.7;
}

/* Button Styles - Improved for All Devices */
.btn-primary-custom {
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  color: white;
  padding: 14px 32px; /* Increased padding */
  border-radius: 30px; /* More rounded */
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem; /* Increased size */
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  min-width: 160px; /* Added minimum width */
  text-align: center;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #3d2f24 0%, #2d1f16 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: transparent;
  color: #6cb33d;
  padding: 14px 32px; /* Increased padding */
  border: 2px solid #6cb33d;
  border-radius: 30px; /* More rounded */
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem; /* Increased size */
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 160px; /* Added minimum width */
  text-align: center;
}

.btn-secondary-custom:hover {
  background: #6cb33d;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* For sections with dark backgrounds */
.highlights-section .btn-secondary-custom,
.climbing-section .btn-secondary-custom {
  color: white;
  border-color: white;
}

.highlights-section .btn-secondary-custom:hover,
.climbing-section .btn-secondary-custom:hover {
  background: white;
  color: #6cb33d;
}

/* Responsive Design - Improved Mobile Buttons */
@media (max-width: 992px) {
  .hero-section {
      height: 80vh;
  }
  
  .hero-content h1 {
      font-size: 3rem;
  }
  
  .hero-content p {
      font-size: 1.2rem;
  }
  
  .section-header h2 {
      font-size: 2.4rem;
  }
  
  .adventure-card {
      min-height: 350px;
  }
  
  .discover-card,
  .climbing-card {
      height: 280px;
  }
}

@media (max-width: 768px) {
  .hero-section {
      height: 70vh;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content p {
      font-size: 1.1rem;
  }
  
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .why-choose-item {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }
  
  .adventure-card {
      min-height: 320px;
      margin-bottom: 20px;
  }
  
  .discover-card,
  .climbing-card {
      height: 250px;
      margin-bottom: 20px;
  }
  
  /* Better Mobile Button Styling */
  .btn-primary-custom,
  .btn-secondary-custom {
      padding: 12px 24px; /* Reduced for mobile */
      font-size: 1rem; /* Slightly reduced */
      min-width: 140px; /* Reduced minimum width */
      margin: 8px; /* Added margin for spacing */
  }
  
  /* Stack buttons vertically on mobile with better spacing */
  .d-flex.flex-column.flex-sm-row.gap-3 {
      gap: 0 !important;
  }
  
  .d-flex.flex-column.flex-sm-row.gap-3 .btn-primary-custom,
  .d-flex.flex-column.flex-sm-row.gap-3 .btn-secondary-custom {
      width: auto;
      display: inline-block;
      margin: 6px 8px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
      font-size: 2.2rem;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .card-body {
      padding: 20px;
  }
  
  .adventure-card {
      min-height: 300px;
  }
  
  .discover-card,
  .climbing-card {
      height: 220px;
  }
  
  /* Mobile-specific button improvements */
  .btn-primary-custom,
  .btn-secondary-custom {
      padding: 11px 20px; /* Compact but readable */
      font-size: 0.95rem;
      min-width: 120px;
      border-radius: 25px; /* Slightly less rounded on mobile */
  }
  
  /* Center buttons on mobile */
  .text-center .btn-primary-custom,
  .text-center .btn-secondary-custom {
      margin: 5px;
  }
}

/* Additional spacing improvements */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
      padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
      padding: 50px 0;
  }
}

/* CSS Variables */


/* Common Button Styles */
.btn-primary-custom {
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #3d2f24 0%, #2d1f16 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: transparent;
  color: #6cb33d;
  padding: 14px 32px;
  border: 2px solid #6cb33d;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

.btn-secondary-custom:hover {
  background: #6cb33d;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Common Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3d2f24;
  margin-bottom: 20px;
}

.section-header h2.text-white {
  color: white !important;
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: #6cb33d;
  margin: 0 auto 25px;
}

.section-padding {
  padding: 80px 0;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

.hero-content {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
  position: relative;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.3);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #f9f9f5;
}

.about-text h3 {
  color: var(--dark-brown);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 15px;
  margin-bottom: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Mobile Responsive for style.css */
@media (max-width: 768px) {
  .btn-primary-custom,
  .btn-secondary-custom {
      padding: 12px 24px;
      font-size: 1rem;
      min-width: 140px;
      margin: 8px;
  }
  
  .d-flex.flex-column.flex-sm-row.gap-3 {
      gap: 0 !important;
  }
  
  .d-flex.flex-column.flex-sm-row.gap-3 .btn-primary-custom,
  .d-flex.flex-column.flex-sm-row.gap-3 .btn-secondary-custom {
      width: auto;
      display: inline-block;
      margin: 6px 8px;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content p {
      font-size: 1.1rem;
  }
  
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .section-padding {
      padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .btn-primary-custom,
  .btn-secondary-custom {
      padding: 11px 20px;
      font-size: 0.95rem;
      min-width: 120px;
      border-radius: 25px;
  }
  
  .text-center .btn-primary-custom,
  .text-center .btn-secondary-custom {
      margin: 5px;
  }
  
  .hero-content h1 {
      font-size: 2.2rem;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .section-padding {
      padding: 50px 0;
  }
}

/* main-styles.css - Complete styles for Tanzania Scenic Adventure */

/* Adventure Highlights Section */
.highlights-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.highlights-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.highlights-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(74,124,89,0.6) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.highlights-section .container {
  position: relative;
  z-index: 3;
}

.adventure-intro,
.climbing-intro {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Adventure Cards - Larger Sizes */
.adventure-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 380px;
}

.adventure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.card-img-container {
  height: 220px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-body {
  padding: 25px;
}

.card-title {
  color: var(--dark-brown, #3d2f24);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.adventure-btn {
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.adventure-btn:hover {
  background: linear-gradient(135deg, #3d2f24 0%, #2d1f16 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Discover Tanzania Section */
.discover-section {
  padding: 80px 0;
}

.discover-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #333;
}

.discover-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 25px;
}

.discover-card:hover {
  transform: translateY(-8px);
}

.discover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  color: white;
  text-align: center;
}

.discover-overlay h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.discover-overlay p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.discover-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.discover-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

/* Climbing Section */
.climbing-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.climbing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.climbing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climbing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(74,124,89,0.6) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.climbing-section .container {
  position: relative;
  z-index: 3;
}

.climbing-card {
  position: relative;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 25px;
}

.climbing-card:hover {
  transform: translateY(-8px);
}

.climbing-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  color: white;
}

.climbing-days {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #6cb33d;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.climbing-card-overlay h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.climbing-card-overlay p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
}

.why-choose-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #333;
}

.why-choose-item {
  display: flex;
  gap: 25px;
  padding: 25px 0;
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6cb33d 0%, #6cb33d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.why-choose-content h4 {
  color: #3d2f24;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-choose-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-stars {
  color: #ffc107;
  font-size: 1rem;
}

.review-platform {
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.review-body p {
  color: #444;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.review-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.reviewer-name {
  font-weight: 600;
  color: #3d2f24;
  font-size: 1rem;
}

.review-date {
  color: #999;
  font-size: 0.9rem;
  margin-left: 10px;
}

/* Carousel Controls */
#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

#reviewsCarousel .carousel-control-prev {
  left: -25px;
}

#reviewsCarousel .carousel-control-next {
  right: -25px;
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
  background-color: #6cb33d;
  border-radius: 4px;
  width: 20px;
  height: 20px;
}

#reviewsCarousel .carousel-indicators {
  bottom: -50px;
}

#reviewsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  margin: 0 5px;
}

#reviewsCarousel .carousel-indicators button.active {
  background-color: #6cb33d;
  transform: scale(1.2);
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-date .day {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3d2f24;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  background: #e8f4ea;
  color: #6cb33d;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-title {
  color: #3d2f24;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  color: #6cb33d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #3d2f24;
  text-decoration: none;
}

/* Button Styles for Sections with Dark Backgrounds */
.highlights-section .btn-secondary-custom,
.climbing-section .btn-secondary-custom {
  color: white;
  border-color: white;
}

.highlights-section .btn-secondary-custom:hover,
.climbing-section .btn-secondary-custom:hover {
  background: white;
  color: #6cb33d;
}

/* Responsive Design */
@media (max-width: 992px) {
  .highlights-section,
  .climbing-section,
  .discover-section,
  .why-choose-section,
  .reviews-section,
  .blog-section {
      padding: 60px 0;
  }
  
  .adventure-card {
      min-height: 350px;
  }
  
  .discover-card,
  .climbing-card {
      height: 280px;
  }
  
  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
      display: none;
  }
}

@media (max-width: 768px) {
  .highlights-section,
  .climbing-section,
  .discover-section,
  .why-choose-section,
  .reviews-section,
  .blog-section {
      padding: 50px 0;
  }
  
  .why-choose-item {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }
  
  .adventure-card {
      min-height: 320px;
      margin-bottom: 20px;
  }
  
  .discover-card,
  .climbing-card {
      height: 250px;
      margin-bottom: 20px;
  }
  
  .card-body {
      padding: 20px;
  }
}

@media (max-width: 576px) {
  .adventure-card {
      min-height: 300px;
  }
  
  .discover-card,
  .climbing-card {
      height: 220px;
  }
  
  .climbing-days {
      top: 15px;
      right: 15px;
      padding: 6px 12px;
      font-size: 0.8rem;
  }
  
  .discover-overlay,
  .climbing-card-overlay {
      padding: 20px;
  }
  
  .discover-overlay h4,
  .climbing-card-overlay h4 {
      font-size: 1.3rem;
  }
  
  .discover-overlay p,
  .climbing-card-overlay p {
      font-size: 0.95rem;
  }
}