@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {

  --bg: white;
  --bgl2: #f0f4f9;
  --accent: #863e23;
  --accent-2: #77943d;
  --muted: #36393d;
  --muted1:#7a8190;
  --muted2: #ccc;
  --text_color: #36393d;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.7);
  --btnbghoverl: rgba(0, 0, 0, 0.05);
  --shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
  --radius: 14px;
  --top-bar-height: 35px; /* Approximate height of the top bar */
  --header-height: 80px; /* Height of the main header */
  --total-header-height: calc(var(--top-bar-height) + var(--header-height) + 20px); /* Total combined height */

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;

  /* Dark Mode Colors */
  --bgd: #000000;
  --bgd1: #141414;
  --bgd_l2: #1a1a1a;
  --bgd_l3: #1d1d1d;
  --bgd_l4: #262626;
  --bgd_l5: #333333;
  --accentd: #863e23;
  --accentd-2: #77943d;
  --text_colord: white;

  --largest_font_size: 36px;
  --large_font_size: 22px;
  --normal_font_size: 18px;
  --small_font_size: 15px;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text_color);
  font-size: var(--normal_font_size);
  width: 100%;
}



a {
  color: inherit;
  text-decoration: none;
  color: var(--accent);
}
.no-scroll {
  overflow: hidden;
  position: fixed; /* This prevents the main content from jumping */
  width: 100%; /* Ensures the content maintains its width */
}


.fixed-header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--muted2);
}

/* TOP BAR */
.top-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  font-size: var(--small_font_size);
  background: var(--bgl2);
  border-bottom: 1px solid var(--muted2);
}

.top-bar-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  text-decoration: underline;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.top-bar-actions a {
  color: var(--text_color);
}

.lang-switcher-container {
  position: relative;
  display: inline-block;
}

.lang-switcher-btn,
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  border: 1px solid var(--muted2);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text_color);
  font-weight: 500;
  transition: all 0.2s ease-in-o ut;
}

.lang-switcher-btn:hover,
.mode-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.divider {
  width: 1px;
  height: 16px;
  background-color: var(--muted2);
  transition: background-color 0.3s ease;
}

.lang-flag img {
  width: 20px;
  height: auto;
}

/* Language Dropdown Menu */
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: var(--bg);
  border: 1px solid var(--muted2);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lang-dropdown-menu.is-visible {
  display: block;
}

.lang-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text_color);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mode-toggle {
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--text_color);
  background: rgba(0, 0, 0, 0.05);
}

.mode-toggle:hover {
  background: none;
}

