/* ══════════════════════════════════════════════════════════
   ARMANI TOURS - WORDPRESS THEME STYLESHEET
   Lightweight, SEO-optimized, high-performance
   ══════════════════════════════════════════════════════════ */

/* CSS VARIABLES */
:root {
  --navy:        #1A3C5E;
  --navy-deep:   #0D2438;
  --gold:        #C49A2A;
  --gold-light:  #E8C45A;
  --sand:        #F5EDD8;
  --sand-mid:    #EDE0C4;
  --cream:       #FDFAF4;
  --sage:        #6B7F5E;
  --earth:       #8B6347;
  --dust:        #C4B69A;
  --text:        #1C1C1C;
  --text-mid:    #3D3D3D;
  --text-light:  #6B6B6B;
  --white:       #FFFFFF;
  --border:      #D8CDB8;
  --font-display:'Playfair Display', Georgia, serif;
  --font-serif:  'Source Serif 4', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(26,60,94,0.08);
  --shadow:      0 4px 16px rgba(26,60,94,0.10);
  --shadow-lg:   0 12px 40px rgba(26,60,94,0.14);
}

/* RESET & BASE */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-serif);
  font-size:17px;
  line-height:1.75;
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════
   PROFESSIONAL HEADER - COMPLETE FINAL
   Logo inline on left + Mega menu columns at top
   ══════════════════════════════════════════════════════════ */

/* Top Bar */
.top-bar {
  background: #0D2438;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.top-bar-link:hover {
  color: #d4a574;
}

.top-bar-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.follow-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block !important;
}

.social-links {
  display: flex !important;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.social-icon:hover {
  background: #d4a574 !important;
  transform: translateY(-2px) !important;
  color: #0D2438 !important;
}

.social-icon svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

/* Main Header */
.site-header {
  background: transparent;
}

.main-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 0;
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo Section - INLINE (Logo + Name + Tagline) */
.logo-wrapper {
  grid-column: 1;
  justify-self: start;
}

.logo-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none;
}

.logo-image-container {
  flex-shrink: 0;
}

.logo-img, 
.custom-logo-link img, 
.custom-logo {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  display: block !important;
}

.logo-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  align-items: flex-start !important;
}

.brand-name {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  white-space: nowrap !important;
}

.brand-tagline {
  font-size: 10px !important;
  color: #d4a574 !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  white-space: nowrap !important;
}

/* Navigation - CENTER */
.main-navigation {
  grid-column: 2;
  justify-self: center;
}

.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  gap: 30px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
}

.nav-menu > li {
  position: relative;
  display: inline-block;
  list-style: none !important;
}

.nav-menu > li::before, 
.nav-menu > li::marker {
  display: none !important;
  content: none !important;
}

.nav-menu > li > a {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a574;
  transition: width 0.3s;
}

.nav-menu > li > a:hover, 
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  color: #d4a574;
}

.nav-menu > li > a:hover::after, 
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after {
  width: 100%;
}

/* Mega Menu - COLUMNS AT TOP */
.mega-menu-container {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #ffffff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 35px !important;
  margin-top: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
  z-index: 1000 !important;
  min-width: 700px !important;
  border-top: 3px solid #d4a574 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  pointer-events: none !important;
}

.nav-menu > li.mega-menu-item:hover > .mega-menu-container,
.nav-menu > li.page_item_has_children:hover > .mega-menu-container,
.nav-menu > li.menu-item-has-children:hover > .mega-menu-container,
.mega-menu-container:hover {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto !important;
}

/* Mega Menu Columns - APPEAR AT TOP */
.mega-menu-columns {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}

.mega-menu-column {
  flex: 1;
  min-width: 200px;
}

/* Column Title - Kenya Safari, Tanzania Safari, Dubai Safari */
.mega-menu-column-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.mega-menu-column-title::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a574;
  transition: width 0.3s ease;
}

.mega-menu-column-title:hover {
  color: #d4a574;
}

.mega-menu-column-title:hover::before {
  width: 60px;
}

