/* ========================================
   FORCE SPLIT INTRO & SIDEBAR LAYOUT
   ======================================== */
.intro-split-layout {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 50px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  align-items: start !important;
}

.tour-intro-main {
  text-align: left !important;
}

.tour-intro-main h2 {
  font-family: Coldiac, serif !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  color: #d4af37 !important;
  margin: 0 0 25px !important;
  line-height: 1.3 !important;
}

.tour-intro-main p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.tour-intro-sidebar {
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 16px !important;
  padding: 35px 30px !important;
  position: sticky !important;
  top: 110px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  margin-top: 0 !important;
}

.tour-intro-sidebar .sidebar-widget h3 {
  font-family: Coldiac, serif !important;
  font-size: 22px !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 25px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
  padding-bottom: 15px !important;
}

.sidebar-dest-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar-dest-list li {
  margin-bottom: 15px !important;
}

.sidebar-dest-list li a {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  color: #cccccc !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.sidebar-dest-list li a::before {
  content: "→" !important;
  color: #d4af37 !important;
  margin-right: 12px !important;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.sidebar-dest-list li a:hover {
  color: #d4af37 !important;
  transform: translateX(6px) !important;
}

@media (max-width: 992px) {
  .intro-split-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .tour-intro-sidebar {
    position: static !important;
    padding: 30px 20px !important;
  }
}
/* ========================================
   DESTINATION GUIDE PAGE STYLES
   Used on: /destinations/masai-mara
   ======================================== */

body.destination-guide-page,
.main {
  background-color: #000000;
}


/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}


/* ========================================
   INTRO SECTION (SPLIT LAYOUT)
   ======================================== */

.tour-content-section {
  background-color: #000000;
  padding: 80px 0;
}

.intro-split-layout {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 50px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  align-items: start !important;
}

/* Left Content Styles */
.tour-intro-main {
  text-align: left !important;
}

.tour-intro-main h2 {
  font-family: Coldiac, serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0 0 25px !important;
  line-height: 1.3;
}

.tour-intro-main p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.tour-intro-main a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.tour-intro-main a:hover,
.tour-intro-main a:focus {
  color: #ffffff;
  border-bottom-color: #d4af37;
  text-decoration: none;
}

/* Right Sidebar Styles */
.tour-intro-sidebar {
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 35px 30px;
  position: sticky;
  top: 110px; /* Sticks the sidebar to the screen on scroll */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 0 !important;
}

.tour-intro-sidebar .sidebar-widget h3 {
  font-family: Coldiac, serif;
  font-size: 22px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 15px;
}

.sidebar-dest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-dest-list li {
  margin-bottom: 15px;
}

.sidebar-dest-list li:last-child {
  margin-bottom: 0;
}