/* SITE HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background-color: var(--bg);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: var(--normal_font_size);
  color: var(--text_color);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent);
  border-top: 3px solid var(--accent);
}

/* DROPDOWNS */
.dropdown {
  display: none;
  position: absolute;
  top: 25px;
  left: -158px;
  background: white;
  border-radius: 0px 0px 10px 10px;
  min-width: 220px;
  padding: 16px;
  z-index: 50;
  margin-top: 10px;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown.mega {
  width: 1000px;
  padding: 1rem;
}

.dropdown-content-mega {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background-color: #fff; 
  align-items: stretch;  
}

.dropdown-col {
  flex: 1 1 calc(33.333% - 1.5rem); 
  display: flex;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 160px;        
  object-fit: cover;    
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.service-card h4 {
  margin: 0.5rem 0;
  min-height: 2.5rem;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .btn.small {
  align-self: flex-start;
}


.dropdown-col .service-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 6px;
}

.dropdown-col .service-card h4 {
  margin: 6px 0;
  font-size: var(--normal_font_size);
  color: var(--accent);
}

.dropdown-col .service-card p {
  font-size: var(--small_font_size);
  color: var(--muted);
  margin-bottom: 6px;
}

.dropdown-col .service-card .btn.small {
  font-size: var(--small_font_size);
  padding: 4px 10px;
  background: var(--accent);
  color: var(--text_colord);
  border-radius: 6px;
}

.dropdown-packages {
  width: 700px;
  padding: 1rem;
}

.dropdown-inner {
  display: flex;
  gap: 1.5rem;
}


/* package list (left) */
.package-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  padding-right: 1rem;
  min-width: 180px;
}

/* package links */
.package-list .package-link {
  padding: 8px 6px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.package-list .package-link:hover,
.package-list .package-link.active {
  color: var(--accent);
  font-weight: 600;
  background: rgba(0,0,0,0.03);
  border-radius: 4px;
}

/* preview area (right) */
.package-preview {
  flex: 2;
  padding-left: 1rem;
  min-width: 320px;
}

/* show/hide: default is visible, .hidden hides */
.package-info {
  display: block;            /* default visible when no .hidden present */
  transition: opacity 0.18s ease;
  opacity: 1;
}

.package-info.hidden {
  display: none;             /* hidden state */
  opacity: 0;
}

/* preview image and text */
.package-info img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.package-info h4 {
  margin: 0.5rem 0;
  font-size: 1.06rem;
  color: var(--accent);
}

.package-info p {
  font-size: 0.92rem;
  color: #444;
  margin: 0.25rem 0;
}

/* Footer section at the bottom of dropdown */
.dropdown-footer {
  margin-top: 1rem;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 0.75rem; /* Reduced gap for a tighter look */
  flex-wrap: wrap;
}

.footer-links a {
  display: flex; /* Makes the icon and text align */
  align-items: center;
  gap: 0.25rem; /* Space between icon and text */
  padding: 6px 10px;
  background-color: #f0f4f8; /* Light background to "isolate" them */
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem; /* Slightly smaller font for a more compact feel */
  border-radius: 6px;
  border: 1px solid #e0e4e8; /* Subtle border for definition */
  transition: all 0.2s ease-in-out;
}

.footer-links a:hover {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.footer-links a ion-icon {
  font-size: 1rem; /* Adjust icon size */
}


.header-actions {
  display: flex;
  align-items: center;
}


.calltoactioncontainer{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}



.calltoaction-btn {
 
  display: flex;
  align-items: center;
  gap: 10px; 
  padding: 12px 20px; 
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem; 
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  position: relative; 
  overflow: hidden;
  margin-right: 5px;
}

/* Specific button colors */
.calltoactionbook {
  color: var(--text_colord); 
  background-color: var(--accent-2);
  border: 2px solid var(--accent-2);
}

.calltoactioncontactus {
  background-color: var(--accent);
  color: var(--text_colord); 
  border: 2px solid var(--accent); 
}

.calltoactioncontactus .btn-icon {
    color: var(--text_colord);
}

.calltoactionbook:hover {
  background-color: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.calltoactioncontactus:hover {
  transform: translateY(-3px); 
}


/* --- Text and Divider Styling --- */
.calltoaction-btn .btn-text {
  position: relative;
  padding-right: 15px; 
  white-space: nowrap; 
}

.calltoaction-btn .btn-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%; 
  background-color: currentColor; 
  opacity: 0.4; 
  transition: background-color 0.3s ease, opacity 0.3s ease;
}



@keyframes popWiggle {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(2px, -2px) scale(1.8) rotate(-8deg); } 
  50% { transform: translate(-2px, 2px) scale(1.8) rotate(8deg); }
  75% { transform: translate(2px, -2px) scale(1.8) rotate(-8deg); }
  100% { transform: translate(0, 0) scale(1.5) rotate(0deg); } 
}

.calltoaction-btn .btn-icon {
  display: flex; 
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: color 0.3s ease;
}


.calltoaction-btn:hover .btn-icon {
  color: var(--bg-color); 
  animation: popWiggle 0.6s ease-in-out forwards; 
  transform: translate(0, 0) scale(1.3) rotate(0deg);
}

.calltoactionbook .btn-icon {
    color: var(--bg-color);
}


/* CONTACT MODAL */

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Modal Active State */
.contact-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Modal Content Box */
.contact-modal .modal-content {
  border-radius: var(--radius);
  padding: 24px;
  width: 90%;
  max-width: 600px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: none;
  background: none;
}

/* Modal Content Active State */
.contact-modal.is-visible .modal-content {
  transform: translateY(0);
}

/* Modal Header and Title */
.contact-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--muted2);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.contact-modal .modal-title {
  margin: 0;
  font-size: 1.5rem;
}

/* Modal Close Button */
.contact-modal .modal-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text_color);
  transition: color 0.2s ease;
}

.contact-modal .modal-close-btn:hover {
  color: var(--accent);
}

/* --- Contact Options Grid --- */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

/* Individual Contact Option Card */
.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background-color: var(--bgl2);
  text-decoration: none;
  color: var(--text_color);
  transition: all 0.2s ease;
  border: 1px solid var(--bgl2);
}

.contact-option:hover {
  background-color: var(--muted2);
  transform: translateY(-2px);
  border-color: var(--accent); 
}

.contact-option ion-icon {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.trip_advisor_logo {
  height: 32px;
  width: auto;
  fill: var(--accent);

}

.trip_advisor_logo_hero {
  height: 32px;
  width: auto;
  fill: var(--text_color);

}

.trip_advisor_logo_hero:hover {
  fill: var(--accent);
}


.contact-option:hover ion-icon {
  transform: scale(1.1);
}

.contact-option:hover .trip_advisor_logo{
  transform: scale(1.1);
}

.contact-option span {
  font-weight: 600;
  color: var(--text_color);
}

.contact-option small {
  font-size: 12px;
  color: var(--muted);
}

/* To prevent body scrolling when modal is open */
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* --- New Download Button Styles --- */
.modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end; /* This aligns the button to the bottom right */
  padding-top: 16px;
  border-top: 1px solid var(--muted2);
}

