/* Safari Packages Styles */
:root {
  --primary: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #C8E6C9;
  --accent: #FF9800;
  --text-dark: #2c3e50;
  --text-light: #666;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #e9ecef;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
}

/* Safari Hero Section */
.safari-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/safari.webp') center/cover;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.safari-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.safari-hero p {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Safari Hero Section */
.tour-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/offroad.webp') center/cover;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.tour-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tour-hero p {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Package Cards */
.creative-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.creative-package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creative-package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.creative-package-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.creative-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.creative-package-card:hover .creative-package-image img {
  transform: scale(1.1);
}

.creative-package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.creative-package-title {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.creative-package-title h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.creative-package-content {
  padding: 2rem;
}

.creative-package-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.creative-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.creative-feature-item:hover {
  background: var(--gray);
}

.creative-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.creative-feature-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.creative-package-cta {
  text-align: center;
  margin-top: 2rem;
}

.creative-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.creative-cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Package Filters */
.package-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.package-filter {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 25px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-filter.active,
.package-filter:hover {
  background: var(--primary);
  color: var(--white);
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

.faq-item ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.faq-item li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  color: #666;
}

.faq-item li i {
  color: #4CAF50;
  margin-right: 10px;
}

/* Package Info Grids */
.info-grids-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-grid {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-grid-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-grid-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-grid-icon.includes {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.info-grid-icon.excludes {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
}

.info-grid h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.4rem;
}

.info-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-grid li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
}

.info-grid li i {
  color: inherit;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.section-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 0;
  background: var(--gray-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--gray);
}

.comparison-table th {
  background: var(--primary);
  color: white;
}

.comparison-table .highlight {
  background: rgba(76, 175, 80, 0.1);
}

.comparison-table .price {
  font-weight: 700;
  color: var(--primary);
}

.comparison-table .tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: var(--gray-light);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .safari-hero h1 {
    font-size: 2.5rem;
  }
  
  .creative-packages-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .creative-package-image {
    height: 220px;
  }
  
  .creative-package-title h3 {
    font-size: 1.5rem;
  }
  
  .package-filters {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .package-filter {
    width: 100%;
    text-align: center;
  }
  
  .info-grids-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-text {
    font-size: 1rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
} 