/* ============================================================
   NILE EMPIRE — MAIN STYLESHEET
   ============================================================ */

/* 1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ne-font-body);
  font-size: var(--ne-text-base);
  color: var(--ne-dark-gray);
  background: var(--ne-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ne-navy); text-decoration: none; transition: color var(--ne-transition); }
a:hover { color: var(--ne-gold); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ne-font-body); border: none; background: none; }
input, select, textarea { font-family: var(--ne-font-body); }

/* 2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ne-font-heading);
  color: var(--ne-navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, var(--ne-text-5xl)); }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--ne-text-3xl)); }
h3 { font-size: clamp(1.3rem, 2.5vw, var(--ne-text-2xl)); }
h4 { font-size: var(--ne-text-xl); }
h5 { font-size: var(--ne-text-lg); }
h6 { font-size: var(--ne-text-md); }

p { margin-bottom: var(--ne-space-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

/* 3. LAYOUT UTILITIES
   ============================================================ */
.ne-container {
  max-width: var(--ne-container);
  margin: 0 auto;
  padding: 0 var(--ne-space-6);
}
@media (max-width: 768px) {
  .ne-container { padding: 0 var(--ne-space-4); }
}

.ne-section { padding: var(--ne-space-20) 0; }
.ne-section--sm { padding: var(--ne-space-12) 0; }
.ne-section--lg { padding: var(--ne-space-24) 0; }

.ne-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ne-space-8); }
.ne-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--ne-space-8); }
.ne-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ne-space-6); }

@media (max-width: 1024px) {
  .ne-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ne-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ne-grid-4, .ne-grid-3, .ne-grid-2 { grid-template-columns: 1fr; }
}

.ne-section-header {
  text-align: center;
  margin-bottom: var(--ne-space-12);
}
.ne-section-header h2 { margin-bottom: var(--ne-space-3); }
.ne-section-header p {
  color: var(--ne-gray);
  font-size: var(--ne-text-md);
  max-width: 600px;
  margin: 0 auto;
}
.ne-section-label {
  display: inline-block;
  font-family: var(--ne-font-body);
  font-size: var(--ne-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ne-gold);
  margin-bottom: var(--ne-space-3);
}

/* 4. BUTTONS — unified system
   ============================================================ */
.ne-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--ne-space-2);
  padding: 0.875rem var(--ne-space-8);
  font-family: var(--ne-font-body);
  font-size: var(--ne-text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--ne-radius);
  border: 2px solid transparent;
  transition: all var(--ne-transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.ne-btn--primary {
  background: var(--ne-gold);
  color: var(--ne-white);
  border-color: var(--ne-gold);
}
.ne-btn--primary:hover {
  background: var(--ne-gold-dark);
  border-color: var(--ne-gold-dark);
  color: var(--ne-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}

.ne-btn--navy {
  background: var(--ne-navy);
  color: var(--ne-white);
  border-color: var(--ne-navy);
}
.ne-btn--navy:hover {
  background: var(--ne-navy-dark);
  border-color: var(--ne-navy-dark);
  color: var(--ne-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,55,97,0.30);
}

.ne-btn--outline {
  background: transparent;
  color: var(--ne-navy);
  border-color: var(--ne-navy);
}
.ne-btn--outline:hover {
  background: var(--ne-navy);
  color: var(--ne-white);
  transform: translateY(-2px);
}

.ne-btn--outline-white {
  background: transparent;
  color: var(--ne-white);
  border-color: var(--ne-white);
}
.ne-btn--outline-white:hover {
  background: var(--ne-white);
  color: var(--ne-navy);
}

.ne-btn--sm {
  padding: 0.6rem var(--ne-space-5);
  font-size: var(--ne-text-xs);
}
.ne-btn--lg {
  padding: 1.1rem var(--ne-space-12);
  font-size: var(--ne-text-base);
}

.ne-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Call Button - always visible, phone style */
.ne-btn--call {
  background: #25d366;
  color: var(--ne-white);
  border-color: #25d366;
}
.ne-btn--call:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--ne-white);
}

/* 5. ANNOUNCEMENT BAR
   ============================================================ */
.ne-announcement {
  background: var(--ne-navy-dark);
  color: var(--ne-white);
  padding: var(--ne-space-2) 0;
  font-size: var(--ne-text-sm);
  position: relative;
  z-index: 100;
}
.ne-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ne-space-4);
}
.ne-announcement a { color: var(--ne-gold); font-weight: 600; }
.ne-announcement a:hover { color: var(--ne-gold-light); }
.ne-announcement__close {
  position: absolute;
  right: var(--ne-space-6);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: var(--ne-space-1);
  font-size: var(--ne-text-lg);
  line-height: 1;
  transition: color var(--ne-transition);
}
.ne-announcement__close:hover { color: var(--ne-white); }

/* 6. HEADER & NAVIGATION
   ============================================================ */