.download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.download-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.download-link ion-icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.download-link:hover ion-icon {
  transform: scale(1.1);
}

/* Optional: Add a class to the modal-content to hide the footer when needed */
.modal-content.no-footer .modal-footer {
  display: none;
}


.account_container {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 2px solid var(--muted1); 
border-radius: 50%;
margin-left: 20px;
padding: 4px;

}

.header-actions .account_link {
  text-decoration: none;
  color: var(--muted1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions .personicon {
  font-size: 40px;
}



/* HAMBURGER & MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.menu-toggle .hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--muted);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle .hamburger::before {
  top: -8px;
}

.menu-toggle .hamburger::after {
  top: 8px;
}

/* Hamburger to 'X' transition */
.menu-toggle.is-active .hamburger {
  background: transparent;
}

.menu-toggle.is-active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.is-active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* New style to show dropdown on click */
.dropdown.is-open {
  display: block;
}


/* Main container */
.main_container{
  padding-top: 70px;
}

/* --- HERO SECTION STYLES --- */

.hero-page-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
 
  
}

.hero-background-image {
  position: relative;
  width: 100%;  
  height: 450px;
  background-image: url('svg3.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}

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

.hero-content {
  z-index: 2;
  padding: 20px;
  margin-bottom: 40px;
}

.hero-text-combined {
  font-size: 80px;
  margin-bottom: 10px;
  font-family: "Archivo Black", sans-serif;
  color: #f0e6d6;
  letter-spacing: 0.1rem;
  text-align: center;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 0;
  height: 6px;
  background-color: #f0e6d6; 
  animation: draw-line 3s ease-out forwards;
}

@keyframes draw-line {
  to {
    width: 100%;
  }
}


.typing-text {
  white-space: nowrap; 
  overflow: hidden; 
  border-right: 0.15em solid #f0e6d6; 
  animation: 
    typing 4s steps(22, end) forwards,
    blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #f0e6d6; }
}




.hero-cta-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 3;
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.search-input {
  border: none;
  font-size: 16px;
  padding: 8px 0;
  width: 100%;
}

.search-input:focus {
  outline: none;
}

.search-input-group ion-icon {
  color: var(--muted);
  font-size: 20px;
}

/* New styles for the play button */
.video-play-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  margin-left: 20px;
}

.video-play-btn ion-icon {
  font-size: 24px;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent-2);
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid #e1e5eb;
}



/* Visual Pop-up for Socials */
.socials .social-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 24px;
  transition: color 0.2s;
}

.socials .social-link:hover {
  color: var(--accent);
}

.social-preview-card {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  width: 400px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  border: 1px solid #e1e5eb;
  padding: 8px;
  
}

/* Show the pop-up on hover */
.social-link:hover .social-preview-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}


.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  border: none;
}


/* --- CARDS SECTION STYLES --- */

.info-cards-section {
  padding: 80px 20px 40px;
  margin: 0 auto;
  
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px;
}




/* --- CARDS SECTION STYLES --- */

.info-cards-section {
  padding: 80px 20px 40px;
  margin: 0 auto;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Base style for all cards (vertical layout) */
.info-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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


.info-card.image-left,
.info-card.image-right {
  display: flex;
  flex-direction: row;
}

.info-card.image-left .card-image-wrapper {
  flex-basis: 40%;
  height: auto;
  align-self: stretch;
}

.info-card.image-left .card-content {
  flex-basis: 60%;
}

.info-card.image-right {
  flex-direction: row-reverse;
}

.info-card.image-right .card-image-wrapper {
  flex-basis: 40%;
  height: auto;
  align-self: stretch;
}

.info-card.image-right .card-content {
  flex-basis: 60%;
}

.card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.info-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--accent);
}

.card-content p {
  font-size: 1rem;
  color: var(--muted);
  flex-grow: 1;
  line-height: 1.5;
}

/* Video Modal */
.video-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal.is-visible {
  display: flex;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 90%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.modal-title {
  font-size: 1.2em;
  color: #333;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #888;
}

.modal-close-btn:hover {
  color: #333;
}

.modal-body iframe {
  width: 100%;
  height: 450px;
  /* Default height for desktop */
  display: block;
}


/* --- MOBILE BOTTOM NAV STYLES --- */
.mobile-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--card);
  border-top: 1px solid #e1e5eb;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 99;
  justify-content: space-between; /* Use space-between for better control */
  align-items: center;
  padding: 8px 0;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  padding: 4px;
  text-align: center;
  transition: color 0.2s, transform 0.3s;
  flex-grow: 1; /* Apply flex-grow to all items by default */
}