/* Sub Items - Level 2 (Masai Mara Safari, Amboseli, etc.) */
.sub-menu-level-2 {
  list-style: none !important;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.mega-menu-item-level-2 {
  margin-bottom: 8px;
  position: relative;
}

.mega-menu-item-level-2 > a {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 20px;
}

/* Arrow for items with children */
.mega-menu-item-level-2:has(.sub-menu-level-3) > a::after {
  content: '›';
  position: absolute;
  right: 0;
  color: #d4a574;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.mega-menu-item-level-2 > a:hover {
  color: #d4a574;
  padding-left: 10px;
}

.mega-menu-item-level-2:hover:has(.sub-menu-level-3) > a::after {
  transform: rotate(90deg);
}

/* Sub Items - Level 3 (Best Time to Visit, etc.) - HIDDEN BY DEFAULT */
.sub-menu-level-3 {
  list-style: none !important;
  margin: 0;
  padding: 0;
  margin-left: 15px;
  margin-top: 5px;
  padding-left: 15px;
  border-left: 2px solid #f0f0f0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Show level 3 when hovering parent */
.mega-menu-item-level-2:hover > .sub-menu-level-3 {
  max-height: 500px;
  opacity: 1;
}

.mega-menu-item-level-3 {
  margin-bottom: 6px;
}

.mega-menu-item-level-3 > a {
  display: block;
  color: #777;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.mega-menu-item-level-3 > a:hover {
  color: #d4a574;
  padding-left: 10px;
}

/* Header Actions - RIGHT */
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  color: #1a1a1a;
  padding: 0;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #0D2438;
  border-color: #0D2438;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 36, 56, 0.2);
}

.search-btn svg {
  width: 18px;
  height: 18px;
}

.header-actions .btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.header-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, #c89660 0%, #d4a574 100%);
  color: #ffffff;
}

.header-actions .btn-primary svg {
  width: 16px;
  height: 16px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  grid-column: 3;
  justify-self: end;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: #d4a574;
}