.ne-header {
  background: var(--ne-white);
  box-shadow: 0 2px 12px rgba(26,55,97,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
  transition: box-shadow var(--ne-transition);
}
.ne-header--scrolled { box-shadow: 0 4px 20px rgba(26,55,97,0.14); }

.ne-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--ne-space-6);
}

.ne-logo { display: flex; align-items: center; flex-shrink: 0; }
.ne-logo img { height: 48px; width: auto; }
.ne-logo__text {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-xl);
  font-weight: 700;
  color: var(--ne-navy);
  text-decoration: none;
}
.ne-logo__text span { color: var(--ne-gold); }

/* Primary Nav */
.ne-nav { display: flex; align-items: center; gap: 0; }
.ne-nav__list { display: flex; align-items: center; gap: 0; }
.ne-nav__item { position: relative; }

.ne-nav__link {
  display: block;
  padding: var(--ne-space-3) var(--ne-space-4);
  font-size: var(--ne-text-sm);
  font-weight: 600;
  color: var(--ne-dark-gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--ne-transition);
  white-space: nowrap;
  position: relative;
}
.ne-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: var(--ne-space-4);
  right: var(--ne-space-4);
  height: 2px;
  background: var(--ne-gold);
  transform: scaleX(0);
  transition: transform var(--ne-transition);
  transform-origin: center;
}
.ne-nav__link:hover,
.ne-nav__link.current-menu-item { color: var(--ne-navy); }
.ne-nav__link:hover::after,
.ne-nav__link.current-menu-item::after { transform: scaleX(1); }

/* Dropdown */
.ne-nav__item:hover .ne-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.ne-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ne-white);
  border-radius: var(--ne-radius);
  box-shadow: var(--ne-shadow-md);
  min-width: 220px;
  padding: var(--ne-space-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ne-transition);
  border-top: 3px solid var(--ne-gold);
}
.ne-nav__dropdown li a {
  display: block;
  padding: var(--ne-space-3) var(--ne-space-5);
  font-size: var(--ne-text-sm);
  color: var(--ne-dark-gray);
  transition: all var(--ne-transition);
}
.ne-nav__dropdown li a:hover {
  color: var(--ne-navy);
  background: var(--ne-off-white);
  padding-left: var(--ne-space-6);
}

/* Header Actions */
.ne-header__actions {
  display: flex;
  align-items: center;
  gap: var(--ne-space-3);
  flex-shrink: 0;
}
.ne-header__search-btn {
  background: none;
  border: none;
  color: var(--ne-navy);
  padding: var(--ne-space-2);
  cursor: pointer;
  transition: color var(--ne-transition);
}
.ne-header__search-btn:hover { color: var(--ne-gold); }
.ne-header__search-btn svg { width: 20px; height: 20px; display: block; }

/* Mobile Menu Toggle */
.ne-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--ne-space-2);
  cursor: pointer;
}
.ne-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ne-navy);
  transition: all var(--ne-transition);
  border-radius: 2px;
}
.ne-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ne-hamburger.active span:nth-child(2) { opacity: 0; }
.ne-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search Overlay */
.ne-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,55,97,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ne-transition);
}
.ne-search-overlay.active { opacity: 1; visibility: visible; }
.ne-search-overlay__inner { width: 100%; max-width: 640px; padding: 0 var(--ne-space-6); }
.ne-search-overlay input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--ne-gold);
  color: var(--ne-white);
  font-family: var(--ne-font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  padding: var(--ne-space-4) 0;
  outline: none;
}
.ne-search-overlay input::placeholder { color: rgba(255,255,255,0.4); }
.ne-search-overlay__close {
  position: absolute;
  top: var(--ne-space-8);
  right: var(--ne-space-8);
  color: var(--ne-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 1024px) {
  .ne-hamburger { display: flex; }
  .ne-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ne-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--ne-space-6);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--ne-transition);
    z-index: 98;
    box-shadow: 4px 0 20px rgba(26,55,97,0.15);
  }
  .ne-nav.open { transform: translateX(0); }
  .ne-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .ne-nav__link { padding: var(--ne-space-4); border-bottom: 1px solid var(--ne-light-gray); font-size: var(--ne-text-base); }
  .ne-nav__link::after { display: none; }
  .ne-nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0; background: var(--ne-off-white); display: none; }
  .ne-nav__item.open .ne-nav__dropdown { display: block; }
}

/* 7. HERO SECTION — Static, no slider
   ============================================================ */
