/* 
 * Expedicion Sahara - Custom Styles for UIkit
 * Main color scheme:
 * - Primary: #e05013
 * - Secondary: #e05013
 * - Accent: #ffd8c5
 * - Light: #ffb18a
 * - White: #ffffff
 * - Dark: #222222
 * - Black: #0c0c0c
 */

:root {
  --primary: #e05013;
  --primary-hover: #d14000;
  --secondary: #ffd8c5;
  --accent: #ffb18a;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --dark: #222222;
  --black: #0c0c0c;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Override UIkit variables */
.uk-button-primary {
  background-color: var(--primary);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.uk-button-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.uk-section-primary {
  background-color: var(--primary);
}

.uk-section-secondary {
  background-color: var(--dark);
}

/* General Styles */
body {
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
  opacity: 1;
  text-decoration: none;
}

.top-contact {
  display: flex;
  align-items: center;
}

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.top-social a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Logo and Company Name */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  max-height: 40px;
  width: auto;
  transition: var(--transition);
  margin-right: 12px;
}

.logo-text {
  display: flex;
  align-items: center;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.company-tagline {
  font-size: 0.75rem;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.mobile-logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.mobile-logo-container .logo-image {
  margin-bottom: 0;
  margin-right: 12px;
  max-height: 45px;
}

.mobile-logo-container .logo-text {
  align-items: flex-start;
}

.mobile-logo-container .company-name {
  font-size: 1.2rem;
  text-align: left;
}

.uk-navbar-sticky .logo-image {
  max-height: 35px;
}

/* Animation Classes */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate.delay-100 {
  transition-delay: 0.1s;
}

.animate.delay-200 {
  transition-delay: 0.2s;
}

.animate.delay-300 {
  transition-delay: 0.3s;
}

.animate.delay-400 {
  transition-delay: 0.4s;
}

.animate.delay-500 {
  transition-delay: 0.5s;
}

/* Back to top button */
.uk-totop-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 980;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.uk-totop-fixed:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-5px) !important;
}

.uk-totop-fixed:focus {
  color: var(--white);
}

/* Header Styles */
header.uk-sticky {
  width: 100%;
}

.uk-navbar-sticky {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}

.uk-navbar-container {
  transition: var(--transition);
  padding: 5px 0;
  width: 100%;
}

.uk-navbar-container.scrolled {
  padding: 2px 0;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background: var(--white);
}

/* Custom header layout */
.header-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
}

.header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.uk-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.header-cta {
  margin-left: 20px;
  flex-shrink: 0;
}

.uk-container {
  max-width: 1300px;
  padding-left: 25px;
  padding-right: 25px;
}

/* Logo and Company Name */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  max-height: 35px;
  width: auto;
  transition: var(--transition);
  margin-right: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.company-tagline {
  font-size: 0.75rem;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Navigation styles */
.uk-navbar-nav {
  height: 80px;
  margin: 0;
  display: flex;
  gap: 0;
}

.uk-navbar-nav > li {
  padding: 0;
  display: flex;
  align-items: center;
}

.uk-navbar-nav > li > a {
  font-weight: 500;
  text-transform: none;
  min-height: 70px;
  font-size: 1rem;
  color: var(--dark);
  position: relative;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
  transform: scaleX(1);
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--primary);
}

.uk-navbar-dropdown {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 12px 20px 20px 20px;
  width: 280px;
  margin-top: 0;
}

/* Nested dropdown styles */
.uk-navbar-dropdown-nav .uk-parent {
  position: relative;
}

.uk-navbar-dropdown-nav .uk-parent > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uk-navbar-dropdown-right {
  left: 100% !important;
  top: 0 !important;
  margin-left: 0;
  margin-top: -15px;
  width: 290px;
}

.uk-nav-header {
  text-transform: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 0 0 10px 0;
}