/* Responsive */
@media screen and (max-width: 968px) {
  
  /* Override grid layout for mobile */
  .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    padding: 10px 20px !important;
  }
  
  /* Logo row - centered */
  .logo-wrapper {
    width: 100% !important;
    text-align: center !important;
    order: 1 !important;
    margin: 10px 0 !important;
  }
  
  .logo-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  .logo-img,
  .custom-logo-link img,
  .custom-logo {
    width: 45px !important;
    height: 45px !important;
  }
  
  .logo-text {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .brand-name {
    font-size: 17px !important;
    line-height: 1.2 !important;
  }
  
  .brand-tagline {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
  
  /* Mobile toggle - absolute position top right */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 2000 !important;
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
    cursor: pointer !important;
    order: 2 !important;
  }
  
  .mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #1a1a1a !important;
    margin: 3px 0 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }
  
  /* Hamburger animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px) !important;
    background-color: #d4a574 !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
    background-color: #d4a574 !important;
  }
  
  /* Hide desktop elements */
  .header-actions {
    display: none !important;
  }
  
  /* ═══════════════════════════════════════════
     MOBILE NAVIGATION - THE KEY PART
     ═══════════════════════════════════════════ */
  
  /* Default: Navigation HIDDEN */
  .main-navigation {
    display: none !important;
    width: 100% !important;
    order: 3 !important;
    background-color: #ffffff !important;
    border-top: 1px solid #e0e0e0 !important;
    margin-top: 10px !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }
  
  /* Active: Navigation VISIBLE */
  .main-navigation.mobile-active {
    display: block !important;
    max-height: 2000px !important;
    overflow: visible !important;
    padding: 10px 0 !important;
  }
  
  /* Menu list styling */
  .main-navigation .nav-menu {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  .main-navigation .nav-menu > li {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100% !important;
  }
  
  .main-navigation .nav-menu > li:last-child {
    border-bottom: none !important;
  }
  
  .main-navigation .nav-menu > li > a {
    display: block !important;
    padding: 15px 20px !important;
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    width: 100% !important;
  }
  
  .main-navigation .nav-menu > li > a:hover {
    background-color: #f8f8f8 !important;
    color: #d4a574 !important;
  }
  
  .main-navigation .nav-menu > li > a::after {
    display: none !important;
  }
  
  /* Mega menu - collapsed by default */
  .main-navigation .mega-menu-container {
    display: none !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 20px 20px 30px !important;
    background-color: #f8f8f8 !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  
  /* Show mega menu when parent li has 'open' class */
  .main-navigation .nav-menu > li.open > .mega-menu-container {
    display: block !important;
  }
  
  /* Mega menu columns */
  .main-navigation .mega-menu-columns {
    display: block !important;
  }
  
  .main-navigation .mega-menu-column {
    margin-bottom: 20px !important;
    width: 100% !important;
  }
  
  .main-navigation .mega-menu-column:last-child {
    margin-bottom: 0 !important;
  }
  
  .main-navigation .mega-menu-column-title {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0D2438 !important;
    padding: 10px 0 8px 0 !important;
    margin-bottom: 10px !important;
    border-bottom: 2px solid #e0e0e0 !important;
    text-decoration: none !important;
  }
  
  /* Sub menu levels */
  .main-navigation .sub-menu-level-2,
  .main-navigation .sub-menu-level-3 {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  
  .main-navigation .sub-menu-level-2 {
    padding-left: 0 !important;
  }
  
  .main-navigation .sub-menu-level-3 {
    padding-left: 15px !important;
    margin-left: 10px !important;
    border-left: 2px solid #e0e0e0 !important;
  }
  
  .main-navigation .mega-menu-item-level-2,
  .main-navigation .mega-menu-item-level-3 {
    margin-bottom: 5px !important;
  }
  
  .main-navigation .mega-menu-item-level-2 > a,
  .main-navigation .mega-menu-item-level-3 > a {
    display: block !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    color: #555555 !important;
    text-decoration: none !important;
    background: transparent !important;
  }
  
  .main-navigation .mega-menu-item-level-2 > a:hover,
  .main-navigation .mega-menu-item-level-3 > a:hover {
    color: #d4a574 !important;
  }
  
  /* Remove any conflicting styles */
  .main-navigation .mega-menu-item-level-2 > a::after,
  .main-navigation .mega-menu-item-level-3 > a::after {
    display: none !important;
  }
  
  /* Top bar adjustments */
  .top-bar {
    display: block !important;
  }
  
  .top-bar-content {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
  
  .top-bar-left {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }
  
  .top-bar-right {
    justify-content: center !important;
  }
  
  .follow-text {
    display: none !important;
  }
}

/* Very small screens */
@media screen and (max-width: 480px) {
  .brand-tagline {
    display: none !important;
  }
  
  .brand-name {
    font-size: 16px !important;
  }
  
  .logo-img,
  .custom-logo-link img,
  .custom-logo {
    width: 40px !important;
    height: 40px !important;
  }
  
  .mobile-menu-toggle {
    top: 15px !important;
    right: 15px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */

h1{font-family:var(--font-display);font-size:clamp(28px,4.5vw,42px);font-weight:700;color:var(--navy);margin:0 0 32px;line-height:1.2}
h2{font-family:var(--font-display);font-size:clamp(22px,3.5vw,30px);font-weight:700;color:var(--navy);margin:52px 0 20px;padding-bottom:12px;border-bottom:2px solid var(--sand-mid);position:relative}
h2::before{content:'';position:absolute;bottom:-2px;left:0;width:60px;height:2px;background:var(--gold)}
h3{font-family:var(--font-display);font-size:clamp(18px,2.8vw,23px);font-weight:600;color:var(--navy);margin:36px 0 14px}

p {
  margin-bottom: 1.3em;
  color: var(--text);
  line-height: 1.8;
}

strong {font-weight: 600;}
a {color: var(--navy);text-decoration: underline;text-underline-offset: 3px;transition: color 0.2s;}
a:hover {color: var(--gold);}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero-banner {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(13,36,56,0.8), rgba(26,60,94,0.7)), 
              url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600') center/cover;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 24px 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196,154,42,0.15), transparent 60%);
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(196,154,42,0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196,154,42,0.4);
  color: var(--navy-deep);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--gold-light);
  color: var(--white);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--navy-deep);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 50px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.section-header h2::before {display: none;}

.section-header p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   TRIP/SAFARI CARDS
   ═══════════════════════════════════════════════════════════ */

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin: 40px 0 80px;
}

.trip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.trip-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.trip-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-content h3 {
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 12px;
}

.trip-content h3 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.trip-content h3 a:hover {
  color: var(--gold);
}

.trip-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sand-mid);
}