.ne-hero {
  position: relative;
  height: clamp(520px, 82vh, 860px);
  background: linear-gradient(135deg, #122849 0%, #1a3761 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ne-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,73,0.78) 0%, rgba(26,55,97,0.55) 55%, rgba(18,40,73,0.40) 100%);
  z-index: 1;
}
.ne-hero .ne-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.ne-hero__content {
  max-width: 700px;
  padding: var(--ne-space-8) 0;
  animation: heroFadeUp 0.9s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ne-hero-slide__label {
  display: inline-block;
  font-size: var(--ne-text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ne-gold);
  margin-bottom: var(--ne-space-4);
}
.ne-hero-slide__title {
  font-family: var(--ne-font-heading);
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  color: var(--ne-white);
  line-height: 1.12;
  margin-bottom: var(--ne-space-5);
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.ne-hero-slide__text {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--ne-space-8);
  line-height: 1.65;
  max-width: 520px;
}
.ne-hero__btns {
  display: flex;
  gap: var(--ne-space-4);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .ne-hero__content { padding: var(--ne-space-6) 0; }
  .ne-hero-slide__title { font-size: 2rem; }
  .ne-hero__btns { flex-direction: column; align-items: flex-start; }
}
/* 8. TOUR CARDS
   ============================================================ */
.ne-tour-card {
  background: var(--ne-white);
  border-radius: var(--ne-radius-lg);
  overflow: hidden;
  box-shadow: var(--ne-shadow);
  transition: all var(--ne-transition);
  display: flex;
  flex-direction: column;
}
.ne-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ne-shadow-lg);
}

.ne-tour-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ne-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ne-transition-slow);
}
.ne-tour-card:hover .ne-tour-card__image img { transform: scale(1.06); }

.ne-tour-card__badge {
  position: absolute;
  top: var(--ne-space-3);
  left: var(--ne-space-3);
  background: var(--ne-gold);
  color: var(--ne-white);
  font-size: var(--ne-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--ne-space-1) var(--ne-space-3);
  border-radius: var(--ne-radius-sm);
}
.ne-tour-card__badge--hot { background: #e53e3e; }
.ne-tour-card__badge--sale { background: #38a169; }
.ne-tour-card__badge--new { background: var(--ne-navy); }

.ne-tour-card__price-tag {
  position: absolute;
  bottom: var(--ne-space-3);
  right: var(--ne-space-3);
  background: var(--ne-navy);
  color: var(--ne-white);
  padding: var(--ne-space-2) var(--ne-space-4);
  border-radius: var(--ne-radius);
  font-weight: 700;
  font-size: var(--ne-text-sm);
}
.ne-tour-card__price-tag .from { font-size: var(--ne-text-xs); opacity: 0.75; }

.ne-tour-card__body {
  padding: var(--ne-space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ne-tour-card__meta {
  display: flex;
  gap: var(--ne-space-4);
  margin-bottom: var(--ne-space-3);
  font-size: var(--ne-text-xs);
  color: var(--ne-gray);
}
.ne-tour-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--ne-space-1);
}
.ne-tour-card__meta svg { width: 13px; height: 13px; }

.ne-tour-card__title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-lg);
  color: var(--ne-navy);
  margin-bottom: var(--ne-space-3);
  line-height: 1.3;
  flex: 1;
}
.ne-tour-card__title a { color: inherit; text-decoration: none; }
.ne-tour-card__title a:hover { color: var(--ne-gold); }

.ne-tour-card__excerpt {
  font-size: var(--ne-text-sm);
  color: var(--ne-gray);
  margin-bottom: var(--ne-space-5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ne-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ne-space-3);
  border-top: 1px solid var(--ne-light-gray);
  padding-top: var(--ne-space-4);
  margin-top: auto;
}
.ne-tour-card__price {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-xl);
  font-weight: 700;
  color: var(--ne-navy);
}
.ne-tour-card__price .from { font-size: var(--ne-text-xs); font-family: var(--ne-font-body); font-weight: 400; color: var(--ne-gray); display: block; margin-bottom: -4px; }

/* 9. DESTINATION CARDS
   ============================================================ */
.ne-dest-card {
  position: relative;
  border-radius: var(--ne-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.ne-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ne-transition-slow);
}
.ne-dest-card:hover img { transform: scale(1.08); }
.ne-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,55,97,0.85) 0%, rgba(26,55,97,0.1) 60%);
  transition: background var(--ne-transition);
}
.ne-dest-card:hover .ne-dest-card__overlay { background: linear-gradient(to top, rgba(26,55,97,0.9) 0%, rgba(26,55,97,0.3) 60%); }
.ne-dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--ne-space-5);
}
.ne-dest-card__name {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-xl);
  color: var(--ne-white);
  margin-bottom: var(--ne-space-1);
}
.ne-dest-card__count {
  font-size: var(--ne-text-sm);
  color: var(--ne-gold);
  font-weight: 600;
}

/* 10. WHY CHOOSE US
   ============================================================ */
.ne-why { background: var(--ne-navy); }
.ne-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ne-space-8);
}
@media (max-width: 1024px) { .ne-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ne-why__grid { grid-template-columns: 1fr; } }

.ne-why__item { text-align: center; }
.ne-why__icon {
  width: 72px;
  height: 72px;
  background: rgba(212,160,23,0.15);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--ne-space-5);
  transition: all var(--ne-transition);
}
.ne-why__item:hover .ne-why__icon {
  background: var(--ne-gold);
  border-color: var(--ne-gold);
}
.ne-why__icon svg { width: 32px; height: 32px; color: var(--ne-gold); }
.ne-why__item:hover .ne-why__icon svg { color: var(--ne-white); }