.sidebar-dest-list li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Golden Arrow before the links */
.sidebar-dest-list li a::before {
  content: "→";
  color: #d4af37;
  margin-right: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.sidebar-dest-list li a:hover {
  color: #d4af37;
  transform: translateX(6px);
}

.sidebar-dest-list li a:hover::before {
  transform: translateX(4px);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .intro-split-layout {
    grid-template-columns: 1fr !important; /* Stacks to a single column on tablets/mobile */
    gap: 40px !important;
  }
  
  .tour-intro-sidebar {
    position: static !important; /* Removes sticky behavior on smaller screens */
    padding: 30px 20px;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .tour-intro-main h2 {
    font-size: 28px;
  }
  
  .tour-intro-main p {
    font-size: 16px;
  }
  
  .tour-intro-sidebar .sidebar-widget h3 {
    font-size: 20px;
  }
  
  .sidebar-dest-list li a {
    font-size: 15px;
  }
}
/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  background-color: #000000;
  padding: 100px 0;
  margin: 0;
}

.content-section + .content-section {
  padding-top: 100px;
}

.content-section .container {
  padding: 0 40px;
  max-width: 100%;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.content-text {
  flex: 1;
  color: #ffffff;
}

.content-text h2 {
  font-family: Coldiac;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 30px;
  line-height: 1.2;
}

.content-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.content-text a:hover,
.content-text a:focus {
  color: #d4af37;
  text-decoration: none;
}

.content-image {
  flex: 0 0 450px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}


/* Layout helpers */

.content-section.content-left .content-wrapper,
.content-section.content-right .content-wrapper {
  flex-direction: row;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.luxury-faq-section {
  background-color: #000000;
  padding: 80px 0;
}

.luxury-faq-section .container {
  padding: 0 40px;
}

.faq-header {
  margin-bottom: 60px;
  text-align: center;
}

.faq-header h2 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-family: McQueen;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  padding-right: 20px;
  text-transform: none;
}

.faq-question i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}


/* ========================================
   EXPLORE MORE DESTINATIONS
   ======================================== */

.explore-destinations {
  background: #000000;
  padding: 80px 0;
}

.explore-destinations h2 {
  text-align: center;
  color: #d4af37;
  font-family: Coldiac;
  font-size: 38px;
  margin-bottom: 50px;
  text-transform: uppercase;
}


/* ========================================
   DESTINATION LINKS
   ======================================== */

.destination-links {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.destination-links ul {
  list-style: disc;
  padding-left: 30px;
  margin: 0 0 30px;
}

.destination-links li {
  margin-bottom: 16px;
  padding-left: 5px;
}

.destination-links a {
  color: #d4af37;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.destination-links li a {
  display: inline-block;
}

.destination-links li a:hover {
  color: #ffffff;
  transform: translateX(8px);
}


/* ========================================
   VIEW ALL DESTINATIONS
   ======================================== */

.view-all-tours {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-tours:hover {
  color: #ffffff;
  transform: translateX(5px);
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 1400px) {

  .content-wrapper {
    gap: 80px;
  }

  .content-image {
    flex: 0 0 500px;
    max-width: 500px;
  }

}


@media (min-width: 992px) and (max-width: 1399px) {

  .content-wrapper {
    gap: 50px;
  }

  .content-text h2 {
    font-size: 36px;
  }

  .content-image {
    flex: 0 1 400px;
    max-width: 400px;
  }

}


@media (max-width: 991px) {

  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .tour-content-section {
    padding: 70px 0;
  }

  .content-section {
    padding: 80px 0;
  }

  .content-section + .content-section {
    padding-top: 80px;
  }

  .content-section .container,
  .luxury-faq-section .container {
    padding: 0 30px;
  }

  .content-wrapper,
  .content-section.content-left .content-wrapper,
  .content-section.content-right .content-wrapper {
    flex-direction: column !important;
    gap: 40px;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .content-text h2,
  .cta-section h3 {
    font-size: 2rem;
  }

  .content-image img {
    height: 400px;
  }

  .tour-intro h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .tour-intro p,
  .cta-section p {
    font-size: 1rem;
  }

  .cta-section {
    padding: 80px 0;
  }


  /* Explore destinations */

  .destination-links {
    max-width: 450px;
  }

}


@media (max-width: 767px) {

  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .tour-content-section {
    padding: 60px 0;
  }

  .content-section {
    padding: 60px 0;
  }

  .content-section + .content-section {
    padding-top: 60px;
  }

  .content-section .container,
  .luxury-faq-section .container {
    padding: 0 20px;
  }

  .content-wrapper {
    gap: 30px;
  }

  .content-text h2,
  .cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .content-text p,
  .tour-intro p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .content-image img {
    height: 350px;
    border-radius: 15px;
  }

  .tour-intro h2,
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-family: McQueen;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }


  /* Explore destinations */

  .explore-destinations {
    padding: 60px 0;
  }

  .explore-destinations h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .destination-links {
    max-width: 400px;
  }

  .destination-links ul {
    padding-left: 25px;
  }

  .destination-links a {
    font-size: 17px;
  }

}


@media (max-width: 576px) {

  .hero-section {
    height: 200px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .content-text h2,
  .cta-section h3,
  .tour-intro h2,
  .faq-header h2 {
    font-size: 1.5rem;
  }

  .content-text p,
  .tour-intro p,
  .cta-section p {
    font-size: 0.9rem;
  }

  .content-image img {
    height: 300px;
    border-radius: 12px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .cta-section .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }


  /* Explore destinations */

  .explore-destinations {
    padding: 50px 0;
  }

  .explore-destinations h2 {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .destination-links {
    max-width: 100%;
    padding: 0 20px;
  }

  .destination-links ul {
    padding-left: 25px;
  }

  .destination-links li {
    margin-bottom: 14px;
  }

  .destination-links a {
    font-size: 16px;
  }

  .view-all-tours {
    font-size: 16px;
  }

}