.trip-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0 60px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin: 40px 0 60px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.blog-img-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-content h3 {
  margin: 0 0 12px;
}

.blog-content h3 a {
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-content h3 a:hover {
  color: var(--gold);
}

.blog-content > p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--gold-light);
}

.comments-section {
    background: #f8f8f8;
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid #e0e0e0;
}

.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0D2438;
    margin-bottom: 40px;
    text-align: center;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 3px solid #d4a574;
}

.comment-author {
    font-weight: 700;
    color: #0D2438;
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.comment-content p {
    margin: 0;
    line-height: 1.8;
}

.comment-reply-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.comment-reply-link:hover {
    color: #c89660;
}

/* Comment Form */
.comment-respond {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.comment-reply-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #0D2438;
    margin-bottom: 30px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.comment-form textarea {
    min-height: 150px;
}

.comment-form input[type="submit"] {
    background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
    color: #ffffff;
  padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS SLIDER
   ═══════════════════════════════════════════════════════════ */

.partners-section {
  margin: 100px 0 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(245,237,216,0.4) 0%, rgba(237,224,196,0.4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

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

.partner-placeholder .placeholder-box {
  width: 140px;
  height: 60px;
  border: 2px dashed var(--dust);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--dust);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin: 80px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,154,42,0.15), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--white);
  margin: 0 0 18px;
  border: none;
  padding: 0;
}

.cta-section h2::before {display: none;}

.cta-section p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(180deg, #0D2438 0%, #0a1f2e 100%);
  color: var(--white);
  padding: 0;
  margin-top: 100px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 50"><path fill="%230D2438" d="M0,25 Q360,0 720,25 T1440,25 L1440,50 L0,50 Z"/></svg>') repeat-x;
  background-size: 100% 50px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-light);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-about p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-section a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  transition: left 0.3s;
}

.footer-section a:hover {
  color: var(--gold-light);
  padding-left: 24px;
}

.footer-section a:hover::before {
  left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,154,42,0.15);
  border: 1px solid rgba(196,154,42,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  padding: 0;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-4px);
}

.footer-social a::before {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--white);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0;
}

.footer-bottom-links a::before {
  display: none;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1), 0 0 0 24px rgba(37,211,102,0.05);
  }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE TOUR PAGE
   ═══════════════════════════════════════════════════════════ */

.tour-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}

.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,36,56,0.9), transparent);
  padding: 60px 0 40px;
}

.tour-title {
  color: var(--white);
  margin: 0;
}

.tour-location {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--gold-light);
  margin-top: 12px;
}

.tour-content-wrap {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  margin: 40px 0;
}

.tour-booking-box {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 140px;
}

.tour-booking-box h3 {
  margin-top: 0;
  text-align: center;
}

.tour-price-box {
  text-align: center;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 2px solid var(--gold);
}

.price-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin: 8px 0;
}

.price-note {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
}

.tour-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 15px;
}