.mobile-bottom-nav .menu-item-center {
  transform: translateY(-20%);
  background-color: var(--accent);
  color: white;
  width: 70px; 
  height: 70px; 
  flex-grow: 0; 
  flex-shrink: 0; 
  flex-basis: auto; 
  border-radius: 50%; 
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}


.mobile-bottom-nav .nav-item:not(.menu-item-center) {
  flex-grow: 1;
}

.mobile-bottom-nav .nav-item ion-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item span {
  font-weight: 500;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--accent);
}

.mobile-bottom-nav .menu-item-center:hover {
  transform: translateY(-25%) scale(1.05);
  background-color: var(--accent-2);
  box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav .menu-item-center ion-icon {
  font-size: 28px;
  margin-bottom: 4px;
  color: white;
}

.mobile-bottom-nav .menu-item-center span {
  font-size: 10px;
  text-transform: uppercase;
}




.section-title {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* --- POPULAR SAFARIS SECTION --- */
.popular-safaris-section {
  background-color: var(--bg);
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.safari-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.safari-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.safari-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.safari-card-content {
  padding: 25px;
  text-align: left;
}

.safari-card-content h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 10px;
}

.safari-card-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-tag {
  background-color: var(--accent-2); 
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}

.duration {
  color: var(--primary); 
}

.features-list {
  list-style: none; 
  padding: 0;
  margin-bottom: 20px;
}

.features-list li {
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2); 
}


/* GIVING BACK */

.giving-back-section {
  padding: 80px 20px;
  background-color: var(--bgl2);
  text-align: center;
}

.giving-back-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bgl1);
  border-radius: 10px;
}

.main-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.main-story-text h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.main-story-text p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.main-story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover; 
}

.impact-quote {
  font-family: "Archivo Black", sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 900;
  color: var(--primary); 
  margin: 60px auto;
  max-width: 800px;
  line-height: 1.2;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}



/* --- PHOTO GALLERY SECTION (Compact Version) --- */
.photo-gallery-section {

  padding: 80px 20px;
  background-color: var(--bg);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;

}

.photo-card-compact {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.photo-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.15);
}

.photo-card-compact img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.photo-card-content-compact {
  padding: 25px;
}

.photo-card-content-compact h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 10px;
}

.photo-card-content-compact p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}




/* --- OUR BLOG SECTION --- */
.hero-blog-section {
  background-color: #eef3fb;
  border-radius: var(--radius);
  padding: 80px 20px;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.hero-blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hero-blog-section  .blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}



.hero-blog-section .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hero-blog-section  .blog-card-content {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}

.hero-blog-section .blog-date {
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-blog-section .blog-card-content h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 10px;
  margin-bottom: 8px;
}

.hero-blog-section .blog-card-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 15px; 
}

.hero-blog-section .read-more-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto; 
  align-self: flex-start;
  transition: color 0.3s ease;
}

.hero-blog-section .read-more-link:hover {
  color: var(--accent);
}

.hero-blog-section .read-all-container {
  text-align: end;
  margin-top: 50px;
}



/* General button styling for both sections */
.safari-card .btn,
.blog-card .btn {
  width: auto;
  align-self: flex-start;
}




/* --- FAQ SECTION --- */
.faq-section {
  background-color:var(--bg);


}

.container-faq{
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



.faq-accordion-container {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e1e5eb;
}



.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text_color);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}



.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-bottom: 0;
}

.faq-answer.is-open {
  max-height: 200px;
  padding-bottom: 20px;
  transition: max-height 0.5s ease-in;
}

.faq-answer p {
  margin: 0;
  color: var(--text_color);
  line-height: 1.6;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.faq-question.is-open .accordion-icon {
  transform: rotate(-180deg);
}


/* --- PARTNERSHIPS SECTION --- */
.partnerships-section {
  background-color: var(--bgl2);
    border-bottom: 1px solid var(--text_color);

}

.partnerships-contents{
   padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo-belt-container {
  overflow: hidden; 
  max-width: 1000px; 
  margin: 40px auto 0;
  white-space: nowrap;
}

.partnership-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  animation: scroll-logos 25s linear infinite; 
}

.partnership-logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%); 
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0; 
}

.partnership-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/* Footer Section */
.footer {
  background-color: var(--bg_l2);
  padding: 60px 20px 20px;
  color: var(--muted);
}



.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text_color);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-col.brand {
  text-align: left;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  font-size: 24px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e1e5eb;
  background-color: #f6f7fb;
}

.button_footer{
  background-color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  color: var(--text_colord);
  font-size: var(--normal_font_size);
}


.footer-bottom {
  border-top: 1px solid #e1e5eb;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #a9a9a9;
}





/* --- NEW SERVICE PAGE STYLES --- */


.why-us-section {
  background-color: var(--bg);
}