.uk-navbar-dropdown-nav > li > a {
  padding: 8px 0;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.uk-navbar-dropdown-nav > li > a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  text-align: center;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero p {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.hero .uk-button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero .uk-button-large {
  padding: 0 40px;
  line-height: 55px;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0;
}

.hero .uk-button-default {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.hero .uk-button-default:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 2;
  opacity: 0.8;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Animation classes */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards for Tours */
.tour-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.8s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: none;
  height: 100%;
  position: relative;
  background-color: var(--white);
}

.tour-card-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tour-card .uk-card-title {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.tour-card .uk-card-media-top {
  position: relative;
  overflow: hidden;
}

.tour-card .uk-card-media-top img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card:hover .uk-card-media-top img {
  transform: scale(1.05);
}

.tour-card .uk-card-body {
  padding: 25px;
}

.tour-card .uk-card-footer {
  padding: 18px 25px;
  background-color: rgba(0,0,0,0.02);
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.tour-card .uk-button-text {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-right: 5px;
}

.tour-card .uk-button-text:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

.tour-card .uk-button-text span[uk-icon] {
  transition: var(--transition);
  margin-left: 5px;
}

.tour-card .uk-button-text:hover span[uk-icon] {
  transform: translateX(3px);
}

.tour-card .uk-card-badge {
  top: 15px;
  right: 15px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.uk-label-success {
  background-color: #10ac84;
}

.uk-label-warning {
  background-color: #ff9f43;
}

.tour-meta {
  margin-top: 20px;
  color: var(--dark);
  opacity: 0.8;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 15px;
}

.tour-meta .uk-label {
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 3px 12px;
  border-radius: 20px;
}

.tour-rating {
  display: flex;
  align-items: center;
}

.uk-text-warning {
  color: #ffa41b !important;
}

.tour-rating .uk-text-small {
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

/* Badge styles */
.uk-badge {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 0 15px;
  font-size: 0.8rem;
  text-transform: none;
  font-weight: 500;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0;
}

/* Button Styles */
.uk-button {
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: none;
  font-size: 0.95rem;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  transition: var(--transition);
}

.uk-button-large {
  font-size: 1.1rem;
  padding: 0 35px;
}

.uk-button-text {
  position: relative;
  padding-bottom: 2px;
}

.uk-button-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: var(--transition);
}

.uk-button-text:hover::after {
  height: 2px;
  background-color: var(--primary);
}

.header-cta .uk-button-primary {
  font-size: 0.9rem;
  padding: 0 18px;
  height: 38px;
  line-height: 38px;
}

/* Footer */
footer {
  position: relative;
  color: var(--white);
  padding-top: 50px;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--primary);
}

footer h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

footer .uk-list li {
  padding: 7px 0;
}

footer .uk-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

footer .uk-list a:hover {
  color: var(--primary);
  text-decoration: none;
}

footer .uk-list.uk-list-divider > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.1);
}

footer .uk-icon-button {
  background-color: var(--primary);
  color: var(--white);
  transition: var(--transition);
}

footer .uk-icon-button:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Footer Logo and Contact */
.footer-logo-container {
  display: flex;
  align-items: center;
}

.footer-logo-container .logo-image {
  filter: brightness(0) invert(1);
}

.footer-logo-container .company-name,
.footer-logo-container .company-tagline {
  color: var(--white);
}

.footer-logo-container .company-name {
  color: var(--accent);
}

.footer-contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item span[uk-icon] {
  margin-right: 10px;
  color: var(--primary);
}

.contact-item a {
  color: var(--white);
  opacity: 0.9;
}

.contact-item a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Footer Links */
.footer-links a {
  display: flex;
  align-items: center;
}

.footer-links a:hover span[uk-icon] {
  transform: translateX(3px);
}

.footer-links span[uk-icon] {
  transition: var(--transition);
}

/* Footer Social Vertical */
.footer-social-vertical {
  display: flex;
  flex-direction: column;
}

.footer-social-vertical .social-link {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.footer-social-vertical .social-link i {
  width: 20px;
  margin-right: 10px;
  color: var(--primary);
}

.footer-social-vertical .social-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Destination Pages */
.destination-header {
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.destination-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.destination-header h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

/* Contact Form */
form label {
  font-weight: 500;
}

.uk-input,
.uk-select,
.uk-textarea {
  border-radius: var(--border-radius);
  padding: 12px 20px;
  border: 1px solid #e5e5e5;
  transition: var(--transition);
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 80, 19, 0.1);
}

.uk-form-danger {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Tour Details Page */
.tour-highlight {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 500;
}

.tour-info {
  list-style: none;
  padding-left: 0;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 20px;
}

.tour-info li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}

.tour-info li:last-child {
  border-bottom: none;
}

.tour-info li span[uk-icon] {
  margin-right: 10px;
  color: var(--primary);
}

.tour-price {
  margin-top: 20px;
  padding: 25px;
  background-color: var(--secondary);
  border-radius: var(--border-radius);
  text-align: center;
}

.price-from {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.price-from .highlight {
  color: var(--primary);
  font-weight: bold;
  font-size: 2.5rem;
  display: block;
  margin: 10px 0;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.day-by-day .day {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.day-by-day .day:last-child {
  border-bottom: none;
}

.day-by-day h3 {
  color: var(--dark);
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  margin-bottom: 20px;
}

.testimonials .uk-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonials .uk-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonials .uk-card-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tour-card .ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  z-index: 10;
  font-size: 0.8rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.tour-card .tour-content {
  padding: 25px;
}

.tour-card h2 {
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.tour-meta {
  margin: 15px 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-meta .uk-label {
  background-color: var(--secondary);
  color: var(--dark);
  font-size: 0.85rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
}

/* Features Section */
.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--white);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-box .uk-icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-box h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Team Members */
.team-member {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.team-member img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--secondary);
  transition: var(--transition);
}

.team-member:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
}

.team-member h3 {
  margin-bottom: 5px;
  color: var(--dark);
}

.team-member .role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

/* Mobile Navbar */
.mobile-menu-bar {
  background-color: var(--white);
  color: var(--dark) !important;
  box-shadow: var(--shadow-lg);
  padding: 30px 20px;
  width: 300px;
  position: relative;
}

/* Fix for mobile menu with sticky header */
#mobile-menu {
  z-index: 1100; /* Higher than the sticky header */
}

#mobile-menu .uk-offcanvas-bar {
  top: 0 !important;
  height: 100vh !important;
  position: fixed;
}

.mobile-menu-bar * {
  color: var(--dark);
}

.uk-offcanvas-close {
  color: var(--dark);
  position: absolute;
  top: 15px;
  right: 15px;
  transition: var(--transition);
}

.uk-offcanvas-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-logo-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo-container .logo-image {
  max-height: 36px;
  margin-bottom: 0;
  margin-right: 10px;
}

.mobile-logo-container .logo-text {
  align-items: flex-start;
}

.mobile-logo-container .company-name {
  font-size: 1.3rem;
  color: var(--primary);
}

/* Custom Mobile Menu Styles */
.mobile-nav-wrapper {
  margin-bottom: 30px;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary) !important;
  text-decoration: none;
}

.mobile-nav-link-parent {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  flex: 1;
}

.mobile-nav-link-parent:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

.mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}

.mobile-nav-toggle:hover {
  color: var(--primary) !important;
}

.mobile-toggle-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  transition: var(--transition);
}

