/* Custom Styles for Roho Safaris Uganda */

:root {
  --primary-green: #1B5E20;
  --primary-green-dark: #0D3B13;
  --primary-green-light: #2E7D32;
  --accent-amber: #D4920A;
  --accent-amber-light: #F5B800;
  --text-dark: #1A1A1A;
  --text-muted: #6B7280;
  --bg-cream: #FDFCF9;
  --bg-light: #F8F7F4;
  --white: #FFFFFF;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-green-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--accent-amber-light);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-logo {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  height: 45px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-green);
  padding-left: 2rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-accent {
  background-color: var(--accent-amber);
  border-color: var(--accent-amber);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-amber-light);
  border-color: var(--accent-amber-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 146, 10, 0.3);
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s 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(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .d-flex {
  animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.75rem;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  background-color: var(--accent-amber);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(212, 146, 10, 0.5);
}

/* Hero Slider Arrows */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* Page Header Split Layout (with side image) */
.page-header-split {
  text-align: left;
}

.page-header-split .page-header-tagline {
  opacity: 0.85;
  font-size: 1rem;
}

.page-header-split .page-header-img {
  border: 3px solid rgba(255, 255, 255, 0.2);
  max-height: 280px;
  width: 100%;
  object-fit: cover;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 6rem 0 4rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.05'%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");
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--accent-amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 700px;
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.safari-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.safari-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.safari-card .card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.safari-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.safari-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.safari-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.safari-card .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.safari-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-green);
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.safari-card .price {
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Safari Card Meta (duration + group size) */
.safari-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.safari-meta-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.safari-meta-item i {
  color: var(--primary-green);
  font-size: 0.9rem;
}

/* Safari Destinations Route */
.safari-destinations {
  font-size: 0.8rem;
  color: var(--primary-green);
  font-weight: 600;
  background: rgba(27, 94, 32, 0.06);
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.safari-destinations i {
  color: var(--accent-amber);
  font-size: 0.85rem;
}

/* Destination Cards */
.destination-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

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

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

.destination-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem;
  color: var(--white);
  transition: padding 0.3s ease;
}

.destination-card:hover .overlay {
  padding-bottom: 2.5rem;
}

.destination-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.destination-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

/* Why Choose Us */
.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-green);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--accent-amber);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-amber);
}

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

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.testimonial-card .author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn,
.cta-section .d-flex {
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0.75rem !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-control, .form-select {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info-card {
  background: var(--primary-green);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent-amber);
  width: 40px;
}

.contact-info-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.contact-info-item p, .contact-info-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--accent-amber-light);
}

/* Footer */
.footer {
  background-color: var(--primary-green-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--accent-amber-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-amber);
  transform: translateY(-3px);
  color: var(--white);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  animation: none;
}

/* Safari Tabs */
.safari-tabs .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--bg-light);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.safari-tabs .nav-link.active {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.safari-tabs .nav-link:hover:not(.active) {
  background: #E8E7E4;
}

/* About Page */
.about-values .value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.about-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-values .value-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-values .value-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-values .value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Stats */
.stats-section {
  background-color: var(--bg-light);
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-item .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  width: 45px;
  height: 45px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  z-index: 998;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* Safari Detail Page */
.safari-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.safari-detail-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-detail-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.2) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.safari-detail-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-bottom: 3rem;
}

.safari-detail-duration {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--accent-amber-light);
  margin-bottom: 0.5rem;
}

.safari-detail-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.safari-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.safari-detail-meta i {
  color: var(--accent-amber);
}