.ne-why__title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-lg);
  color: var(--ne-white);
  margin-bottom: var(--ne-space-3);
}
.ne-why__text { font-size: var(--ne-text-sm); color: rgba(255,255,255,0.65); line-height: 1.7; }

.ne-why .ne-section-label { color: var(--ne-gold); }
.ne-why .ne-section-header h2 { color: var(--ne-white); }
.ne-why .ne-section-header p { color: rgba(255,255,255,0.6); }

/* 11. ALTERNATING IMAGE+TEXT SECTIONS
   ============================================================ */
.ne-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}
.ne-split--reverse .ne-split__image { order: 2; }
.ne-split--reverse .ne-split__content { order: 1; }
.ne-split__image { position: relative; overflow: hidden; min-height: 360px; }
.ne-split__image img { width: 100%; height: 100%; object-fit: cover; }
.ne-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--ne-space-16) var(--ne-space-16);
  background: var(--ne-off-white);
}
@media (max-width: 768px) {
  .ne-split { grid-template-columns: 1fr; }
  .ne-split--reverse .ne-split__image { order: 0; }
  .ne-split--reverse .ne-split__content { order: 0; }
  .ne-split__content { padding: var(--ne-space-10) var(--ne-space-6); }
}

/* 12. TESTIMONIALS
   ============================================================ */
.ne-testimonials { background: var(--ne-off-white); }
.ne-testimonial-card {
  background: var(--ne-white);
  border-radius: var(--ne-radius-lg);
  padding: var(--ne-space-8);
  box-shadow: var(--ne-shadow-sm);
  border-left: 4px solid var(--ne-gold);
  position: relative;
}
.ne-testimonial-card__quote {
  font-size: 4rem;
  font-family: var(--ne-font-heading);
  color: var(--ne-gold);
  line-height: 0.8;
  margin-bottom: var(--ne-space-4);
  opacity: 0.4;
}
.ne-testimonial-card__text {
  font-size: var(--ne-text-md);
  color: var(--ne-dark-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--ne-space-5);
}
.ne-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--ne-space-3);
}
.ne-testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ne-light-gray);
  overflow: hidden;
  flex-shrink: 0;
}
.ne-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ne-testimonial-card__name { font-weight: 600; color: var(--ne-navy); font-size: var(--ne-text-sm); }
.ne-testimonial-card__country { font-size: var(--ne-text-xs); color: var(--ne-gray); }
.ne-testimonial-card__stars { color: var(--ne-gold); font-size: var(--ne-text-sm); margin-bottom: var(--ne-space-2); }

/* 13. BLOG CARDS
   ============================================================ */
.ne-blog-card {
  background: var(--ne-white);
  border-radius: var(--ne-radius-lg);
  overflow: hidden;
  box-shadow: var(--ne-shadow-sm);
  transition: all var(--ne-transition);
  border: 1px solid var(--ne-mid-gray);
}
.ne-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ne-shadow-md);
  border-color: transparent;
}
.ne-blog-card__image { aspect-ratio: 16/9; overflow: hidden; }
.ne-blog-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--ne-transition-slow);
}
.ne-blog-card:hover .ne-blog-card__image img { transform: scale(1.05); }
.ne-blog-card__body { padding: var(--ne-space-5); }
.ne-blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--ne-space-4);
  margin-bottom: var(--ne-space-3);
  font-size: var(--ne-text-xs);
  color: var(--ne-gray);
}
.ne-blog-card__category {
  background: rgba(212,160,23,0.12);
  color: var(--ne-gold-dark);
  padding: 2px var(--ne-space-3);
  border-radius: 20px;
  font-weight: 600;
  font-size: var(--ne-text-xs);
}
.ne-blog-card__title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-lg);
  color: var(--ne-navy);
  margin-bottom: var(--ne-space-3);
  line-height: 1.35;
}
.ne-blog-card__title a { color: inherit; }
.ne-blog-card__title a:hover { color: var(--ne-gold); }
.ne-blog-card__excerpt { font-size: var(--ne-text-sm); color: var(--ne-gray); line-height: 1.6; }

/* 14. CTA STRIP
   ============================================================ */
.ne-cta-strip {
  background: linear-gradient(135deg, var(--ne-navy-dark) 0%, var(--ne-navy) 50%, var(--ne-navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.ne-cta-strip::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.03'%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");
}
.ne-cta-strip__inner {
  position: relative;
  text-align: center;
  padding: var(--ne-space-16) 0;
}
.ne-cta-strip__title {
  font-family: var(--ne-font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--ne-white);
  margin-bottom: var(--ne-space-4);
}
.ne-cta-strip__text {
  color: rgba(255,255,255,0.75);
  font-size: var(--ne-text-md);
  max-width: 560px;
  margin: 0 auto var(--ne-space-8);
}
.ne-cta-strip__btns { display: flex; gap: var(--ne-space-4); justify-content: center; flex-wrap: wrap; }

/* 15. SINGLE TOUR PAGE
   ============================================================ */
.ne-single-tour { padding: var(--ne-space-10) 0 var(--ne-space-20); }

.ne-single-tour__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--ne-space-10);
  align-items: start;
}
@media (max-width: 1024px) {
  .ne-single-tour__layout { grid-template-columns: 1fr; }
}