.mobile-toggle-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mobile-submenu {
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.submenu-item {
  margin-top: 10px;
}

.mobile-submenu .mobile-nav-link {
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark) !important;
}

.mobile-submenu .mobile-nav-link:hover {
  color: var(--primary) !important;
}

.mobile-submenu .mobile-nav-toggle {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--dark) !important;
}

.mobile-submenu .mobile-nav-toggle:hover {
  color: var(--primary) !important;
}

.view-all {
  color: var(--primary) !important;
  font-weight: 500;
  margin-top: 5px;
}

.mobile-contact-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.mobile-contact-info .contact-item span[uk-icon] {
  margin-right: 10px;
  color: var(--primary);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-contact-info .contact-item a {
  color: var(--dark) !important;
  font-size: 0.95rem;
}

.mobile-contact-info .contact-item a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

/* Mobile menu social icons */
.uk-offcanvas-bar .uk-icon-button {
  background-color: var(--white);
  color: var(--primary);
  width: 36px;
  height: 36px;
  transition: var(--transition);
}

.uk-offcanvas-bar .uk-icon-button:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mobile menu button */
.uk-offcanvas-bar .uk-button-primary {
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.uk-offcanvas-bar .uk-button-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Section styles */
.section-title {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

/* Divider style */
.divider {
  margin: 40px 0;
  height: 2px;
  background: linear-gradient(to right, rgba(0,0,0,0.05), var(--primary), rgba(0,0,0,0.05));
}

/* Image hover effects */
.hover-zoom {
  overflow: hidden;
  border-radius: var(--border-radius);
  display: block;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .header-nav-container .uk-navbar-nav > li > a {
    padding: 0 10px;
    font-size: 0.95rem;
  }
  
  .company-name {
    font-size: 1.2rem;
  }
  
  .company-tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .header-flex-container {
    height: 70px;
  }
  
  .uk-navbar-toggle {
    margin-left: auto;
  }
  
  .hero {
    height: 80vh;
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .hero .uk-button-large {
    padding: 0 30px;
    line-height: 50px;
    font-size: 1rem;
    min-width: 160px;
  }
  
  .tour-card .uk-card-media-top img {
    height: 200px;
  }
  
  .tour-card .uk-card-title {
    font-size: 1.3rem;
  }
  
  .feature-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .feature-number {
    font-size: 4rem;
    opacity: 0.03;
  }
  
  .why-choose-section {
    padding-bottom: 100px;
  }
  
  .why-choose-section .uk-button-container {
    margin-top: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero .uk-button-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero .uk-button-large {
    padding: 0 20px;
    line-height: 45px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 220px;
  }
  
  .tour-card {
    margin-bottom: 15px;
  }
  
  .tour-card .uk-card-media-top img {
    height: 180px;
  }
  
  .feature-card {
    padding: 25px 15px;
    margin-bottom: 30px;
    min-height: 250px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
  
  .feature-number {
    font-size: 3.5rem;
    bottom: 5px;
    right: 10px;
    opacity: 0.03;
  }
  
  .why-choose-section {
    padding-bottom: 90px;
  }
  
  .why-choose-section .uk-text-lead {
    font-size: 1.1rem;
  }
  
  .why-choose-section .uk-button-container {
    margin-top: 0;
    padding-top: 10px;
  }
  
  .why-choose-section .uk-button-default.uk-light {
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
  }
  
  .destination-header {
    height: 300px;
  }
  
  .destination-header h1 {
    font-size: 2.2rem;
  }
  
  .uk-grid-large {
    margin-left: -15px;
  }
  
  .uk-grid-large > * {
    padding-left: 15px;
  }
  
  .mobile-logo-container .company-name {
    font-size: 1.2rem;
  }
  
  .mobile-logo-container .company-tagline {
    font-size: 0.7rem;
  }
  
  .footer-social-vertical {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .footer-social-vertical .social-link {
    margin-right: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 20px 15px;
    margin-bottom: 25px;
    min-height: auto;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .feature-icon [uk-icon] {
    width: 30px;
    height: 30px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .feature-number {
    font-size: 3rem;
    opacity: 0.02;
  }
  
  .why-choose-section {
    padding-bottom: 80px;
  }
  
  .why-choose-section .uk-heading-medium {
    font-size: 1.8rem;
  }
  
  .why-choose-section .uk-text-lead {
    font-size: 1rem;
    width: 90% !important;
  }
  
  .why-choose-section .uk-button-container {
    margin-top: 0;
  }
  
  .why-choose-section .uk-grid {
    margin-bottom: 0;
  }
}

@media (max-width: 320px) {
  #company-name {
    display: none;
  }
  
  .mobile-logo-container > .logo-text {
    display: none;
  }
  
  .logo-image {
    display: block !important;
    height: 35px !important;
    width: 47px;
  }
  
  .mobile-logo-container .logo-image {
    margin-right: 0;
    display: block !important;
    max-height: 35px !important;
  }
  
  .logo-text {
    display: none;
  }
  
  .mobile-logo-container {
    justify-content: center;
  }
  
  .header-left {
    flex: 0 0 auto;
    max-width: 40px;
  }
  
  .uk-logo {
    padding-right: 0;
  }
  
  .header-flex-container {
    justify-content: space-between;
  }
  
  /* Ensure mobile menu toggle is visible */
  .uk-navbar-toggle {
    padding-left: 0;
    margin-left: 10px;
  }
  
  /* Adjust mobile menu width */
  .mobile-menu-bar {
    width: 260px;
    padding: 25px 15px;
  }
}

@media (max-height: 600px) {
  .hero {
    min-height: 450px;
  }
  
  .scroll-indicator {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .scroll-indicator {
    bottom: 15px;
  }
}

@media (max-height: 500px), (max-width: 380px) {
  .scroll-indicator {
    display: none;
  }
}

/* Section with light gray background */
.uk-section-muted {
  background-color: #f8f8f8;
}

/* Improve the CTA button */
.uk-button-primary.uk-button-large {
  padding: 0 35px;
  line-height: 52px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(224, 80, 19, 0.25);
  transition: all 0.3s ease;
}

.uk-button-primary.uk-button-large:hover {
  box-shadow: 0 6px 15px rgba(224, 80, 19, 0.35);
  transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  overflow: hidden;
  padding-bottom: 120px;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PHBhdGggZD0iTTEyODAgMEw2NDAgNzAgMCAwdjE0MGw2NDAgLTcwIDY0MCA3MFYweiIvPjwvZz48L3N2Zz4=');
  background-size: 100% 100px;
  background-position: top center;
  opacity: 0.2;
  z-index: 1;
}

.section-title-light {
  color: var(--white);
}

.section-title-light::after {
  background-color: var(--white);
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, opacity 0.8s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.feature-card-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.feature-number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  z-index: 1;
  font-family: 'Playfair Display', serif;
}

.why-choose-section .uk-button-container {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  clear: both;
}

.uk-button-default.uk-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.uk-button-default.uk-light:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Destinations Preview Section */
.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  color: var(--white);
}

.destination-info h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.destination-info p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.destination-info a {
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.destination-info a i {
  margin-left: 5px;
  transition: var(--transition);
}

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

.destination-info a:hover i {
  transform: translateX(3px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .destination-card img {
    height: 220px;
  }
  
  .destination-info {
    padding: 20px;
  }
  
  .destination-info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .destination-card {
    margin-bottom: 0;
  }
  
  .destination-info {
    padding: 15px 20px;
  }
  
  .destination-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .destination-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Container and Text Alignment */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 25px;
}

.text-center {
  text-align: center;
}

.margin-top-lg {
  margin-top: 50px;
}

/* Button styles for non-UIkit buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Testimonials Section */
.uk-slider-items .uk-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.uk-slider-items .uk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.uk-slider-items .uk-text-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--dark);
}

.uk-slider-items .uk-border-circle {
  border: 3px solid var(--secondary);
}

@media (max-width: 960px) {
  .uk-slider-items .uk-text-lead {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .uk-slider-items .uk-card-body {
    padding: 20px;
  }
  
  .uk-slider-items .uk-text-lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .uk-slider-items .uk-border-circle {
    width: 40px;
    height: 40px;
  }
  
  .uk-slider-items h4 {
    font-size: 1rem;
  }
}

/* Why Choose Us Section Grid Fixes */
.why-choose-section .uk-grid {
  position: relative;
  z-index: 2;
}

.why-choose-section .uk-grid > div {
  margin-bottom: 20px;
}

.why-choose-section .uk-grid > div:last-child .feature-card {
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .why-choose-section .uk-grid > div {
    margin-bottom: 15px;
  }
}

@media (max-width: 960px) {
  .why-choose-section .uk-grid {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .why-choose-section .uk-grid {
    margin-bottom: 10px;
  }
  
  .why-choose-section .uk-grid > div:last-child .feature-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .why-choose-section .uk-grid > div {
    padding-bottom: 5px;
  }
}

/* Tours Page Styles */
.tours-hero {
  padding: 120px 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.tours-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/pages/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

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

.tours-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 40px 0;
}

.tours-hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tours-hero-subtitle {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tours-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
}

.hero-feature span[uk-icon] {
  color: var(--primary);
}

/* Intro Section */
.intro-content {
  padding-right: 40px;
}

.intro-image-container {
  position: relative;
}

.intro-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  transition: transform 0.5s ease;
}

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

.intro-image-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.badge-content {
  text-align: center;
  color: var(--white);
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

/* Departure Cities Section */
.departure-cities-section {
  background-color: #f8f8f8;
}

.departure-city-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.departure-city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.departure-city-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.departure-city-card:hover .departure-city-image img {
  transform: scale(1.05);
}

.departure-city-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.departure-city-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.departure-city-content {
  padding: 30px;
}

.departure-city-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--dark);
}

.departure-city-description {
  margin-bottom: 20px;
  color: #666;
}

.departure-city-tours {
  margin-bottom: 25px;
}

.city-tour-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.city-tour-item span[uk-icon] {
  color: var(--primary);
}

.centered-button {
  text-align: center;
}

/* Feature Cards */
.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

/* Feature cards in Why Choose Us section */
.why-choose-section .feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(224, 80, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
}

.feature-card:hover .feature-icon span {
  color: var(--white);
}

.feature-icon span {
  color: var(--primary);
  transition: var(--transition);
}

/* Icon styles for Why Choose Us section */
.why-choose-section .feature-icon {
  background-color: rgba(255, 255, 255, 0.15);
}

.why-choose-section .feature-icon span {
  color: var(--white);
}

.why-choose-section .feature-card:hover .feature-icon {
  background-color: var(--white);
}

.why-choose-section .feature-card:hover .feature-icon span {
  color: var(--primary);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Text colors for Why Choose Us section */
.why-choose-section .feature-title {
  color: var(--white);
}

.why-choose-section .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Experience Cards */
.experience-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.experience-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.experience-content {
  padding: 25px;
  background-color: var(--white);
  position: relative;
}

.experience-icon {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.experience-icon span {
  color: var(--white);
}

.experience-title {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.experience-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image img {
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.author-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.author-location {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

/* FAQs Section */
.faqs-section {
  background-color: #f8f8f8;
}

.uk-accordion-title {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--dark);
  padding: 15px 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 15px;
}

.uk-accordion-title:hover {
  background-color: rgba(224, 80, 19, 0.05);
}

.faq-icon {
  color: var(--primary);
}

.uk-accordion-content {
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: var(--white);
  padding-right: 40px;
}

.cta-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.cta-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.cta-badge .badge-content {
  color: var(--primary);
}

.cta-badge .badge-number {
  color: var(--primary);
}

.cta-badge .badge-text {
  color: var(--dark);
}

/* Responsive Styles for Tours Page */
@media (max-width: 960px) {
  .tours-hero {
    padding: 80px 0;
  }
  
  .tours-hero-title {
    font-size: 2.5rem;
  }
  
  .tours-hero-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .intro-image-badge {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
  }
  
  .badge-number {
    font-size: 1.8rem;
  }
  
  .badge-text {
    font-size: 0.7rem;
  }
  
  .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .uk-button {
    margin: 0 !important;
  }
}

@media (max-width: 640px) {
  .tours-hero {
    padding: 60px 0;
  }
  
  .tours-hero-title {
    font-size: 2rem;
  }
  
  .tours-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .departure-city-image {
    height: 200px;
  }
  
  .departure-city-content {
    padding: 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon span[uk-icon] {
    transform: scale(0.9);
  }
  
  .experience-image {
    height: 180px;
  }
  
  .experience-content {
    padding: 20px;
  }
  
  .uk-accordion-title {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Marrakech Tours Page Styles */
.marrakech-bg {
  background-image: url('../img/cities/marrakech.webp');
}

.marrakech-tour-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.marrakech-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tour-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.marrakech-tour-card:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.vip-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.tour-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.tour-badge-short {
  background-color: #3498db;
  color: var(--white);
}

.tour-badge-express {
  background-color: #e74c3c;
  color: var(--white);
}

.tour-badge-popular {
  background-color: var(--primary);
  color: var(--white);
}

.tour-badge-complete {
  background-color: #27ae60;
  color: var(--white);
}

.tour-badge-premium {
  background-color: #9b59b6;
  color: var(--white);
}

.tour-badge-vip {
  background-color: #f1c40f;
  color: var(--dark);
}

.tour-card-content {
  padding: 25px;
  background-color: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.tour-card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.tour-card-title a:hover {
  color: var(--primary);
}

.tour-card-description {
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.tour-card-meta {
  margin-bottom: 20px;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #555;
}

.tour-meta-item span[uk-icon] {
  color: var(--primary);
}

.featured-tour {
  border: 2px solid var(--primary);
}

.vip-tour {
  border: 2px solid #f1c40f;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: rgba(224, 80, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.info-card:hover .info-card-icon {
  background-color: var(--primary);
}

.info-card:hover .info-card-icon span {
  color: var(--white);
}

.info-card-icon span {
  color: var(--primary);
  transition: var(--transition);
}

.info-card-content {
  flex: 1;
}

.info-card-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.info-card-description {
  color: #666;
  margin-bottom: 0;
}

/* Responsive styles for Marrakech Tours */
@media (max-width: 960px) {
  .tour-card-image {
    height: 200px;
  }
  
  .info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .info-card-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 640px) {
  .tour-card-image {
    height: 180px;
  }
  
  .tour-card-content {
    padding: 20px;
  }
  
  .tour-card-title {
    font-size: 1.2rem;
  }
}

/* Fez Tours Page Styles */
.fez-bg {
  background-image: url('../img/cities/fez.webp');
}

.fez-tour-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fez-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.route-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.route-card-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.route-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.route-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: rgba(224, 80, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-icon span {
  color: var(--primary);
}

.route-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.route-content p {
  margin: 0;
  color: #666;
}

/* Responsive styles for Fez Tours */
@media (max-width: 960px) {
  .route-card {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .route-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .route-item {
    margin-bottom: 15px;
  }
  
  .route-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  
  .route-content h4 {
    font-size: 1rem;
  }
}

/* Single Tour Page Styles */
.tour-header {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--dark);
  color: var(--white);
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tour-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 0;
}

.tour-header-container {
  position: relative;
  z-index: 1;
}

.tour-header h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tour-details {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.tour-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-details:hover .tour-image img {
  transform: scale(1.05);
}

.tour-summary {
  padding: 30px;
  position: relative;
}

.tour-info {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  padding: 25px;
  list-style: none;
}

.tour-info li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.tour-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tour-info li strong {
  min-width: 120px;
  color: var(--dark);
}

.tour-price {
  background: linear-gradient(135deg, var(--secondary) 0%, #ffe8dd 100%);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-top: 25px;
  text-align: center;
}

.price-from {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.price-from .highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin: 10px 0;
}

.price-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.tour-content {
  padding: 0 20px 40px;
}

.tour-content h2 {
  color: var(--dark);
  font-weight: 600;
  margin: 30px 0 20px;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.day-by-day {
  margin-top: 30px;
}

.day {
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.day:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.day h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.day p {
  margin-bottom: 15px;
}

.day p:last-child {
  margin-bottom: 0;
}

.day p em {
  color: var(--primary);
  font-weight: 500;
}

.tour-includes {
  margin-top: 40px;
}

.tour-includes .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tour-includes h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.tour-includes ul {
  padding-left: 20px;
}

.tour-includes ul li {
  margin-bottom: 10px;
  position: relative;
}

.accommodation {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.accommodation h2 {
  border-bottom: none;
  margin-top: 0;
}

.recommendations {
  margin-top: 40px;
}

.booking-info {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
  padding: 40px;
  border-radius: var(--border-radius);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.booking-info h2 {
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.booking-info p, .booking-info ul {
  color: rgba(255, 255, 255, 0.9);
}

.booking-info a {
  color: var(--secondary);
  font-weight: 500;
}

.booking-info a[role="button"] {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}

.booking-info a[role="button"]:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive styling for tour pages */
@media (max-width: 960px) {
  .tour-header h1 {
    font-size: 2.5rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .tour-content {
    padding: 0 10px 30px;
  }
  
  .tour-image {
    height: 300px;
  }
  
  .tour-includes .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .tour-header {
    padding: 70px 0 50px;
  }
  
  .tour-header h1 {
    font-size: 2rem;
  }
  
  .day {
    padding: 20px;
  }
  
  .booking-info {
    padding: 30px 20px;
  }
  
  .tour-content h2 {
    font-size: 1.5rem;
  }
  
  .tour-image {
    height: 250px;
  }
}

/* Tour Navigation */
.tour-nav-container {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 80px;
  z-index: 800;
  transition: var(--transition);
}

.tour-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 0;
  margin: 0;
  list-style: none;
}

.tour-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.tour-nav li {
  flex: 0 0 auto;
}

.tour-nav a {
  display: inline-block;
  padding: 15px 20px;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.tour-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tour-nav a:hover {
  color: var(--primary);
}

.tour-nav a:hover:after,
.tour-nav a.active:after {
  transform: scaleX(1);
}

.tour-nav a.active {
  color: var(--primary);
}

/* Tour Content Layout */
.tour-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 25px;
}

.tour-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.tour-sidebar {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 160px;
}

.tour-image-main {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tour-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.tour-image-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), rgba(0,0,0,0));
  pointer-events: none;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.tour-gallery-item {
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.tour-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-gallery-item:hover img {
  transform: scale(1.05);
}

.tour-summary-card {
  background: linear-gradient(145deg, var(--white), #f5f5f5);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.tour-summary-card h2 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary);
}

.tour-features-list {
  padding: 0;
  margin: 25px 0;
  list-style: none;
}

.tour-features-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.tour-features-list li span {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: rgba(224, 80, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-features-list li span svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.tour-section {
  margin-bottom: 60px;
  scroll-margin-top: 180px;
}

.tour-section h2 {
  color: var(--dark);
  font-weight: 600;
  margin: 0 0 25px;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.day {
  margin-bottom: 30px;
  padding: 35px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  position: relative;
}

.day-badge {
  position: absolute;
  top: 0;
  right: 30px;
  background-color: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.day:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.day h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.4rem;
  padding-right: 50px;
}

.day-activities {
  padding-left: 20px;
  margin-bottom: 20px;
}

.day-activities li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

.day-activities li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.day-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed rgba(0,0,0,0.1);
}

.day-meta-item {
  background-color: rgba(224, 80, 19, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.day-meta-item svg {
  margin-right: 5px;
  color: var(--primary);
}

.tour-includes {
  margin-top: 40px;
}

.tour-includes .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.includes-card {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.includes-card h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--secondary);
  font-weight: 600;
}

.includes-card ul {
  padding-left: 0;
  list-style: none;
}

.includes-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.includes-card.included ul li::before {
  content: "✓";
  color: #27ae60;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.includes-card.not-included ul li::before {
  content: "×";
  color: #e74c3c;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.accommodation {
  background: linear-gradient(145deg, #f8f8f8, #ffffff);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-top: 40px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.accommodation h2 {
  border-bottom: 2px solid var(--secondary);
  margin-top: 0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.accommodation-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.accommodation-option {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accommodation-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.accommodation-option h4 {
  color: var(--dark);
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.recommendations {
  margin-top: 40px;
  background: linear-gradient(145deg, #f8f8f8, #ffffff);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid #f1c40f;
}

.recommendations h2 {
  border-bottom: 2px solid #f1c40f;
  margin-top: 0;
  padding-bottom: 15px;
}

.recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.recommendation-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.recommendation-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.recommendation-item svg {
  color: #f1c40f;
  margin-right: 15px;
  min-width: 24px;
}

.booking-info {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
  padding: 50px;
  border-radius: var(--border-radius);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.booking-info h2 {
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.booking-info p, .booking-info ul {
  color: rgba(255, 255, 255, 0.9);
}

.booking-info ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.booking-info ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

.booking-info ul li svg {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary);
}

.booking-info a {
  color: var(--secondary);
  font-weight: 500;
}

.booking-info .booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.booking-info a[role="button"] {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1!important;
}

.booking-info a[role="button"].secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-info a[role="button"]:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.booking-info a[role="button"].secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Related Tours Section */
.related-tours {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}

.related-tours h2 {
  text-align: center;
  margin-bottom: 40px;
}

.related-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Responsive styling for tour pages */
@media (max-width: 1100px) {
  .tour-nav-container {
    top: 70px;
  }
  
  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .tour-header h1 {
    font-size: 2.5rem;
  }
  
  .tour-image-main {
    height: 350px;
    max-width: 100%;
  }
  
  .tour-sidebar {
    position: relative;
    top: 0;
  }
  
  .tour-includes .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .accommodation {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .tour-gallery {
    grid-template-columns: 1fr;
  }
  
  .tour-image-main {
    height: 300px;
  }
  
  .day {
    padding: 25px;
  }
  
  .booking-info {
    padding: 30px;
  }
  
  .related-tours-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-nav-container {
    top: 60px;
    z-index: 900;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tour-header {
    padding: 100px 0 60px;
  }
  
  .tour-header h1 {
    font-size: 2rem;
  }
  
  .tour-nav-container {
    top: 56px;
    height: auto;
    position: sticky;
    z-index: 900;
  }
  
  .tour-nav {
    padding: 0;
    justify-content: flex-start;
    width: 100%;
  }
  
  .tour-nav a {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .tour-section {
    scroll-margin-top: 140px;
  }
  
  .tour-image-main {
    height: 250px;
  }
  
  .day-badge {
    width: 35px;
    height: 35px;
    right: 20px;
  }
  
  .day h3 {
    font-size: 1.2rem;
    padding-right: 40px;
  }
  
  .tour-section h2 {
    font-size: 1.5rem;
  }
  
  .booking-info .booking-buttons {
    flex-direction: column;
  }
  
  .booking-info a[role="button"] {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tour-nav-container {
    top: 56px;
  }
  
  .tour-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }
  
  .tour-nav a {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed !important;
    width: 60px;
    height: 60px;
    bottom: 25px !important;
    right: 25px !important;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #20c060;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp:active {
    transform: scale(0.95);
}

.whatsapp-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e05013;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 80, 19, 0.7);
    }
    
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(224, 80, 19, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 80, 19, 0);
    }
}

/* Media queries for floating WhatsApp button */
@media (max-width: 767px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-notification {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Adjust back to top button position */
.uk-totop-fixed {
    position: fixed;
    right: 25px;
    bottom: 95px; /* Position above the WhatsApp button */
    z-index: 99;
}

/* WhatsApp tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    margin-top: -8px;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
    .whatsapp-tooltip {
        display: none; /* Hide on mobile to save space */
    }
}