.safari-detail-tabs .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  background: var(--white);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.safari-detail-tabs .nav-link.active {
  background: var(--white);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.safari-detail-tabs .nav-link:hover:not(.active) {
  border-color: #CCC;
}

.safari-detail-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.safari-highlights {
  background: var(--bg-light);
}

.text-primary-green {
  color: var(--primary-green) !important;
}

.included-card {
  background: var(--bg-light);
}

.excluded-card {
  background: #FFF5F5;
}

.enquiry-card {
  background: var(--primary-green-dark);
  color: var(--white);
}

.enquiry-card h3 {
  color: var(--white);
}

.enquiry-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* Itinerary Styles */
.safari-itinerary {
  max-width: 900px;
}

.itinerary-day {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
  transition: transform 0.3s ease;
}

.itinerary-day:hover {
  transform: translateX(5px);
}

.itinerary-day h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.itinerary-day .day-label {
  color: var(--primary-green);
  font-weight: 700;
}

.itinerary-day p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Route Map */
.route-map-section {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 900px;
}

.route-stops {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1rem 0;
}

.route-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.route-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.route-dot-start {
  background: var(--accent-amber);
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.route-dot-end {
  background: var(--primary-green-dark);
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.route-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  max-width: 100px;
  line-height: 1.2;
}

.route-line {
  flex: 1;
  min-width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
  margin: 0 0.25rem;
  margin-bottom: 1.75rem;
  border-radius: 2px;
}

/* Pricing Table */
.pricing-table-section {
  background: var(--bg-light);
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-table-wrapper {
  padding: 2rem;
}

.pricing-table-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--primary-green);
}

.pricing-table thead th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  border: none;
}

.pricing-table tbody td {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-green-dark);
  border-right: 1px solid rgba(27, 94, 32, 0.15);
  background: var(--white);
}

.pricing-table tbody td:last-child {
  border-right: none;
}

/* Sidebar Route Card */
.sidebar-route-card,
.sidebar-map-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(27, 94, 32, 0.1);
}

.sidebar-route-card h4,
.sidebar-map-card h4 {
  color: var(--primary-green);
}

/* Vertical Route Stops */
.route-stops-vertical {
  position: relative;
  padding-left: 1.5rem;
}

.route-stops-vertical::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-green), var(--primary-green-light), var(--primary-green-dark));
  border-radius: 2px;
}

.route-stop-item {
  position: relative;
  padding: 0.5rem 0;
  padding-left: 1rem;
}

.route-stop-dot {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-green);
  z-index: 1;
}

.route-start .route-stop-dot {
  background: var(--primary-green-light);
  box-shadow: 0 0 0 2px var(--primary-green-light);
  width: 24px;
  height: 24px;
  left: calc(-1.5rem - 2px);
}

.route-end .route-stop-dot {
  background: var(--primary-green-dark);
  box-shadow: 0 0 0 2px var(--primary-green-dark);
  width: 24px;
  height: 24px;
  left: calc(-1.5rem - 2px);
}

.route-stop-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.route-start .route-stop-label {
  color: var(--primary-green-light);
  font-weight: 700;
}

.route-end .route-stop-label {
  color: var(--primary-green-dark);
  font-weight: 700;
}

/* Safari Google Map */
.safari-map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(27, 94, 32, 0.2);
}

.safari-google-map {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Book Tour Hero Button */
.book-tour-hero-btn {
  animation: fadeInUp 1s ease 0.6s both;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .safari-tabs .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .safari-detail-content h1 {
    font-size: 2.25rem;
  }

  .safari-detail-tabs .nav-link {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-prev { left: 0.75rem; }
  .hero-next { right: 0.75rem; }

  .route-stops {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-stop {
    flex-direction: row;
    gap: 0.75rem;
  }

  .route-line {
    width: 3px;
    min-width: 3px;
    height: 25px;
    min-height: 25px;
    margin: 0.25rem 0 0.25rem 17px;
  }

  .route-label {
    max-width: none;
    text-align: left;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 0;
  }

  .destination-card {
    height: 250px;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 4rem 0 3rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .safari-detail-hero {
    min-height: 50vh;
  }

  .safari-detail-content h1 {
    font-size: 1.75rem;
  }

  .safari-detail-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .safari-detail-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .safari-detail-card {
    padding: 1.5rem;
  }

  .itinerary-day {
    padding: 1.5rem;
  }
}
