/* Travel tips blog card styles */
.trip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trip-card {
  background: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}
.trip-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.trip-img {
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.trip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffc107;
  color: #222;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.trip-title {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.1) 100%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 2;
}
@media (max-width: 768px) {
  .trip-img { height: 180px; }
  .trip-list { gap: 1rem; }
}
.country-select-box {
  margin-left: 0 !important;
}
/* Center wheel section and headings */
.wheel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wheel-section h2, .wheel-section p {
  text-align: center;
}
.wheel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.destinations-list li{
  margin-bottom: 0 !important;
}
.destinations-list a{
  padding: 2px 12px !important;
}
/* County and Country Selection Styles */
.county-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.county-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #0d6efd;
  background: white;
  color: #0d6efd;
}

.county-btn:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.county-btn.active {
  background: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.county-btn[data-county="premium"] {
  border-color: #198754;
  color: #198754;
}

.county-btn[data-county="premium"]:hover {
  background: #198754;
  color: white;
}

.county-btn[data-county="premium"].active {
  background: #198754;
  border-color: #198754;
}

.country-submenu {
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.country-submenu li {
  margin: 0;
  padding: 0;
}

.country-submenu a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 8px;
}

.country-submenu a:hover {
  background: #f8f9fa;
  color: #0d6efd;
  padding-left: 20px;
}

.country-submenu a.active {
  background: #e7f3ff;
  color: #0d6efd;
  font-weight: 600;
}

/* Destinations Mega Menu Styles - Common for all pages */
.nav-item.dropdown {
  position: static;
}

.destinations-mega-menu {
  background-color: #2d3748 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
  margin-top: 0 !important;
  width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  position: absolute !important;
  top: 100% !important;
  z-index: 1050 !important;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

.destinations-mega-menu::-webkit-scrollbar {
  width: 10px;
}

.destinations-mega-menu::-webkit-scrollbar-track {
  background: #1a202c;
}

.destinations-mega-menu::-webkit-scrollbar-thumb {
  background: #4a5568;
  border-radius: 5px;
}

.destinations-mega-menu::-webkit-scrollbar-thumb:hover {
  background: #fbbf24;
}

.destinations-mega-menu .container-fluid {
  padding: 30px 0 40px 0;
  max-width: 100%;
}

.destinations-mega-menu .destinations-search-section {
  padding: 0 30px;
  margin-bottom: 8px !important;
}

.destinations-mega-menu .col-md-6 {
  padding: 0 30px;
  margin-bottom: 20px;
}

.destinations-search-section h5 {
  color: #fbbf24 !important;
  font-weight: 600;
  margin-bottom: 15px;
}

.destinations-search-section .form-control {
  border: 1px solid #4a5568;
  background-color: #4a5568;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.destinations-search-section .form-control:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
  background-color: #4a5568;
  color: #ffffff;
}

.destinations-search-section .form-control::placeholder {
  color: #a0aec0;
}

.destinations-search-section .btn-warning {
  background-color: #fbbf24;
  border-color: #fbbf24;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 16px;
}

.destinations-search-section .btn-warning:hover {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
}

.destinations-mega-menu h6 {
  color: #fbbf24 !important;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #4a5568;
}

.destinations-list {
  margin: 0;
  padding: 0;
}

.destinations-list li {
  margin-bottom: 10px;
}

.destinations-list a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  line-height: 1.5;
  border-radius: 6px;
}

.destinations-list a:hover {
  color: #fbbf24 !important;
  text-decoration: none !important;
  background-color: rgba(251, 191, 36, 0.1);
  padding-left: 16px;
}

.nav-item.dropdown .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 0.15em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

@media (max-width: 991.98px) {
  .destinations-mega-menu {
    min-width: 100%;
    max-width: 100%;
    left: 0 !important;
    transform: none !important;
  }
  
  .destinations-mega-menu .container {
    padding: 20px;
  }
}

/* Poppins font family */
@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html, body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Hero Content Styles */
.hero-content p {
  color: #fff;
}

/* Navbar Common Styles */
.top-bar {
  background: linear-gradient(90deg, #ff9466, #ffb38a);
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  text-align: center;
  padding: 8px 12px;
}

.site-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.site-navbar .navbar-brand img {
  height: 68px;
}

.site-navbar .nav-link {
  color: #222;
  font-weight: 600;
  padding: 0.75rem 1.2rem;
  margin: 0 0.3rem;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.site-navbar .nav-link:hover {
  color: #fbbf24;
}

.site-navbar .nav-link.active {
  color: #000;
  border-bottom-color: #fbbf24;
}

.site-navbar .dropdown-toggle.active {
  color: #000;
  border-bottom-color: transparent;
}

.nav-search-icon {
  line-height: 1;
}

.nav-search-img { 
  height: 24px; 
  width: 24px; 
  display: block; 
}

@media (min-width: 992px) {
  .navbar-nav { 
    gap: 0.8rem; 
  }
  
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.nav-item a {
  font-size: 14px !important;
}

.button-gradient {
  background: linear-gradient(90deg, #FF6641, #FEB37A) !important;
  color:#FFFFFF !important;
}

/* Footer */
.site-footer {
  background: url('../images/home/footer-background.png') center bottom/cover no-repeat, linear-gradient(180deg, #0b0f1a 0%, #121826 100%);
  color: #cfd8e3;
}
.site-footer .container{
  padding-top: 30px !important;
  padding-bottom: 8px !important;
}
.site-footer .footer-links a { 
  color: #cfd8e3; 
  text-decoration: none; 
  display: inline-block; 
  padding: 4px 0; 
}
.site-footer .footer-links a:hover { 
  color: #ffffff; 
}

