/* ==========================================================================
   SHARED: CSS Custom Properties & Base Reset
   (used by search, archive, single-post, single-trip pages)
   ========================================================================== */

:root {
  --primary:        #0A5591;
  --primary-dark:   #083d6b;
  --primary-light:  #e8f2fb;
  --accent:         #e54b4b;
  --accent2:        #f7a600;
  --text:           #2a2a2a;
  --text-muted:     #666;
  --border:         #e8e8e8;
  --card-bg:        #fff;
  --bg:             #f6f8fb;
  --radius:         14px;
  --shadow:         0 4px 24px rgba(10, 85, 145, 0.09);
  --shadow-hover:   0 16px 48px rgba(10, 85, 145, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ==========================================================================
   SHARED: Container
   ========================================================================== */

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


/* ==========================================================================
   SHARED: Meta Item
   ========================================================================== */

.mwj-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #666;
  text-decoration: none;
}

.mwj-meta-item svg { opacity: 0.7; flex-shrink: 0; }

.mwj-meta-item a {
  color: #0a5591;
  text-decoration: none;
  font-weight: 500;
}

.mwj-meta-item a:hover { text-decoration: underline; }


/* ==========================================================================
   SHARED: Social Follow Widget
   (used on single-trip sidebar & single-post sidebar)
   ========================================================================== */

.mwj-follow-widget {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width:fit-content;
}

.mwj-follow-widget .mwj-widget-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mwj-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mwj-social-btn {
	height:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mwj-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.mwj-social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.mwj-social-btn.twitter   { background: #1DA1F2; }
.mwj-social-btn.facebook  { background: #1877F2; }
.mwj-social-btn.linkedin  { background: #0A66C2; }
.mwj-social-btn.youtube   { background: #FF0000; }
.mwj-social-btn.reddit    { background: #FF4500; }
.mwj-social-btn.tiktok    { background: #000000; }
.mwj-social-btn.threads   { background: #000000; }

.mwj-social-btn svg { color: #fff; }


/* ==========================================================================
   SHARED: Blog / Search Card (used in archive & search results)
   ========================================================================== */

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

/* Category colour map — shared by archive & search card badges */
.cat-colour-0 { background: #e54b4b; }
.cat-colour-1 { background: #8b5cf6; }
.cat-colour-2 { background: #f97316; }
.cat-colour-3 { background: #059669; }
.cat-colour-4 { background: #d97706; }
.cat-colour-5 { background: #0891b2; }
.cat-colour-6 { background: #0A5591; }
.cat-colour-7 { background: #be185d; }

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s, transform 0.35s;
  animation: fadeUp 0.5s ease both;
}

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

.card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

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

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

.card-img .cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-meta .dot { width: 3px; height: 3px; background: #ccc; border-radius: 50%; }

.card-body h3 {
 
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body h3 a:hover { color: var(--primary); }

.card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.author-name { font-size: 12px; font-weight: 600; color: var(--text); }

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.read-more-link:hover { gap: 8px; color: var(--primary-dark); }


/* ==========================================================================
   SHARED: Section Label (archive & search)
   ========================================================================== */

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  margin-top: 48px;
}

.section-label span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}


/* ==========================================================================
   SHARED: Pagination (archive & search)
   ========================================================================== */

.pagination-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text);
  transition: all 0.2s;
  background: #fff;
}

.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination-wrap .page-numbers.dots { border: none; background: none; cursor: default; }


/* ==========================================================================
   Single Trip Page
   ========================================================================== */

.mwj-single-trip-page {
  padding: 40px 0;
  width: 100%;
}

/* Two Column Layout */
.mwj-single-trip .mwj-trip-content-area {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.mwj-single-trip .mwj-primary-content {
  flex: 1;
  width: 70%;
}

.mwj-single-trip .mwj-secondary-sidebar {
  width: 30%;
  position: sticky;
  top: 20px;
}

/* 1. Featured Image */
.mwj-trip-featured-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mwj-trip-featured-image img { width: 100%; height: auto; display: block; }

/* Price Badge on Image */
.mwj-price-badge-on-image {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 85, 145, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
}

.mwj-old-price-badge {
  display: block;
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 3px;
}

.mwj-current-price-badge {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.mwj-discount-badge-single {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
}

/* 2. Title */
.mwj-single-trip .mwj-entry-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.mwj-single-trip .mwj-entry-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

/* Trip Meta Bar */
.mwj-trip-meta-bar {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* 3. Content */
.mwj-single-trip .mwj-entry-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
}

.mwj-single-trip .mwj-entry-content h2,
.mwj-single-trip .mwj-entry-content h3,
.mwj-single-trip .mwj-entry-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.mwj-single-trip .mwj-entry-content h2 { font-size: 28px; }
.mwj-single-trip .mwj-entry-content h3 { font-size: 24px; }

.mwj-single-trip .mwj-entry-content p { margin-bottom: 20px; }

.mwj-single-trip .mwj-entry-content ul,
.mwj-single-trip .mwj-entry-content ol { margin: 20px 0; padding-left: 30px; }

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

/* Booking CTA Section */
.mwj-trip-booking-section {
  background: linear-gradient(135deg, #0a5591 0%, #083d6b 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(10, 85, 145, 0.3);
}

.mwj-booking-cta-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
}

.mwj-booking-cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 25px 0;
}

.mwj-booking-buttons-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mwj-booking-buttons-row .custom-whatsapp-btn { min-width: 160px; }

/* Recommended Widget */
.mwj-recommended-widget {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.mwj-recommended-widget .mwj-widget-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mwj-recommended-widget .mwj-widget-title svg { fill: #e74c3c !important; }

.mwj-recommended-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.mwj-recommended-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.mwj-recommended-thumb {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.mwj-recommended-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mwj-recommended-item:hover .mwj-recommended-thumb img { transform: scale(1.1); }

.mwj-recommended-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mwj-recommended-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.mwj-recommended-title a {
  color: #1a1a1a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mwj-recommended-title a:hover { color: #0a5591; }

.mwj-recommended-date { display: block; font-size: 12px; color: #999; margin-bottom: 8px; }

.mwj-recommended-link {
  font-size: 13px;
  color: #0a5591;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.mwj-recommended-link:hover { text-decoration: underline; }

/* Single Trip — Responsive */
@media (max-width: 992px) {
  .mwj-single-trip .mwj-trip-content-area { flex-direction: column; }
  .mwj-single-trip .mwj-primary-content   { width: 100%; }
  .mwj-single-trip .mwj-secondary-sidebar { width: 100%; position: static; }
  .mwj-single-trip .mwj-entry-title       { font-size: 32px; }
}

@media (max-width: 768px) {
  .mwj-single-trip-page                         { padding: 20px 0; }
  .mwj-single-trip .mwj-entry-title             { font-size: 28px; }
  .mwj-single-trip .mwj-entry-content           { padding: 25px; }
  .mwj-trip-booking-section                     { padding: 30px 20px; }
  .mwj-booking-cta-inner h3                     { font-size: 24px; }
  .mwj-booking-buttons-row                      { flex-direction: column; }
  .mwj-booking-buttons-row .custom-whatsapp-btn { width: 100%; }
  .mwj-recommended-thumb                        { flex: 0 0 80px; width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .mwj-single-trip .mwj-entry-title   { font-size: 24px; }
  .mwj-single-trip .mwj-entry-content { padding: 20px; }
  .mwj-trip-booking-section           { padding: 25px 15px; }
  .mwj-current-price-badge            { font-size: 20px; }
  .mwj-recommended-thumb              { flex: 0 0 70px; width: 70px; height: 70px; }
  .mwj-recommended-title              { font-size: 14px; }
}


/* ==========================================================================
   Single Post Page
   ========================================================================== */

.mwj-single-post-page { 
	width:100%;
	padding: 40px 0!important; }

/* Two Column Layout */
.mwj-single-post .mwj-post-content-area {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.mwj-single-post .mwj-primary-content {
  flex: 1;
  width: 70%;
}

.mwj-single-post .mwj-secondary-sidebar {
  width: 30%;
  position: sticky;
  top: 20px;
}

/* Featured Image */
.mwj-post-featured-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mwj-post-featured-image img { width: 100%; height: auto; display: block; }

/* Category Badge on Image */
.mwj-post-cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(231, 76, 60, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(231, 76, 60, 0.4);
  text-decoration: none;
}

/* Post Header */
.mwj-single-post .mwj-entry-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.mwj-single-post .mwj-entry-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

/* Post Meta Bar */
.mwj-post-meta-bar {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

/* Post Content */
.mwj-single-post .mwj-entry-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
}

.mwj-single-post .mwj-entry-content h2,
.mwj-single-post .mwj-entry-content h3,
.mwj-single-post .mwj-entry-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.mwj-single-post .mwj-entry-content h2 { font-size: 28px; }
.mwj-single-post .mwj-entry-content h3 { font-size: 24px; }

.mwj-single-post .mwj-entry-content p { margin-bottom: 20px; }

.mwj-single-post .mwj-entry-content ul,
.mwj-single-post .mwj-entry-content ol { margin: 20px 0; padding-left: 30px; }

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

.mwj-single-post .mwj-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

.mwj-single-post .mwj-entry-content blockquote {
  border-left: 4px solid #0a5591;
  margin: 24px 0;
  padding: 14px 24px;
  background: #e8f2fb;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}

/* Post Tags */
.mwj-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.mwj-post-tags .tag-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}

.mwj-post-tag {
  background: #e8f2fb;
  color: #0a5591;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.mwj-post-tag:hover { background: #0a5591; color: #fff; }

/* Post Navigation */
.mwj-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}

.mwj-nav-link {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #e0e0e0;
}

.mwj-nav-link:hover {
  box-shadow: 0 8px 28px rgba(10, 85, 145, 0.14);
  transform: translateY(-2px);
  border-color: #0a5591;
}

.mwj-nav-link.prev { align-items: flex-start; }
.mwj-nav-link.next { align-items: flex-end; text-align: right; }

.mwj-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0a5591;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mwj-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar — Recent Posts Widget */
.mwj-recent-posts-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 25px;
}

.mwj-widget-head {
  background: #0a5591;
  padding: 18px 22px;
}

.mwj-widget-head h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mwj-widget-head .mwj-cat-pill {
  background: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  padding: 2px 9px;
  border-radius: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  white-space: nowrap;
}

.mwj-widget-body { padding: 4px 0; }

.mwj-recent-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 20px;
  border-bottom: 1px dashed #f0f0f0;
  text-decoration: none;
  transition: background 0.2s;
}

.mwj-recent-post-item:last-child { border-bottom: none; }
.mwj-recent-post-item:hover { background: #f6f8fb; }

.mwj-recent-post-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f2fb;
}

.mwj-recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mwj-recent-post-item:hover .mwj-recent-post-thumb img { transform: scale(1.08); }

.mwj-recent-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f2fb 0%, #c8dff5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mwj-recent-thumb-placeholder svg { opacity: 0.35; }

.mwj-recent-post-info { flex: 1; min-width: 0; }

.mwj-recent-post-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 7px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.mwj-recent-post-item:hover .mwj-recent-post-title { color: #0a5591; }

.mwj-recent-post-date {
  font-size: 11px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Single Post — Responsive */
@media (max-width: 992px) {
  .mwj-single-post .mwj-post-content-area { flex-direction: column; }
  .mwj-single-post .mwj-primary-content   { width: 100%; }
  .mwj-single-post .mwj-secondary-sidebar { width: 100%; position: static; }
  .mwj-single-post .mwj-entry-title       { font-size: 32px; }
}

@media (max-width: 768px) {
  .mwj-single-post-page               { padding: 20px 0; }
  .mwj-single-post .mwj-entry-title   { font-size: 28px; }
  .mwj-single-post .mwj-entry-content { padding: 25px; }
  .mwj-post-navigation                { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mwj-single-post .mwj-entry-title   { font-size: 24px; }
  .mwj-single-post .mwj-entry-content { padding: 20px; }
}


/* ==========================================================================
   Search Results Page
   ========================================================================== */

/* Search Header */
.search-page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d6aad 60%, #0A5591 100%);
  padding: 56px 0 72px!important;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.search-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.search-page-header .wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.search-page-header .tag-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
}

.search-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.search-page-header h1 em { color: var(--accent2); font-style: italic; }

.search-page-header .results-count {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 28px;
}

.search-page-header .results-count strong { color: #fff; font-weight: 700; }

/* Search Bar in Header */
.search-bar-wrap { max-width: 600px; margin: 0 auto; }

.search-bar-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  gap: 10px;
}

.search-bar-form .s-icon { color: var(--primary); flex-shrink: 0; opacity: 0.65; }

.search-bar-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  min-width: 0;
}

.search-bar-form input[type="search"]::placeholder { color: #aaa; }

.search-bar-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 11px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-bar-form button:hover { background: var(--primary-dark); transform: scale(1.03); }

/* Search Layout */
.search-page-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* 3-Column Card Grid (search) */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Post-type badge (search only) */
.card-img .type-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0, 0, 0, 0.45); backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

.card-img .type-badge.type-trip { background: rgba(10, 85, 145, 0.85); }
.card-img .type-badge.type-post { background: rgba(229, 75, 75, 0.85); }

/* No Results */
.no-results-wrap { text-align: center; padding: 80px 24px; }

.no-results-wrap .nr-icon {
  width: 80px; height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  opacity: 0.7;
}

.no-results-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}

.no-results-wrap p {
  color: var(--text-muted); font-size: 15px;
  max-width: 420px; margin: 0 auto 28px;
}

.btn-home {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 13px 28px; border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
}

.btn-home:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }

/* Search — Responsive */
@media (max-width: 1024px) { .search-results-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .search-results-grid          { grid-template-columns: 1fr; }
  .search-bar-form              { border-radius: 12px; padding: 6px 6px 6px 14px; }
  .search-bar-form button       { border-radius: 8px; padding: 10px 18px; font-size: 12px; }
}


/* ==========================================================================
   Blog Archive Page
   ========================================================================== */

.blog-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d6aad 60%, #0A5591 100%);
  padding: 64px 0 80px !important;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.blog-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-header .wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1; text-align: center;
}

.blog-header .tag-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
}

.blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-header h1 em { color: var(--accent2); font-style: italic; }

.blog-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px; max-width: 520px; margin: 0 auto;
}

/* Archive Layout */
.blog-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 80px;
}

/* Section label top margin override for archive */
.blog-layout .section-label { margin-top: 52px; }

/* Featured Hero Post */
.hero-post {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-post:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.hero-post .hero-img {
  position: relative; overflow: hidden;
  min-height: 460px;
}


.hero-post .hero-img img {
  width: 100%;  height: 460px; object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-post:hover .hero-img img { transform: scale(1.05); }

.hero-img .cat-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  box-shadow: 0 3px 12px rgba(229, 75, 75, 0.4);
}

.hero-img .read-time {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}

.hero-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-body .meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px; flex-wrap: wrap;
}

.hero-body .meta .dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

.hero-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; line-height: 1.3;
  color: var(--text); margin-bottom: 16px;
}

.hero-body h2 a:hover { color: var(--primary); }

.hero-body p.excerpt {
  color: var(--text-muted); font-size: 14px; line-height: 1.8;
  margin-bottom: 28px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

.btn-read {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 12px 24px; border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}

.btn-read:hover { background: var(--primary-dark); transform: translateX(3px); color: #fff; }
.btn-read svg   { transition: transform 0.2s; }
.btn-read:hover svg { transform: translateX(4px); }

/* No Posts */
.no-posts { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 15px; }
.no-posts svg { margin: 0 auto 16px; opacity: 0.3; }

/* Two-Column Area */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Blog Grid (archive — 2 col) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }

.widget-head { background: var(--primary); padding: 18px 22px; }

.widget-head h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 8px;
}

.widget-body { padding: 20px 22px; }

/* Search widget (archive sidebar) */
.search-form {
  display: flex;
  border: 2px solid var(--border); border-radius: 10px; overflow: hidden;
}

.search-form input {
  flex: 1; border: none; outline: none; padding: 11px 14px;
  font-family: inherit; font-size: 14px; color: var(--text);
  background: #fff;
}

.search-form input::placeholder { color: #bbb; }

.search-form button {
  background: var(--primary); border: none; padding: 0 16px;
  cursor: pointer; color: #fff; display: flex; align-items: center;
  transition: background 0.2s;
}

.search-form button:hover { background: var(--primary-dark); }

/* Popular posts (sidebar) */
.pop-post {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px dashed var(--border);
}

.pop-post:last-child { border-bottom: none; padding-bottom: 0; }

.pop-thumb {
  width: 76px; height: 68px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden; background: var(--primary-light);
}

.pop-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pop-info h5 {
  font-size: 13px; font-weight: 600; line-height: 1.4;
  margin-bottom: 6px; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.pop-info h5 a:hover { color: var(--primary); }
.pop-info .pop-date   { font-size: 11px; color: var(--text-muted); }

/* Categories (sidebar) */
.cat-list { list-style: none; }

.cat-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed var(--border);
  font-size: 13px;
}

.cat-list li:last-child { border-bottom: none; }
.cat-list li a          { color: var(--text); font-weight: 500; transition: color 0.2s; }
.cat-list li a:hover    { color: var(--primary); }

.cat-list li .count {
  background: var(--primary-light); color: var(--primary);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
}

/* Tags cloud (sidebar) */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  background: var(--primary-light); color: var(--primary);
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 13px; border-radius: 20px; cursor: pointer;
  transition: all 0.2s; border: 1px solid transparent;
  text-decoration: none; display: inline-block;
}

.tag:hover { background: var(--primary); color: #fff; }


.page-header{
	 display:none;
}

.page-numbers li{
list-style:none;
}


.page-template-contact-us .site-content .container {
	
	background: #f6f8fb;
	    padding: 4rem;
}

/* ==========================================================================
   SLICK SLIDER CUSTOM STYLES (Deals & Discounts)
   ========================================================================== */

/* --- 1. Gap & Equal Height Cards Fix --- */
.trips-slick-slider .slick-list {
  margin: 0 -15px;
  padding: 10px 0 30px; /* Gives room for the card's box-shadows on hover */
}

.trips-slick-slider .slick-slide {
  margin: 0 15px;
  height: inherit; /* Helps slides match the tallest card */
}

.trips-slick-slider .slick-track {
  display: flex !important; /* Forces slides to equal height */
}

.trips-slick-slider .slick-slide > div {
  height: 100%;
}

.trips-slick-slider .trip-card {
  height: 100%; 
  margin: 0; 
  display: flex;
  flex-direction: column;
}

/* Make the content area expand so buttons sit at the bottom */
.trips-slick-slider .trip-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trips-slick-slider .trip-footer {
  margin-top: auto; /* Pushes the WhatsApp/Book Now buttons to the bottom */
}


/* --- 2. Arrow Styling & Hover Fix --- */
.trips-slick-slider .slick-prev,
.trips-slick-slider .slick-next {
  top: 49%
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 18px 18px !important;
  box-shadow: 0 4px 16px rgba(10, 85, 145, 0.25);
  z-index: 10;
  transition: background-color 0.25s, transform 0.25s;
}

/* Kill the default Slick font character */
.trips-slick-slider .slick-prev::before,
.trips-slick-slider .slick-next::before {
  display: none !important;
  content: '' !important;
}

/* Custom SVG Arrows */
.trips-slick-slider .slick-prev {
  left: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E") !important;
}

.trips-slick-slider .slick-next {
  right: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") !important;
}

/* Fix vanishing arrow on click/focus */
.trips-slick-slider .slick-prev:hover,
.trips-slick-slider .slick-prev:focus,
.trips-slick-slider .slick-next:hover,
.trips-slick-slider .slick-next:focus {
  background-color: var(--primary-dark) !important;
  transform: translateY(-50%) scale(1.08);
  outline: none;
}

.trips-slick-slider .slick-disabled {
  opacity: 0.35;
  cursor: default;
}



/* --- 3. Mobile Responsiveness for Arrows --- */
@media (max-width: 768px) {
  .trips-slick-slider .slick-prev,
  .trips-slick-slider .slick-next {
    top: 45%;
    width: 34px;
    height: 34px;
    background-size: 15px 15px !important;
  }

  .trips-slick-slider .slick-prev { left: -16px; }
  .trips-slick-slider .slick-next { right: -16px; }
}
@media (max-width: 1200px){
	   .trip-footer {
        flex-direction: column;
        gap: 8px;
    }
	    .custom-whatsapp-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
  /* Hide arrows on very small screens so they don't block the card content */
  .trips-slick-slider .slick-prev,
  .trips-slick-slider .slick-next {
    display: none !important;
  }
}
/* Archive — Responsive */
@media (max-width: 1024px) {
  .hero-post                { grid-template-columns: 1fr; }
  .hero-post .hero-img      { min-height: 320px; }
  .two-col                  { grid-template-columns: 1fr; }
  .blog-sidebar             { position: static; }
}

@media (max-width: 680px) {
  .blog-grid    { grid-template-columns: 1fr; }
  .hero-body    { padding: 28px 24px; }
  .hero-body h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .blog-layout { padding: 0 14px 60px; }
  .hero-body   { padding: 22px 18px; }
}