.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-us-item {
  background-color: var(--card);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-8px);
}

.why-us-item ion-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-us-item h3 {
  font-size: 1.5rem;
  color: var(--dune);
  margin-bottom: 10px;
}

.why-us-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Expectations Section */
.expectations-section {
  background-color: #f6f7fb;
}



.expectations-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.expectations-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-top: 40px;
  text-align: center;
  flex: 1;
  z-index: 2;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}



.timeline-stage {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- REDESIGNED PACKAGES SECTION --- */
.packages-section {
  background-color: #eef3fb;
}



.packages-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.package-card-new {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.15);
}

.package-image-new {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.package-content-new {
  padding: 25px;
  text-align: left;
}

.package-title-new {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 5px;
}

.package-duration-new {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
  display: block;
  margin-bottom: 15px;
}

.package-description-new {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}





/* --- ROUTE PAGE STYLES --- */


.route-hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}

.route-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.route-hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.route-title {
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.route-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-style: italic;
}

.route-info-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.info-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.info-badge ion-icon {
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Route Details Section */
.route-details-section {
  padding: 80px 20px;
  background-color: var(--bg);
}



.route-details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.route-description p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.1rem;
}

.route-highlights h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.route-highlights ul {
  list-style: none;
  padding: 0;
}

.route-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--dune);
}

.route-highlights li ion-icon {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 10px;
}

/* Route Map Section */
.route-map-section {
  padding: 80px 20px;
  background-color: #f6f7fb;
  text-align: center;
}



.map-container {
  max-width: 1200px;
  margin: 40px auto;
}

.static-map {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- NEW DAILY TIMELINE DESIGN (Fully Responsive) --- */
.route-timeline-section {
  padding: 80px 20px;
  background-color: var(--bg);
}



.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--accent);
  top: 0;
  bottom: 0;
  left: 0;
}

.timeline-item-day {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item-day::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border: 4px solid var(--bg);
  border-radius: 50%;
  left: -10px;
  top: 5px;
  z-index: 1;
}



.timeline-day {
  position: absolute;
  top: 0;
  left: 30px;
  padding: 5px 15px;
  background-color: var(--accent-2);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.timeline-content {
  background-color: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--dune);
  margin-top: 0;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--muted);
  line-height: 1.6;
}







/* BLOG DETAILS PAGE STYLES */


.blog-post-hero-section {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: var(--bg_l2);
}



.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent);
}

.back-link ion-icon {
  font-size: 1.2rem;
  margin-right: 5px;
}

.blog-post-header-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dune);
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-post-meta .author {
  font-weight: 600;
}

.blog-post-meta .date {
  margin-left: 10px;
}

/* Hero Image */
.blog-post-image-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  margin-top: -50px;
  /* Overlaps with the section above */
  position: relative;
  z-index: 10;
}

/* Article Content */
.blog-article-content {
  max-width: 900px;
  margin-top: 50px;
}

.intro-paragraph {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dune);
  margin-bottom: 30px;
}

.article-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 40px;
  margin-bottom: 15px;
}

.blog-article-content p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}



/* --- LIGHT/DARK MODE TOGGLE STYLES --- */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Space between the icon and text */
}

.mode-toggle .icon {
  display: inline-block;
}

.mode-toggle ion-icon {
  font-size: 16px;
  /* Adjust the icon size to match the text */
}



/* NEW SECTIONS */


/* Destination Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.15);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-content {
  padding: 20px;
  text-align: left;
}

.destination-content h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

.destination-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #eef3fb;
}



.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 350px;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 5rem;
  font-family: serif;
  color: var(--accent-2);
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 15px;
  position: relative;
  /* To be above the quote icon */
  z-index: 2;
}

.testimonial-card .author {
  font-weight: 600;
  color: #333;
}











/* DARK MODE STYLES */

.dark-mode a {
color: white;
}

.dark-mode body {
  background-color: var(--bgd);
  color: #f1f1f1;
}


.dark-mode .top-bar-info {
  background-color: var(--bgd_l2);
  color: var(--text_color);
  border-bottom: 1px solid var(--text_color);
}

.dark-mode .lang-switcher-btn{ 
  color: var(--text_colord);
  border: none;
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color); 
}


.dark-mode .lang-dropdown-menu {
  background-color: var(--bgd_l3);
  border:1px solid var(--text_color);
}


.dark-mode .mode-toggle {
  color: var(--text_colord);
  background: var(--bgd_l3);
  border: 1px solid var(--text_color);  
}


.divider {
  background-color: var(--text_color);
 
}




.dark-mode .site-header {
  background-color: var(--bgd_l3);
}

.dark-mode .main-nav .nav-link {
  color: var(--text_colord);
}

.dark-mode .dropdown {
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color);
}



/* CONTACT MODAL DARK MODE */