.ne-single-tour__hero {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--ne-radius-lg);
  margin-bottom: var(--ne-space-8);
}

.ne-tour-snapshot {
  background: var(--ne-off-white);
  border-radius: var(--ne-radius-lg);
  padding: var(--ne-space-6);
  margin-bottom: var(--ne-space-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ne-space-4);
  border-left: 4px solid var(--ne-gold);
}
.ne-tour-snapshot__item {}
.ne-tour-snapshot__label {
  font-size: var(--ne-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ne-gray);
  margin-bottom: var(--ne-space-1);
}
.ne-tour-snapshot__value {
  font-size: var(--ne-text-sm);
  color: var(--ne-navy);
  font-weight: 600;
}

/* Tour Content */
.ne-tour-content { line-height: 1.8; }
.ne-tour-content h2 {
  font-size: var(--ne-text-2xl);
  color: var(--ne-navy);
  margin: var(--ne-space-8) 0 var(--ne-space-4);
  padding-bottom: var(--ne-space-3);
  border-bottom: 2px solid var(--ne-light-gray);
}
.ne-tour-content h3 {
  font-size: var(--ne-text-xl);
  color: var(--ne-navy);
  margin: var(--ne-space-6) 0 var(--ne-space-3);
}
.ne-tour-content h4 {
  font-size: var(--ne-text-lg);
  color: var(--ne-navy-light);
  margin: var(--ne-space-5) 0 var(--ne-space-2);
}
.ne-tour-content p { margin-bottom: var(--ne-space-4); color: var(--ne-dark-gray); }
.ne-tour-content ul, .ne-tour-content ol {
  padding-left: var(--ne-space-6);
  margin-bottom: var(--ne-space-4);
  list-style: disc;
}
.ne-tour-content ol { list-style: decimal; }
.ne-tour-content li { margin-bottom: var(--ne-space-2); color: var(--ne-dark-gray); }
.ne-tour-content a { color: var(--ne-navy); text-decoration: underline; text-underline-offset: 3px; }
.ne-tour-content a:hover { color: var(--ne-gold); }
.ne-tour-content img { border-radius: var(--ne-radius); margin: var(--ne-space-6) 0; }
.ne-tour-content strong { color: var(--ne-navy); }

/* Responsive Tables in content */
.ne-tour-content table,
.ne-blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ne-space-6) 0;
  font-size: var(--ne-text-sm);
  border-radius: var(--ne-radius);
  overflow: hidden;
  box-shadow: var(--ne-shadow-sm);
}
.ne-tour-content th,
.ne-blog-content th {
  background: var(--ne-navy);
  color: var(--ne-white);
  padding: var(--ne-space-3) var(--ne-space-4);
  text-align: left;
  font-weight: 600;
  font-size: var(--ne-text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ne-tour-content td,
.ne-blog-content td {
  padding: var(--ne-space-3) var(--ne-space-4);
  border-bottom: 1px solid var(--ne-light-gray);
  color: var(--ne-dark-gray);
  vertical-align: top;
}
.ne-tour-content tr:nth-child(even) td,
.ne-blog-content tr:nth-child(even) td { background: var(--ne-off-white); }
.ne-tour-content tr:last-child td,
.ne-blog-content tr:last-child td { border-bottom: none; }

/* MOBILE TABLE FIX — this solves the SEO manager's 3-4 col table issue */
.ne-blog-content .table-responsive,
.ne-tour-content .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--ne-space-6) 0;
  border-radius: var(--ne-radius);
}
.ne-blog-content .table-responsive table,
.ne-tour-content .table-responsive table { margin: 0; min-width: 480px; }

/* Auto-wrap all tables on mobile */
@media (max-width: 768px) {
  .ne-tour-content table,
  .ne-blog-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}

/* Tour Gallery */
.ne-tour-gallery { margin: var(--ne-space-8) 0; }
.ne-tour-gallery .swiper { border-radius: var(--ne-radius-lg); overflow: hidden; }
.ne-tour-gallery .swiper-slide { aspect-ratio: 16/9; }
.ne-tour-gallery .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Tour Booking Sidebar */
.ne-tour-sidebar { position: sticky; top: 90px; }

.ne-booking-card {
  background: var(--ne-white);
  border-radius: var(--ne-radius-lg);
  box-shadow: var(--ne-shadow-md);
  overflow: hidden;
  border: 1px solid var(--ne-light-gray);
}
.ne-booking-card__header {
  background: var(--ne-navy);
  padding: var(--ne-space-5) var(--ne-space-6);
}
.ne-booking-card__from { font-size: var(--ne-text-xs); color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
.ne-booking-card__price {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-4xl);
  color: var(--ne-white);
  line-height: 1;
}
.ne-booking-card__price span { font-size: var(--ne-text-sm); font-family: var(--ne-font-body); opacity: 0.75; }
.ne-booking-card__body { padding: var(--ne-space-6); }

