  :root {
    --primary-orange: #FFA500;
    --dark-bg: #1a1a1a;
  }  
  .navbar {
   background-color: rgba(0, 0, 0, 0.9);
   padding: 1rem 0;
   position: relative;
 }

 .navbar-brand {
   color: white !important;
   font-weight: bold;
   font-size: 0.9rem;
 }

 .navbar-brand img {
   margin-right: 8px;
 }

 .nav-link {
  color: #000
   font-size: 0.9rem;
   margin: 0 0.5rem;
 }

 .btn-orange {
   background-color: var(--primary-orange);
   color: white;
   border: none;
   padding: 0.5rem 1.5rem;
   border-radius: 5px;
   font-weight: 500;
 }

 .btn-orange:hover {
   background-color: #ff8c00;
   color: white;
 }

 .hero-section {
   position: relative;
   color: white;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
 }

 .hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   opacity: 0;
   transition: opacity 1.5s ease-in-out;
   z-index: 0;
 }

 .hero-bg::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
 }

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

.hero-bg-1 {
  background-image: url('../slider/penguin.jpg');
}

.hero-bg-2 {
  background-image: url('../slider/wine.jpg');
}

.hero-bg-3 {
  background-image: url('../slider/slide-1.jpg');
}

.hero-bg-4 {
  background-image: url('../slider/camps-bay.jpg');
}

.hero-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}
.intro-section {
  background-color: #2d2d2d;
  color: white;
  padding: 60px 0;
}

.intro-section p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.tour-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

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

.tour-card img {
  height: 200px;
  object-fit: cover;
}

.tour-card-body {
  padding: 1.5rem;
}

.tour-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.tour-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tour-price {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.why-section {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0;
}

.why-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.why-section p.lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.feature-item {
  margin-bottom: 2.5rem;
}

.feature-number {
  color: var(--primary-orange);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.feature-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.about-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.about-section h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-section p {
  line-height: 1.8;
  color: #666;
  font-size: 0.95rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

@media (max-width: 768px) {
  .carousel-control-prev {
    left: -25px;
  }
  .carousel-control-next {
    right: -25px;
  }
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  background-color: white;
  color: #333;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--primary-orange);
}

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

.accordion-body {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-section h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq-answer {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/cta.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffff;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #ffff;
}

footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 60px 0 30px;
}

footer h5 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.8rem;
}
footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}
footer a:hover {
  color: var(--primary-orange);
}
footer h4 {color: #FF9800}
.social-icons a {
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
}
.logo-footer {
  height: 50px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

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