.dark-mode .contact-modal {
  background-color: var(--bgd);
}

.dark-mode .contact-modal .modal-content {
  background-color: var(--bgd_l2);
  color: var(--text_colord);
}

.dark-mode .contact-modal .modal-close-btn {
  color: var(--text_colord);
}

.dark-mode .contact-modal .modal-title {
  color: var(--text_colord);
}

.dark-mode .contact-modal .modal-header {
  border-bottom: 1px solid var(--text_color);
  color: var(--text_colord);
}
.dark-mode .contact-modal .modal-body {
  color: var(--text_colord);
}

.dark-mode .contact-modal .contact-options-grid a{
  color: var(--text_colord);
  background-color: var(--bgd_l4);
}

.dark-mode .contact-options-grid span, small {
  color: var(--text_colord);
}

.dark-mode .contact-options-grid small {
  color: var(--text_colord);
}

.dark-mode .contact-modal .modal-footer {
  background-color: var(--bgd_l3);
  border-top: 1px solid var(--text_color);
}

.dark-mode .contact-modal .contact-option ion-icon {
  color: var(--text_colord);
}

.dark-mode .trip_advisor_logo{
  fill: var(--text_colord);
}

.dark-mode .account_container{
  border: 2px solid var(--text_colord);

}

.dark-mode .account_link {
  color: var(--text_colord);
}

.dark-mode .hamburger {
  background-color: var(--text_colord);
}

.dark-mode .hamburger::before,
.dark-mode .hamburger::after {
  background-color: var(--text_colord);
}


/* mobile dark mode  */

.dark-mode .mobile-menu {
  background-color: var(--bgd);
}

.dark-mode .mobile-nav-link {
  background-color: var(--bgd_l4);
  border: 1px solid var(--text_color);
  color: var(--text_colord);
} 

.dark-mode .mobile-nav-link .title,
.dark-mode .mobile-nav-link .subtitle { 
  color: var(--text_colord);
}

.dark-mode .mobile-nav-link .arrow-icon {
  color: var(--text_colord);
}

.dark-mode .toggle-button {
  border: 0px ;
}


/* Hero dark mode */


.dark-mode .hero-background-image {
  background-image: url('svg_dark3.svg');
}

.dark-mode .hero-cta-bar {
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color);
}

.dark-mode .search-input {
  background-color: var(--bgd_l4);
  padding: 10px;
  border: 0px;
  border-radius: var(--radius);
  color: var(--text_colord);
  margin-right: 5px;
}

.dark-mode .search-input::placeholder {
  color: var(--text_colord);
}

.dark-mode .search-input-group ion-icon {
  color: var(--text_colord);
}

.dark-mode .trip_advisor_logo_hero {
  fill: var(--text_colord);

}


.dark-mode .video-play-btn{
  background-color: var(--accent-2);
}

.dark-mode .socials .social-link{
  color: var(--text_colord);
}


/* Info card dark mode */

.dark-mode .info-card {
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color);
}




.dark-mode .info-card .card-content {
  color: var(--text_colord);
}

.dark-mode .info-card .card-content h3 {
  color: var(--text_colord);
}

.dark-mode .card-content p {
  color: var(--text_colord);
}

.dark-mode .card-content a {
  text-decoration: underline;
}


/* MOBILE BOTTOM NAV  dark mode*/

.dark-mode .mobile-bottom-nav {
  background-color: var(--bgd);
  border-top: 1px solid var(--text_color);
}

.dark-mode .mobile-bottom-nav .nav-item{
  color: var(--text_colord);
}

/* section dark mode */

.dark-mode .section-title{
color:var(--text_colord);
}

.dark-mode .section-subtitle{
  color:var(--text_colord);
}
/* Popular safaris dark mode */

.dark-mode .popular-safaris-section {
  background-color: var(--bgd);
}

.dark-mode .safari-card {
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color);  
}


.dark-mode .safari-card-content {
  color: var(--text_colord);
}

.dark-mode .safari-card-content h3 {

  color: var(--text_colord);

}

.dark-mode .safari-card-content p {
  color: var(--text_colord);
  line-height: 1.6;
  margin-bottom: 20px;
}

.dark-mode .safari-card-content a {
  text-decoration:underline ;
}



/* Giving back dark mode */

.dark-mode .giving-back-section{
  background-color: var(--bgd_l2);
}



.dark-mode .main-story-text h3 {
  color: var(--accent-2);
}

.dark-mode .main-story-text p {
  color: var(--text_colord);
}

/* gallery dark mode */
.dark-mode .photo-gallery-section {
  background-color: var(--bgd);
}

.dark-mode .photo-card-compact {
  background-color: var(--bgd_l3);
  border: 1px solid var(--text_color);
}

.dark-mode .photo-card-content-compact h3 {
  color: var(--accent-2);
}