/* CF7 inside booking card */
.ne-booking-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--ne-space-3);
}
.ne-booking-card .wpcf7-form-control-wrap { display: block; }
.ne-booking-card input[type="text"],
.ne-booking-card input[type="email"],
.ne-booking-card input[type="tel"],
.ne-booking-card input[type="date"],
.ne-booking-card input[type="number"],
.ne-booking-card textarea,
.ne-booking-card select {
  width: 100%;
  padding: var(--ne-space-3) var(--ne-space-4);
  border: 1.5px solid var(--ne-mid-gray);
  border-radius: var(--ne-radius);
  font-family: var(--ne-font-body);
  font-size: var(--ne-text-sm);
  color: var(--ne-dark-gray);
  background: var(--ne-white);
  transition: border-color var(--ne-transition);
  outline: none;
}
.ne-booking-card input:focus,
.ne-booking-card textarea:focus,
.ne-booking-card select:focus { border-color: var(--ne-navy); }
.ne-booking-card textarea { resize: vertical; min-height: 80px; }
.ne-booking-card .wpcf7-submit {
  width: 100%;
  padding: var(--ne-space-4);
  background: var(--ne-gold);
  color: var(--ne-white);
  border: none;
  border-radius: var(--ne-radius);
  font-family: var(--ne-font-body);
  font-size: var(--ne-text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ne-transition);
  margin-top: var(--ne-space-2);
}
.ne-booking-card .wpcf7-submit:hover { background: var(--ne-gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,0.35); }

.ne-booking-card__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ne-space-2);
  padding: var(--ne-space-4) 0 0;
  border-top: 1px solid var(--ne-light-gray);
  margin-top: var(--ne-space-4);
  font-size: var(--ne-text-sm);
  color: var(--ne-gray);
  cursor: pointer;
  transition: color var(--ne-transition);
}
.ne-booking-card__share:hover { color: var(--ne-navy); }

/* Related Tours */
.ne-related-tours { margin-top: var(--ne-space-6); }
.ne-related-tours__title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-lg);
  color: var(--ne-navy);
  margin-bottom: var(--ne-space-4);
  padding-bottom: var(--ne-space-3);
  border-bottom: 2px solid var(--ne-light-gray);
}
.ne-related-tour-item {
  display: flex;
  gap: var(--ne-space-3);
  padding: var(--ne-space-3) 0;
  border-bottom: 1px solid var(--ne-light-gray);
  align-items: center;
  text-decoration: none;
  transition: all var(--ne-transition);
}
.ne-related-tour-item:hover { padding-left: var(--ne-space-2); }
.ne-related-tour-item:last-child { border-bottom: none; }
.ne-related-tour-item img { width: 70px; height: 60px; object-fit: cover; border-radius: var(--ne-radius); flex-shrink: 0; }
.ne-related-tour-item__info {}
.ne-related-tour-item__name { font-size: var(--ne-text-sm); font-weight: 600; color: var(--ne-navy); line-height: 1.3; margin-bottom: 2px; }
.ne-related-tour-item__price { font-size: var(--ne-text-xs); color: var(--ne-gold); font-weight: 600; }

/* 16. DESTINATION PAGE
   ============================================================ */
.ne-destination-tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ne-space-6);
  margin-top: var(--ne-space-8);
}
@media (max-width: 1024px) { .ne-destination-tours { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ne-destination-tours { grid-template-columns: 1fr; } }

/* 17. ARCHIVE PAGES (Tour/Destination lists)
   ============================================================ */
.ne-archive-header {
  background: linear-gradient(135deg, var(--ne-navy-dark) 0%, var(--ne-navy) 100%);
  padding: var(--ne-space-16) 0;
  text-align: center;
  color: var(--ne-white);
  position: relative;
  overflow: hidden;
}
.ne-archive-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.ne-archive-header h1 { color: var(--ne-white); position: relative; margin-bottom: var(--ne-space-3); }
.ne-archive-header p { color: rgba(255,255,255,0.75); position: relative; font-size: var(--ne-text-md); }

.ne-archive-filters {
  background: var(--ne-white);
  border-bottom: 1px solid var(--ne-light-gray);
  padding: var(--ne-space-4) 0;
  position: sticky;
  top: 70px;
  z-index: 10;
}
.ne-archive-filters__inner {
  display: flex;
  gap: var(--ne-space-3);
  flex-wrap: wrap;
  align-items: center;
}
.ne-filter-btn {
  padding: var(--ne-space-2) var(--ne-space-5);
  border: 1.5px solid var(--ne-mid-gray);
  border-radius: 30px;
  font-size: var(--ne-text-sm);
  font-weight: 600;
  color: var(--ne-dark-gray);
  background: var(--ne-white);
  cursor: pointer;
  transition: all var(--ne-transition);
}
.ne-filter-btn:hover,
.ne-filter-btn.active {
  background: var(--ne-navy);
  color: var(--ne-white);
  border-color: var(--ne-navy);
}

.ne-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ne-space-8);
  padding: var(--ne-space-12) 0;
}
@media (max-width: 1024px) { .ne-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ne-archive-grid { grid-template-columns: 1fr; } }