.info-icon {
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HEADERS
   ═══════════════════════════════════════════════════════════ */

.page-header {
  text-align: center;
  margin: 40px 0 60px;
}

.page-title {
  margin-bottom: 16px;
}

.archive-description {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   ERROR 404
   ═══════════════════════════════════════════════════════════ */

.error-404 {
  text-align: center;
  padding: 80px 24px;
}

.error-404 .page-title {
  font-size: 72px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tour-content-wrap {
    grid-template-columns: 1fr;
  }
  
  .tour-booking-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .header-inner {
    flex-wrap: wrap;
    padding: 16px 20px;
  }
  
  .logo-area img {
    width: 55px;
    height: 55px;
  }
  
  .logo-text h1 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius);
    padding: 16px;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  
  .main-nav a {
    padding: 12px 16px;
    display: block;
    border-radius: var(--radius-sm);
  }
  
  .main-nav a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .main-nav a::after {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-banner {
    height: 400px;
    margin: 30px 20px 50px;
  }
  
  .trips-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
  
  .partners-track {
    gap: 40px;
  }
  
  .partner-logo {
    width: 140px;
    height: 80px;
  }
  
  .tour-hero {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-btns,
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .nav-links {
    flex-direction: column;
  }
  
  .nav-previous,
  .nav-next {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   WORDPRESS CORE
   ═══════════════════════════════════════════════════════════ */

.alignleft {
  float: left;
  margin: 0 24px 24px 0;
}

.alignright {
  float: right;
  margin: 0 0 24px 24px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

.sticky {
  /* Sticky post styles if needed */
}

.bypostauthor {
  /* Post author styles if needed */
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   SEARCH MODAL STYLES
   ══════════════════════════════════════════════════════════ */

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 36, 56, 0.95);
  backdrop-filter: blur(5px);
}

.search-modal-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.search-modal.active .search-modal-content {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-60%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.search-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: all 0.3s ease;
}

.search-modal-close:hover {
  color: #d4a574;
  transform: rotate(90deg);
}

.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.search-input {
  flex: 1;
  padding: 18px 24px;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #d4a574;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.search-input::placeholder {
  color: #999;
}

.search-submit {
  padding: 18px 32px;
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, #c89660 0%, #d4a574 100%);
}

.search-submit svg {
  width: 18px;
  height: 18px;
}

.search-suggestions {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.search-suggestions p {
  font-size: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
}

.search-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-tags a {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.search-tags a:hover {
  background: #d4a574;
  border-color: #d4a574;
  color: #0D2438;
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .search-modal-content {
    padding: 15px;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-input {
    padding: 16px 20px;
    font-size: 16px;
  }
  
  .search-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }
  
  .search-modal-close {
    top: -35px;
    font-size: 35px;
  }
  
  .search-tags {
    gap: 8px;
  }
  
  .search-tags a {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST - FULL WIDTH LAYOUT - CORRECTED
   ═══════════════════════════════════════════════════════════ */

.single-post-main {
  background: #ffffff;
}

.single-post-article {
  background: #ffffff;
}

/* Entry Header - Centered with max-width */
.entry-header {
  padding: 60px 0 40px;
  background: #fafafa;
}

.entry-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.entry-categories {
  margin-bottom: 16px;
}

.entry-categories a {
  background: #d4a574;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.entry-categories a:hover {
  background: #c89660;
}

.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #0D2438;
  margin: 0 0 20px;
  line-height: 1.2;
}

.entry-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Featured Image - FULL WIDTH */
.entry-featured-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.entry-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

/* Content Wrapper - Full Width Container */
.entry-content-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 60px 0;
  background: #ffffff;
}

.entry-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Text Elements - Readable Width (900px centered) */
.entry-content > p,
.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > h5,
.entry-content > h6,
.entry-content > ul,
.entry-content > ol,
.entry-content > blockquote,
.entry-content > .wp-block-quote {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Lists inside content */
.entry-content ul,
.entry-content ol {
  padding-left: 40px;
}

.entry-content li {
  margin-bottom: 10px;
}

/* Images and Media - FULL WIDTH */
.entry-content img,
.entry-content figure,
.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-embed,
.entry-content .wp-block-video,
.entry-content iframe {
  max-width: 100% !important;
  width: 100% !important;
  margin: 40px 0 !important;
  height: auto;
}

/* Table of Contents - Full Width */
.entry-content .ez-toc-container,
.entry-content .toc-container,
.entry-content .table-of-contents,
.entry-content #ez-toc-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 40px 0 !important;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #d4a574;
}

/* Entry Footer - Tags */
.entry-footer {
  background: #fafafa;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0;
}

.entry-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.entry-tags {
  font-size: 14px;
}

.entry-tags strong {
  display: block;
  margin-bottom: 12px;
  color: #0D2438;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.entry-tags a {
  display: inline-block;
  background: #f5f5f5;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  margin: 4px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.entry-tags a:hover {
  background: #d4a574;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Post Navigation Wrapper */
.post-navigation-wrapper {
  background: #ffffff;
  padding: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .entry-header {
    padding: 40px 0 30px;
  }
  
  .entry-title {
    font-size: 28px;
  }
  
  .entry-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .entry-content-wrapper {
    padding: 40px 0;
  }
  
  .entry-footer {
    padding: 30px 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMMENTS SECTION
   ═══════════════════════════════════════════════════════════ */

.comments-section {
  background: #f8f8f8;
  padding: 60px 0;
  margin-top: 80px;
  border-top: 1px solid #e0e0e0;
}

.comments-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #0D2438;
  margin-bottom: 40px;
  text-align: center;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.comment {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 3px solid #d4a574;
}

.comment-author {
  font-weight: 700;
  color: #0D2438;
  margin-bottom: 10px;
}

.comment-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.comment-content p {
  margin: 0;
  line-height: 1.8;
}

.comment-reply-link {
  color: #d4a574;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

.comment-reply-link:hover {
  color: #c89660;
}

/* Comment Form */
.comment-respond {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
}

.comment-reply-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #0D2438;
  margin-bottom: 30px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #d4a574;
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form input[type="submit"] {
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }
  
  .nav-previous,
  .nav-next {
    max-width: 100%;
  }
  
  .entry-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU - FINAL FIX
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 968px) {
  .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
  }
  
  .logo-wrapper {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 0 !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
  }
  
  .main-navigation {
    display: none !important;
    width: 100% !important;
    background: white !important;
    border-top: 2px solid #d4a574 !important;
    margin-top: 10px !important;
  }
  
  .main-navigation.mobile-active {
    display: block !important;
  }
  
  .main-navigation .nav-menu {
    display: block !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .main-navigation .nav-menu > li {
    display: block !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .main-navigation .nav-menu > li > a {
    display: block !important;
    padding: 15px 20px !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
  }
  
  .main-navigation .nav-menu > li > a:hover {
    background: #f8f8f8 !important;
    color: #d4a574 !important;
  }
  
  .main-navigation .mega-menu-container {
    display: none !important;
    background: #f8f8f8 !important;
    padding: 15px 20px !important;
  }
  
  .main-navigation .nav-menu > li.open > .mega-menu-container {
    display: block !important;
  }
  
  .header-actions {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   IMPROVED SIDEBAR STYLES - ATTRACTIVE & PROFESSIONAL
   Add this to your main.css or single-safari-styles.css
   ═══════════════════════════════════════════════════════════ */

/* Main Container - Full Width */
.single-safari-main .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
 
/* Tour Content Wrapper - Full Width Grid */
.tour-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  margin-bottom: 80px;
  max-width: 100%;
  padding: 0;
}
 
/* Main Content - Full Width */
.tour-main-content {
  min-width: 0;
  padding: 60px 80px;
  background: #ffffff;
}
 
/* Tour Description Content */
.tour-description {
  max-width: 100%;
  width: 100%;
}
 
/* Constrain text content for readability but allow full-width elements */
.tour-description > p,
.tour-description > h1,
.tour-description > h2,
.tour-description > h3,
.tour-description > h4,
.tour-description > h5,
.tour-description > h6,
.tour-description > ul,
.tour-description > ol,
.tour-description > blockquote {
  max-width: 900px;
}
 
/* Allow full-width for specific elements */
.tour-description > .wp-block-image,
.tour-description > .wp-block-gallery,
.tour-description > .wp-block-cover,
.tour-description > .wp-block-columns,
.tour-description > .wp-block-group,
.tour-description > figure,
.tour-description > .alignfull,
.tour-description > .alignwide {
  max-width: 100% !important;
  width: 100% !important;
}
 
/* Sidebar - Sticky to the right edge */
.tour-sidebar {
  position: relative;
  background: #f8f8f8;
  border-left: 1px solid #e8e8e8;
}
 
.sticky-sidebar {
  position: sticky;
  top: 100px;
}
 
/* Tour Booking Box */
.tour-booking-box {
  background: #ffffff;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}
 
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════ */
 
@media (max-width: 1440px) {
  .tour-main-content {
    padding: 50px 60px;
  }
  
  .tour-content-wrapper {
    grid-template-columns: 1fr 400px;
  }
}
 
@media (max-width: 1200px) {
  .tour-main-content {
    padding: 40px 50px;
  }
  
  .tour-content-wrapper {
    grid-template-columns: 1fr 380px;
  }
}
 
@media (max-width: 1024px) {
  .tour-main-content {
    padding: 40px 40px;
  }
  
  .tour-content-wrapper {
    grid-template-columns: 1fr 350px;
  }
}
 
@media (max-width: 968px) {
  .tour-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .tour-main-content {
    padding: 30px 20px;
  }
  
  .tour-sidebar {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }
  
  .sticky-sidebar {
    position: relative;
    top: 0;
  }
  
  /* Move sidebar to top on mobile */
  .tour-sidebar {
    order: -1;
  }
}
 
@media (max-width: 640px) {
  .tour-main-content {
    padding: 20px 15px;
  }
}
 
/* ═══════════════════════════════════════════════════════════
   RELATED TOURS - FULL WIDTH SECTION
   ═══════════════════════════════════════════════════════════ */
 
.related-tours-section {
  width: 100%;
  max-width: 100%;
  padding: 80px 80px;
  background: #f8f8f8;
  margin: 0;
}
 
.related-tours-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
 
@media (max-width: 1200px) {
  .related-tours-section {
    padding: 60px 60px;
  }
}
 
@media (max-width: 968px) {
  .related-tours-section {
    padding: 40px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR - ENHANCED STYLES
   ═══════════════════════════════════════════════════════════ */

.tour-sidebar {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 120px;
}

.tour-booking-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.tour-booking-box:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════
   PRICE DISPLAY - GRADIENT BACKGROUND
   ═══════════════════════════════════════════════════════════ */

.tour-price-display {
  text-align: center;
  padding: 35px 30px;
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tour-price-display::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10%, -10%); }
}

.price-from {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.price-per {
  font-size: 15px;
  margin-top: 8px;
  opacity: 0.95;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BADGES - MODERN DESIGN
   ═══════════════════════════════════════════════════════════ */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid #f0f0f0;
}

.trust-badge {
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
}

.badge-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.badge-text {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING DETAILS - IMPROVED LAYOUT
   ═══════════════════════════════════════════════════════════ */

.booking-details {
  padding: 30px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.booking-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0D2438;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #d4a574;
  font-family: 'Playfair Display', serif;
}

.detail-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  transition: all 0.2s ease;
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-item:hover {
  padding-left: 8px;
  background: rgba(212, 165, 116, 0.05);
  margin: 0 -8px;
  padding-right: 8px;
  border-radius: 6px;
}

.detail-icon {
  font-size: 20px;
  text-align: center;
}

.detail-label {
  font-weight: 600;
  color: #666;
}

.detail-value {
  color: #0D2438;
  font-weight: 600;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════
   TOUR CATEGORIES SECTION - ADD TO YOUR CSS
   ═══════════════════════════════════════════════════════════ */

.tour-categories {
  padding: 30px;
  background: #f8f8f8;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.tour-categories h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0D2438;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #d4a574;
  font-family: 'Playfair Display', serif;
}

.category-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.category-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.category-item:hover {
  padding-left: 8px;
  background: rgba(212, 165, 116, 0.08);
  margin: 0 -8px;
  padding-right: 8px;
  border-radius: 6px;
}

.category-icon {
  font-size: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  padding-top: 2px;
}

.category-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-value {
  font-size: 15px;
  font-weight: 600;
  color: #0D2438;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .tour-categories {
    padding: 20px;
  }
  
  .category-item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 14px 0;
  }
  
  .category-icon {
    font-size: 20px;
  }
  
  .category-value {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════
   URGENCY MESSAGE - EYE-CATCHING
   ═══════════════════════════════════════════════════════════ */

.urgency-message {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff;
  padding: 18px 25px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.urgency-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: urgencySlide 2s infinite;
}

@keyframes urgencySlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING BUTTONS - MODERN GRADIENT STYLE
   ═══════════════════════════════════════════════════════════ */

.booking-buttons {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-block:hover::before {
  left: 100%;
}

.btn-primary.btn-block {
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary.btn-block:hover {
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-secondary.btn-block {
  background: #ffffff;
  color: #0D2438;
  border: 2px solid #d4a574;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.btn-secondary.btn-block:hover {
  background: #d4a574;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   HELP BOX - ELEGANT DESIGN
   ═══════════════════════════════════════════════════════════ */

.help-box {
  background: linear-gradient(135deg, #0D2438 0%, #1a3a52 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 36, 56, 0.3);
}

.help-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
}

.help-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px;
}

.help-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.help-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.help-contact a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.help-hours {
  font-size: 13px;
  color: #d4a574;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE STACKING
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tour-content-wrapper {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .sticky-sidebar {
    top: 100px;
  }
}

@media (max-width: 968px) {
  .tour-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sticky-sidebar {
    position: relative;
    top: 0;
  }
  
  .tour-sidebar {
    order: -1; /* Show sidebar above content on mobile */
  }
  
  .price-amount {
    font-size: 48px;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .trust-badge:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .booking-details,
  .booking-buttons {
    padding: 20px;
  }
  
  .price-amount {
    font-size: 42px;
  }
  
  .detail-item {
    grid-template-columns: 25px 1fr auto;
    gap: 10px;
    font-size: 13px;
  }
}
/* ═══════════════════════════════════════════════════════════
   PREMIUM RELATED TOURS SECTION - 3 COLUMNS WITH BORDERS
   ═══════════════════════════════════════════════════════════ */

/* Related Tours Section */
.related-tours-section {
  width: 100%;
  max-width: 100%;
  padding: 80px 20px;
  background: #f8f8f8;
  margin: 0;
}

.related-tours-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-tours-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #0D2438;
  text-align: center;
  margin: 0 0 50px;
  position: relative;
  padding-bottom: 20px;
}

.related-tours-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4a574 0%, #c89660 100%);
  border-radius: 2px;
}

/* Tours Grid - 3 Columns */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 0;
}

/* Tour Card - Premium Design */
.tour-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #d4a574;
}

/* Tour Card Image */
.tour-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
}

.tour-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Price Badge */
.tour-card-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  z-index: 2;
}

/* Tour Card Content */
.tour-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.3;
}

.tour-card-content h3 a {
  color: #0D2438;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tour-card-content h3 a:hover {
  color: #d4a574;
}

/* Tour Meta */
.tour-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Tour Excerpt */
.tour-card-content > p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

/* View Tour Button */
.btn-view-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0D2438 0%, #1a3a52 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 2px solid transparent;
}

.btn-view-tour:hover {
  background: transparent;
  border-color: #0D2438;
  color: #0D2438;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Large Tablets (3 → 2 columns) */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .related-tours-section .section-title {
    font-size: 36px;
  }
  
  .tour-card-image {
    height: 250px;
  }
}

/* Tablets (2 columns) */
@media (max-width: 968px) {
  .related-tours-section {
    padding: 60px 20px;
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .related-tours-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .tour-card-content {
    padding: 25px;
  }
  
  .tour-card-content h3 {
    font-size: 22px;
  }
  
  .tour-card-image {
    height: 220px;
  }
}

/* Mobile (1 column - vertical stack) */
@media (max-width: 640px) {
  .related-tours-section {
    padding: 50px 15px;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .related-tours-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .tour-card-image {
    height: 240px;
  }
  
  .tour-card-content {
    padding: 20px;
  }
  
  .tour-card-content h3 {
    font-size: 20px;
  }
  
  .tour-card-price {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .btn-view-tour {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .related-tours-section .section-title {
    font-size: 24px;
  }
  
  .tour-card-image {
    height: 200px;
  }
  
  .tour-card-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Ribbon Effect for Featured Tours (optional) */
.tour-card.featured::before {
  content: 'Featured';
  position: absolute;
  top: 20px;
  left: -30px;
  background: #28a745;
  color: #ffffff;
  padding: 5px 40px;
  transform: rotate(-45deg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Skeleton Loading Animation (optional - for lazy loading) */
.tour-card.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Add subtle gradient overlay on hover */
.tour-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 36, 56, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-card-image::after {
  opacity: 1;
}