.dark-mode .photo-card-content-compact p {
  color: var(--text_colord);
}

.dark-mode .photo-card-content-compact a {
  text-decoration: underline;
}

/* Blog dark mode */

.dark-mode .hero-blog-section {
  background-color: var(--bgd_l2);
}

.dark-mode .hero-blog-section .blog-card{
  background-color: var(--bgd_l4);
  border: 1px solid var(--text_color);
}

.dark-mode .blog-card-content h3{
 color: var(--text_colord);
}

.dark-mode .blog-card-content p{
 color: var(--text_colord);
}

.dark-mode .blog-card-content a {
  text-decoration: underline;
}

.dark-mode .hero-blog-section a {
text-decoration: underline;
}

/* faq section dark mode */

.dark-mode .faq-section{
  background-color: var(--bgd);
}

.dark-mode .faq-question {
  color: var(--text_colord);
}

.dark-mode .faq-question:hover {
  color: var(--accent-2);
}

.dark-mode .faq-answer p {
  color: var(--text_colord);
}


/* Partnership dark mode */

.dark-mode .partnerships-section {
  background-color: var(--bgd_l2);
  border-bottom: 1px solid var(--bg);
}

/* footer dark mode */

.dark-mode .footer-col h4 {
  color: var(--accent-2);
}

.dark-mode .footer-col ul li a {
  color: var(--text_colord);
}

.dark-mode .footer p {
  color: var(--text_colord);
}

/* MEDIA QUERIES */


/* Add a new breakpoint for the mobile menu */
@media (min-width:  1327px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width:  1327px) {
  .main-nav {
    display: none;
  }
    .contact-options-grid {
    height: 60vh;
  }

  .contact-option{
    padding: 10px;
    font-size: var(--small_font_size);
  }

  .contact-option ion-icon{
    font-size: 20px;
  }
  .trip_advisor_logo{
    height: 20px;
    width: auto;
  }
  
  /* The mobile menu container */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100vh;
    padding: 1rem;
    background-color: var(--bg);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.is-active {
    transform: translateX(0);
  }
  
  /* The main navigation container for the compact menu */
  .mobile-nav {
    height: auto;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  /* Grid for menu links */
  .mobile-nav-links-grid {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 8px;
  margin-right: 30px;

  }
  
  /* Individual menu link items */
  .mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--bg);
    border-radius: 0.5rem;
    border: 1px solid var(--muted2);
    transition: background-color 0.3s;
    text-decoration: none;
    cursor: pointer;
  }
  
}

  .mobile-nav-link .icon {
    font-size: 1.5rem;
    margin-right:15px;
  }

  .mobile-nav-link .content {
    flex-grow: 1;
  }

  .mobile-nav-link .title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text_color);
  }
  
  .mobile-nav-link .subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text_color);
  }

  .mobile-nav-link .arrow-icon {
    font-size: 1.25rem;
    color: var(--accent);
    transform: rotate(45deg);
  }

  /* Settings Section at the bottom */
  .mobile-settings-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0.75rem;
    width: 100%;
  }
  

  .mobile-settings-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin-right: 30px;
  }

  .mobile-lang-switcher-container,
  .mobile-currency-switcher-container,
  .mobile-mode-toggle-container {
      position: relative;
  }

  .toggle-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 10px;
      border: 1px solid var(--muted2);
      padding: 0.75rem;
      background-color: var(--bgl2);
      transition: background-color 0.3s, box-shadow 0.3s;
      text-decoration: none;
      cursor: pointer;
      color: var(--text_color);
  }


  .toggle-button .button-text {
    font-size: var(--small_font_size);
    font-weight: 600;
  }

  .toggle-button .button-icon ion-icon {
    font-size: var(--normal_font_size);
  }
  
  /* Dropdown styling remains the same */
  .mobile-dropdown-options {
    display: none;
    position: absolute;
    bottom: 60px; /* Adjust this to position it correctly above the buttons */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card);
    border: 1px solid var(--muted2);
    border-radius: var(--radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 101;
    min-width: 150px;
    text-align: left;
  }

  .mobile-dropdown-options.is-visible {
    display: block;
  }

  .mobile-dropdown-options a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text_color);
  }

  .mobile-dropdown-options a:hover {
    background-color: var(--bgl2);
  }


@media (max-width: 1349px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    
  }

  .site-brand img{
  height:50px;
  
  }





  .header-actions {
    display: inline;
  }



  .header-actions .account_container {
    display: none;
  }




  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .nav-item,
  .nav-link,
  .btn {
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
  }

  .nav-item .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown,
  .dropdown.mega {
    position: static;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    width: 100%;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
  }

  .dropdown.mega .dropdown-col.photo {
    display: none;
  }

  /* Style for the dropdown icon */
  .nav-link .dropdown-icon {
    transition: transform 0.3s ease-in-out;
  }

  /* Rotate the icon when the menu is open */
  .nav-item .dropdown.is-open+.nav-link .dropdown-icon,
  .nav-item .dropdown.is-open+.nav-link .dropdown-icon {
    transform: rotate(-180deg);
  }
}