/* 18. BLOG
   ============================================================ */
.ne-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--ne-space-10);
  padding: var(--ne-space-12) 0 var(--ne-space-20);
  align-items: start;
}
@media (max-width: 1024px) { .ne-blog-layout { grid-template-columns: 1fr; } }

.ne-blog-content { line-height: 1.85; }
.ne-blog-content h2, .ne-blog-content h3, .ne-blog-content h4 { color: var(--ne-navy); margin: var(--ne-space-8) 0 var(--ne-space-4); }
.ne-blog-content h2 { font-size: var(--ne-text-2xl); border-bottom: 2px solid var(--ne-light-gray); padding-bottom: var(--ne-space-3); }
.ne-blog-content h3 { font-size: var(--ne-text-xl); }
.ne-blog-content p { margin-bottom: var(--ne-space-5); }
.ne-blog-content ul, .ne-blog-content ol { padding-left: var(--ne-space-6); margin-bottom: var(--ne-space-5); list-style: disc; }
.ne-blog-content li { margin-bottom: var(--ne-space-2); }
.ne-blog-content img { border-radius: var(--ne-radius-lg); margin: var(--ne-space-6) 0; }
.ne-blog-content a { color: var(--ne-navy); text-decoration: underline; text-underline-offset: 3px; }
.ne-blog-content a:hover { color: var(--ne-gold); }
.ne-blog-content blockquote {
  border-left: 4px solid var(--ne-gold);
  padding: var(--ne-space-4) var(--ne-space-6);
  margin: var(--ne-space-6) 0;
  background: var(--ne-off-white);
  border-radius: 0 var(--ne-radius) var(--ne-radius) 0;
  font-style: italic;
  font-size: var(--ne-text-md);
}

/* Blog Sidebar */
.ne-blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--ne-space-6); }
.ne-sidebar-widget {
  background: var(--ne-white);
  border-radius: var(--ne-radius-lg);
  padding: var(--ne-space-6);
  box-shadow: var(--ne-shadow-sm);
  border: 1px solid var(--ne-light-gray);
}
.ne-sidebar-widget__title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-lg);
  color: var(--ne-navy);
  margin-bottom: var(--ne-space-4);
  padding-bottom: var(--ne-space-3);
  border-bottom: 2px solid var(--ne-gold);
}
.ne-sidebar-tags { display: flex; flex-wrap: wrap; gap: var(--ne-space-2); }
.ne-sidebar-tag {
  display: inline-block;
  padding: var(--ne-space-1) var(--ne-space-3);
  background: var(--ne-off-white);
  border: 1px solid var(--ne-mid-gray);
  border-radius: 30px;
  font-size: var(--ne-text-xs);
  color: var(--ne-dark-gray);
  transition: all var(--ne-transition);
}
.ne-sidebar-tag:hover { background: var(--ne-navy); color: var(--ne-white); border-color: var(--ne-navy); }

/* 19. PAGE HERO / BREADCRUMB BAR
   ============================================================ */
.ne-page-hero {
  background: linear-gradient(135deg, var(--ne-navy-dark) 0%, var(--ne-navy) 100%);
  padding: var(--ne-space-12) 0;
  position: relative;
  overflow: hidden;
}
.ne-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.ne-page-hero__content { position: relative; }
.ne-page-hero h1 { color: var(--ne-white); margin-bottom: var(--ne-space-3); }
.ne-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--ne-space-2);
  font-size: var(--ne-text-sm);
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.ne-breadcrumb a { color: var(--ne-gold); }
.ne-breadcrumb a:hover { color: var(--ne-gold-light); }
.ne-breadcrumb__sep { opacity: 0.4; }

/* 20. FOOTER
   ============================================================ */
.ne-footer {
  background: var(--ne-navy-dark);
  color: rgba(255,255,255,0.75);
}
.ne-footer__main { padding: var(--ne-space-16) 0 var(--ne-space-10); }
.ne-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ne-space-10);
}
@media (max-width: 1024px) { .ne-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ne-footer__grid { grid-template-columns: 1fr; } }

.ne-footer__col-title {
  font-family: var(--ne-font-heading);
  font-size: var(--ne-text-md);
  color: var(--ne-white);
  margin-bottom: var(--ne-space-5);
  position: relative;
  padding-bottom: var(--ne-space-3);
}
.ne-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--ne-gold);
}

.ne-footer__links { display: flex; flex-direction: column; gap: var(--ne-space-2); }
.ne-footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: var(--ne-text-sm);
  text-decoration: none;
  transition: all var(--ne-transition);
  display: flex;
  align-items: center;
  gap: var(--ne-space-2);
}
.ne-footer__links a:hover { color: var(--ne-gold); padding-left: var(--ne-space-2); }

