:root {
  --primary-color: #3498db;
  --accent-color: #2ecc71;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Roboto', sans-serif;
  padding-top: 120px; /* Increased padding to accommodate top info bar */
  margin: 0;
}
.breadcrumb-item+.breadcrumb-item::before{
  color: white
}
/* Top Info Bar Styles */
.top-info-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.top-info-bar.hidden {
  transform: translateY(-100%);
}

.top-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}
.btn-primary {
   background-color: rgba(0, 0, 0, 0.75);
   border: solid 1px white
}
.btn-primary:hover {
   background-color: white;
   border: solid 1px white;
   color: black
}
.btn-outline-primary{
   color: black; 
   border: 1px solid black;
}
.btn-outline-primary:hover{
   border: 1px solid black;
   color: rgb(255, 255, 255); 
   background: black;
}
/* Modern Travel Navbar Styles */
.travel-navbar {
  position: fixed;
  top: 36px; /* Position below top info bar */
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 20px; /* Add spacing between main containers */
}

.navbar-brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto; /* Changed from 100% to auto for desktop view */
}

@media (max-width: 1263px) {
  .navbar-brand-container {
    width: 100%;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.navbar-logo {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar-nav {
  display: flex;
  flex-direction: row; /* Ensure items are in a row on desktop */
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 5px; /* Increased margin between nav items */
  position: relative;
}

.nav-link {
   font-size: 15px;
  display: flex;
  align-items: center;
  padding: 8px 10px; /* Modified padding from 8px 16px to 8px 10px */
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-icon {
  display: none; /* Hide icons by default on desktop */
  margin-right: 6px;
  font-size: 1rem;
  color: var(--primary-color);
}

.nav-item:hover .nav-link {
  background-color: rgba(52, 152, 219, 0.1);
}

.nav-item.active .nav-link {
  background-color: var(--primary-color);
  color: white;
}

.nav-item.active .nav-icon {
  color: white;
}

/* Language Selector */
.language-selector {
  position: relative;
  margin-left: 40px; /* Increased margin between nav items and language selector */
  display: flex;
  align-items: center;
}

.language-btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--dark-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.language-btn i {
  margin-right: 8px;
}

.language-btn:hover {
  background-color: #34495e;
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 160px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: none;
  z-index: 1005;
}

.language-dropdown-menu.show {
  display: flex;
  flex-direction: column;
}

/* Remove hover effect since we're using JavaScript for toggling */
/* .language-dropdown:hover .language-dropdown-menu {
  display: flex;
  flex-direction: column;
} */

.language-option {
  padding: 10px 15px;
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

.language-option:hover {
  background-color: #f5f5f5;
}

.language-option.active {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  font-weight: 500;
}

/* Sidebar & Mobile Styles */
.sidebar-header {
  display: none;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.sidebar-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-color);
}

.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

/* Desktop Navbar Layout */
.navbar-collapse {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 50px; /* Increased space between logo and navbar items */
  justify-content: space-between; /* Distribute space more evenly */
}

/* Mobile Responsive Styles */
@media (max-width: 1272px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding: 0;
    margin-left: 0; /* Reset desktop margin */
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start; /* Reset desktop justify-content */
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-overlay.show {
    display: block;
  }

  .sidebar-header {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 1px 0;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-icon {
    display: inline-block; /* Show icons on mobile */
  }

  .nav-link {
    padding: 15px 20px; /* Keep mobile padding different */
    border-radius: 0;
    border-left: 4px solid transparent;
  }

  .nav-item:hover .nav-link {
    background-color: rgba(52, 152, 219, 0.05);
    border-left-color: var(--primary-color);
  }

  .nav-item.active .nav-link {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
  }

  .nav-item.active .nav-icon {
    color: var(--primary-color);
  }

  .language-selector {
    margin: 10px 20px;
  }

  .language-btn {
    width: 100%;
    justify-content: center;
  }
  .language-dropdown-menu {
    position: absolute;
    top: -380px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
  }
}
@media (max-width: 786px) {
  .optional-phone{
    display: none;
  }
  .top-info-content {
    font-size: 10px;
  }
}