.mobile-only {
  display: none;
}


@media (max-width: 413px) {
.calltoaction-btn {
  padding: 10px 10px;
  font-size: var(--small_font_size);
  

}

  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    
  }

.calltoaction-btn .btn-icon {
  font-size: 10px;

}
  }



/* Ensure mobile bottom nav is hidden on large screens */
@media (min-width: 1328px) {
  .mobile-bottom-nav {
    display: none;
  }
}

/* Show mobile bottom nav on small screens */
@media (max-width: 1327px) {
  .mobile-bottom-nav {
    display: flex;
  }

    .calltoactionbook {
    display: none;
  }
}



/* Hide on mobile to prevent clutter */
@media (max-width: 768px) {
  .social-preview-card {
    display: none;
  }
}




@media (max-width: 768px) {
  .hero-cta-bar {
    flex-direction: column;
    bottom: -130px;
    padding: 20px;
  }

  .hero-cta-bar .search-input-group,
  .hero-cta-bar .socials {
    width: 100%;
    justify-content: space-around;
  }

  .video-play-btn {
    margin-top: 15px;
    /* Push the button below on small screens */
  }

  .hero-cta-bar .socials {
    border-left: none;
    border-top: 1px solid #e1e5eb;
    margin-top: 15px;
    padding-top: 15px;
    padding-left: 0;
    justify-content: space-around;
  }
}







@media (max-width: 768px) {
  .hero-cta-bar {
    flex-direction: column;
    bottom: -130px;
    padding: 20px;
  }

  .hero-cta-bar .search-input-group,
  .hero-cta-bar .socials {
    width: 100%;
  }

  .hero-cta-bar .socials {
    border-left: none;
    border-top: 1px solid #e1e5eb;
    margin-top: 15px;
    padding-top: 15px;
    padding-left: 0;
    justify-content: space-around;
  }

  .info-cards-section {
    padding-top: 180px;
  }

  .modal-body iframe {
    height: 300px;
  }
}

@media (max-width: 551px) {
  .top-bar-info {
    display: none;
  }

  .top-bar-info .top-bar-contact {
    width: 100%;
    justify-content: center;
  }
}


/* Responsive adjustments */
@media (max-width: 900px) {
  .giving-back-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .giving-back-text h3 {
    font-size: 1.5rem;
  }
}


@media (max-width: 768px) {

  .safari-cards-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive adjustments for all new sections */
@media (max-width: 768px) {
  .partnership-logos {
    gap: 30px;
  }

  .partnership-logos img {
    height: 60px;
  }
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .expectations-timeline {
    flex-direction: column;
    gap: 20px;
  }

  .expectations-timeline::before {
    height: 100%;
    width: 2px;
    top: 0;
    left: 20px;
  }

  .timeline-item {
    padding-left: 40px;
    padding-top: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: 10px;
    top: 0;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .route-hero-section {
    height: 350px;
  }

  .route-title {
    font-size: 2.5rem;
  }

  .route-subtitle {
    font-size: 1.2rem;
  }

  .route-info-badges {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .info-badge {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .route-details-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .route-highlights h3 {
    margin-top: 20px;
  }

  .route-map-section {
    padding: 40px 15px;
  }
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-image-container {
    padding: 0;
  }

  .blog-post-image {
    border-radius: 0;
  }

  .blog-article-content {
    padding: 20px;
    margin-top: 20px;
  }

  .intro-paragraph {
    font-size: 1rem;
  }

  .article-heading {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}



/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 20px;
    max-width: 100%;
    text-align: center;
  }

  .testimonial-card .quote-icon {
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
  }
}





@media (max-width: 1576px) {
  .hero-text-combined {
    font-size: 60px;
  }
  .highlight::after {
    height: 5px; 
  }
}

@media (max-width: 967px) {
  .hero-text-combined {
    font-size: 45px;
  }
  .highlight::after {
    height: 4px;
  }
}

@media (max-width: 480px) {
  .hero-text-combined {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1.2;
    word-spacing: 4px;
  }
  .highlight::after {
    height: 3px;
  }
}


/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 768px) {
  .main-story-grid {
    grid-template-columns: 1fr;
  }
  .main-story-text,
  .main-story-image {
    grid-column: 1 / -1;
  }
  .main-story-text {
    /* Order the text above the image on mobile */
    order: 2; 
  }
  .main-story-image {
    /* Order the image above the text on mobile */
    order: 1; 
  }
  .impact-quote {
    font-size: 1.8rem;
  }
}