.ne-footer__contact { display: flex; flex-direction: column; gap: var(--ne-space-3); }
.ne-footer__contact-item {
  display: flex;
  gap: var(--ne-space-3);
  font-size: var(--ne-text-sm);
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.ne-footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--ne-gold); margin-top: 2px; }
.ne-footer__contact-item a { color: rgba(255,255,255,0.65); transition: color var(--ne-transition); }
.ne-footer__contact-item a:hover { color: var(--ne-gold); }

.ne-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--ne-space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ne-space-4);
  flex-wrap: wrap;
}
.ne-footer__copy { font-size: var(--ne-text-sm); color: rgba(255,255,255,0.4); }
.ne-footer__copy a { color: var(--ne-gold); }

/* 21. GALLERY / MEDIA PICKER (same as cruise plugin)
   ============================================================ */
.ne-gallery-picker { margin-bottom: var(--ne-space-5); }
.ne-gallery-picker__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--ne-space-2);
  padding: var(--ne-space-3) var(--ne-space-5);
  background: var(--ne-navy);
  color: var(--ne-white);
  border: none;
  border-radius: var(--ne-radius);
  font-size: var(--ne-text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ne-transition);
  margin-bottom: var(--ne-space-4);
}
.ne-gallery-picker__btn:hover { background: var(--ne-navy-dark); }
.ne-gallery-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--ne-space-2);
}
.ne-gallery-preview__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--ne-radius-sm);
  overflow: hidden;
  cursor: grab;
}
.ne-gallery-preview__item img { width: 100%; height: 100%; object-fit: cover; }
.ne-gallery-preview__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.7);
  color: var(--ne-white);
  border: none;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 22. UTILITIES
   ============================================================ */
.ne-text-center { text-align: center; }
.ne-text-gold { color: var(--ne-gold); }
.ne-text-navy { color: var(--ne-navy); }
.ne-bg-off-white { background: var(--ne-off-white); }
.ne-bg-navy { background: var(--ne-navy); }

.ne-mt-auto { margin-top: auto; }
.ne-hidden { display: none !important; }

/* Loading state */
.ne-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ne-space-16);
  color: var(--ne-gray);
}
.ne-loading::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 3px solid var(--ne-light-gray);
  border-top-color: var(--ne-navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: var(--ne-space-3);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Pagination */
.ne-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ne-space-2);
  padding: var(--ne-space-10) 0;
}
.ne-pagination a,
.ne-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--ne-radius);
  border: 1.5px solid var(--ne-mid-gray);
  font-size: var(--ne-text-sm);
  font-weight: 600;
  color: var(--ne-dark-gray);
  transition: all var(--ne-transition);
}
.ne-pagination a:hover,
.ne-pagination .current {
  background: var(--ne-navy);
  color: var(--ne-white);
  border-color: var(--ne-navy);
}

/* No results */
.ne-no-results { text-align: center; padding: var(--ne-space-20) 0; color: var(--ne-gray); }
.ne-no-results h2 { font-size: var(--ne-text-2xl); margin-bottom: var(--ne-space-4); }

/* Sustainable Tourism full-width section */
.ne-fullbg-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.ne-fullbg-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,40,73,0.75);
}
.ne-fullbg-section__content {
  position: relative;
  width: 100%;
  text-align: center;
  padding: var(--ne-space-20) 0;
}
.ne-fullbg-section h2 { color: var(--ne-white); margin-bottom: var(--ne-space-5); }
.ne-fullbg-section p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto var(--ne-space-8); font-size: var(--ne-text-md); }

/* Wpcf7 validation */
.wpcf7-not-valid-tip { color: #e53e3e; font-size: var(--ne-text-xs); margin-top: var(--ne-space-1); display: block; }
.wpcf7-response-output { margin-top: var(--ne-space-4) !important; border-radius: var(--ne-radius) !important; padding: var(--ne-space-3) var(--ne-space-4) !important; font-size: var(--ne-text-sm) !important; border: none !important; background: #f0fff4; color: #276749; }
.wpcf7-response-output.wpcf7-validation-errors { background: #fff5f5; color: #c53030; }

/* SEO long text section */
.ne-seo-text { background: var(--ne-off-white); }
.ne-seo-text__inner { max-width: 880px; margin: 0 auto; }
.ne-seo-text h2 { font-size: var(--ne-text-2xl); color: var(--ne-navy); margin-bottom: var(--ne-space-5); }
.ne-seo-text h3 { font-size: var(--ne-text-xl); color: var(--ne-navy); margin: var(--ne-space-6) 0 var(--ne-space-3); }
.ne-seo-text p { color: var(--ne-dark-gray); }
.ne-seo-text a { color: var(--ne-navy); text-decoration: underline; }
.ne-seo-text a:hover { color: var(--ne-gold); }
