/* Egypt Nile Trip — brand colors */
:root {
  --nile-brand-blue: #1e5aa8;
  --nile-brand-blue-dark: #0f3d7a;
  --nile-brand-blue-light: #5bc0eb;
  --nile-brand-orange: #d95518;
  --nile-brand-orange-dark: #b84712;
  --nile-h1-size: clamp(1.75rem, 3vw, 2.35rem);
  --nile-h2-size: clamp(1.2rem, 2.2vw, 1.55rem);
  --nile-heading-color: #0b1f3f;
}

body {
  font-family: 'IBM Plex Sans', 'IBM Plex Sans Fallback', system-ui, -apple-system, sans-serif;
}

/* style.css re-declares font-family on headings/dropdowns without the metric-adjusted
   fallback, which reintroduces layout shift when the web font swaps in. Keep the same
   final font but route the fallback through 'IBM Plex Sans Fallback'. */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.dropdown .dropdown-menu {
  font-family: 'IBM Plex Sans', 'IBM Plex Sans Fallback', system-ui, -apple-system, sans-serif;
}

/* SEO — unified page heading hierarchy (one H1 per page, H2 for sections) */
.nile-page-h1 {
  font-size: var(--nile-h1-size);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  margin-bottom: 0.75rem;
}

.breadcrumb-bar .breadcrumb-title.nile-page-h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .breadcrumb-bar .breadcrumb-title.nile-page-h1 { font-size: 26px; }
}

@media (max-width: 767.98px) {
  .breadcrumb-bar .breadcrumb-title.nile-page-h1 { font-size: 22px; }
}

.nile-section-h2,
.nile-section-card__title {
  font-size: var(--nile-h2-size);
  font-weight: 700;
  line-height: 1.35;
  color: var(--nile-heading-color);
  margin-bottom: 0.85rem;
}

.nile-page-hero .nile-page-h1,
.nile-category-hero__title.nile-page-h1,
.nile-cruise-hero__title.nile-page-h1,
.nile-blog-hero__title.nile-page-h1,
.nile-about-hero__title.nile-page-h1,
.nile-blog-article__hero-content .nile-page-h1 {
  color: #fff;
}

.content-body h2:not([class]),
.blog-content h2:not([class]),
.content-body > h2,
.blog-content > h2 {
  font-size: var(--nile-h2-size);
  font-weight: 700;
  color: var(--nile-heading-color);
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #e8f0fb;
}

.content-body h3:not([class]),
.blog-content h3:not([class]) {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e5aa8;
  margin-top: 1.25rem;
  margin-bottom: 0.65rem;
}

.nile-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--nile-heading-color);
  line-height: 1.2;
}

.section-header-eight h2,
.nile-about-section-title {
  color: var(--nile-heading-color);
}

.nile-brand-logo {
  width: auto;
  height: 56px;
  max-width: 220px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.nile-brand-logo--footer {
  width: 150px;
  height: 70px;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

header .header-logo .nile-brand-logo {
  width: auto;
  height: 56px;
  max-width: 220px;
  max-height: 56px;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .nile-brand-logo:not(.nile-brand-logo--footer),
  header .header-logo .nile-brand-logo,
  body.nile-inner-page header .header-logo .nile-brand-logo {
    width: auto;
    max-width: 170px;
    height: 48px;
    max-height: 48px;
  }
}

/* Form placeholders — lighter so empty fields don't look filled */
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
textarea.form-control::placeholder {
  color: #9ca3af;
  opacity: 1;
  font-weight: 400;
}

.form-control:not(:focus):placeholder-shown {
  background-color: #fff;
}

.form-control:focus::placeholder {
  color: #cbd5e1;
}

/* intl-tel-input */
.nile-phone-field {
  width: 100%;
}

.nile-phone-field .iti {
  width: 100%;
  display: block;
}

.nile-phone-field .iti input,
.nile-phone-field .iti .iti__tel-input {
  width: 100%;
  min-height: 40px;
}

.nile-phone-field .iti--separate-dial-code .iti__selected-country {
  background: transparent;
}

.nile-phone-field .iti--separate-dial-code input {
  padding-left: 0 !important;
}

.nile-phone-field--boxed .iti--separate-dial-code input {
  padding-left: var(--iti-input-padding-left, 3.75rem) !important;
}

/* Booking sidebar — inside bordered form-item */
.nile-phone-field--boxed .iti input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nile-phone-field--boxed .iti__selected-country,
.nile-phone-field--boxed .iti__country-container {
  background: transparent;
}

.nile-phone-error {
  display: none;
  width: 100%;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  color: #dc3545;
}

.nile-phone-error.is-visible,
.nile-phone-error.d-block {
  display: block !important;
}

.nile-phone-field .iti.nile-phone-invalid input {
  border-color: #dc3545 !important;
}

.nile-phone-field--boxed .iti.nile-phone-invalid input {
  border-color: #dc3545 !important;
  box-shadow: none !important;
}

[dir='rtl'] .nile-phone-field .iti--allow-dropdown .iti__country-container,
[dir='rtl'] .nile-phone-field .iti--show-selected-dial-code .iti__country-container {
  right: 0;
  left: auto;
}

[dir='rtl'] .nile-phone-field .iti--separate-dial-code input {
  padding-right: 0 !important;
  padding-left: 0 !important;
  text-align: right;
}

[dir='rtl'] .nile-phone-field--boxed .iti--separate-dial-code input {
  padding-right: var(--iti-input-padding-right, var(--iti-input-padding-left, 3.75rem)) !important;
  padding-left: 0 !important;
}

/* Plan Your Trip — cruise sidebar booking form (clear enquiry card) */
.nile-plan-trip-card {
  border: 1px solid #e4ebf1 !important;
  border-radius: 1rem !important;
  background: #fff !important;
  box-shadow: 0 14px 36px rgba(11, 31, 63, 0.1) !important;
  overflow: visible;
}

.theiaStickySidebar,
.theiaStickySidebar .card,
.nile-plan-trip-card .banner-form,
.nile-plan-trip-card .banner-form .form-info {
  overflow: visible !important;
}

.nile-plan-trip-card > .card-body {
  padding: 1.35rem 1.25rem 1.45rem;
}

.nile-plan-trip-card__header {
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid #eef2f7;
}

.nile-plan-trip-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nile-brand-orange, #d95518);
}

.nile-plan-trip-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--nile-heading-color, #0b1f3f);
}

.nile-plan-trip-card__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7c93;
}

.nile-plan-trip-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fff7f2 0%, #f8fafc 100%);
  border: 1px solid #f3e0d4;
}

.nile-plan-trip-card__price .nile-cruise-price,
.nile-plan-trip-card__price-value {
  color: var(--nile-brand-orange, #d95518) !important;
  font-weight: 800;
}

.nile-plan-trip-card .banner-form .form-info {
  border: 0;
}

.nile-booking-req {
  color: #dc2626;
  font-weight: 700;
}

.nile-booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.nile-plan-trip-form .nile-booking-field__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1f3f;
  margin-bottom: 0.45rem;
}

.nile-plan-trip-form .nile-booking-field__control {
  position: relative;
  overflow: hidden;
}

.nile-plan-trip-form .nile-select--booking,
.nile-plan-trip-form .nile-booking-field__control .nile-select {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nile-plan-trip-form .nile-booking-select,
.nile-plan-trip-form .nile-booking-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7dee8;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 2.25rem 0.65rem 0.9rem;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nile-plan-trip-form .nile-booking-input {
  padding-right: 0.9rem;
}

.nile-plan-trip-form .nile-booking-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231e5aa8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}

.nile-plan-trip-form .nile-booking-select:focus,
.nile-plan-trip-form .nile-booking-input:focus {
  border-color: #1e5aa8;
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
  outline: none;
}

.nile-plan-trip-form .nile-booking-field__hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.45;
}

.nile-plan-trip-form .nile-booking-field__error {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #dc2626;
}

.nile-plan-trip-form .nile-booking-panel {
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem 0.95rem;
}

.nile-plan-trip-form .nile-booking-panel__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid #e8edf5;
}

.nile-plan-trip-form .nile-booking-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.nile-plan-trip-form .nile-booking-counter-row:last-child {
  margin-bottom: 0;
}

.nile-plan-trip-form .nile-booking-counter-row__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

.nile-plan-trip-form .nile-booking-counter-row__sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: #6b7280;
}

.nile-plan-trip-form .nile-booking-counter-row .custom-increment .input-group {
  width: auto;
  flex-wrap: nowrap;
}

.nile-plan-trip-form .nile-booking-counter-row .btn-number {
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dee8;
  background: #f8fafc;
}

.nile-plan-trip-form .nile-booking-counter-row .input-number {
  width: 36px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  padding: 0 4px;
}

.nile-plan-trip-form .nile-booking-terms__label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
}

.nile-plan-trip-form .nile-booking-terms__checkbox {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #1e5aa8;
}

.nile-plan-trip-form .nile-booking-terms a {
  color: #1e5aa8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nile-plan-trip-form .nile-booking-select:hover {
  border-color: #b8c5d6;
}

.nile-plan-trip-form .nile-booking-field--phone .nile-phone-field--boxed .form-control {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.nile-plan-trip-form .nile-booking-field--phone .nile-phone-hint {
  display: none;
}

.nile-plan-trip-form .nile-booking-field--phone .nile-phone-field--boxed .iti {
  width: 100%;
}

.nile-plan-trip-form .nile-booking-field--phone .nile-booking-input--phone {
  min-height: 46px;
  border: 0;
  padding-left: 0;
  font-weight: 600;
}

.nile-plan-trip-form .nile-booking-field__control--phone {
  border: 1px solid #d7dee8;
  border-radius: 6px;
  padding: 0 0.75rem;
  min-height: 46px;
  display: flex;
  align-items: center;
}

.nile-plan-trip-form .nile-booking-field__control--phone:focus-within {
  border-color: #1e5aa8;
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
}

.nile-plan-trip-form .form-item {
  border-color: #e4ebf1 !important;
  background: #fff;
}

.nile-plan-trip-form .form-item .form-label {
  color: #111827;
  font-weight: 500;
}

.banner-form .nile-plan-trip-form .form-item .form-control,
.banner-form .nile-plan-trip-form .form-item .form-select,
.nile-plan-trip-form .form-item .form-control,
.nile-plan-trip-form .form-item .form-select {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  min-height: 28px;
}

.banner-form .nile-plan-trip-form .form-item .form-control[readonly],
.nile-plan-trip-form .form-item .form-control[readonly] {
  background-color: #f3f8ff;
  border-radius: 4px;
  padding: 0.35rem 0.5rem !important;
}

.nile-plan-trip-select {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  background-position: right center;
}

.nile-plan-trip-details {
  border-color: #e4ebf1 !important;
  background: #fff;
}

.nile-plan-trip-details .custom-increment .input-group {
  width: auto;
  flex-wrap: nowrap;
}

.nile-plan-trip-details .btn-number {
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4ebf1;
  background: #f8fafc;
}

.nile-plan-trip-details .input-number {
  width: 36px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  padding: 0 4px;
}

.nile-plan-trip-btn {
  min-height: 52px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--nile-brand-orange, #d95518) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(217, 85, 24, 0.28);
}

.nile-plan-trip-btn:hover,
.nile-plan-trip-btn:focus {
  background: var(--nile-brand-orange-dark, #b84712) !important;
  color: #fff !important;
}

.nile-plan-trip-form .nile-phone-field--boxed .iti {
  margin-top: 2px;
}

.nile-plan-trip-form .form-item:has(.nile-phone-field) {
  padding-bottom: 0.85rem;
}

.nile-booking-context {
  border: 1px solid #e8edf5;
  border-radius: 8px;
  background: #f8fafc;
  padding: 0.75rem 0.85rem;
}

.nile-booking-context__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.nile-booking-context__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.45;
}

.nile-booking-context__list i {
  color: #1e5aa8;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.nile-booking-context__text {
  display: block;
  min-width: 0;
}

.nile-booking-context__text p {
  display: inline;
  margin: 0;
}

.nile-booking-summary {
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #f8fafc;
  padding: 0.85rem 0.95rem;
}

.nile-booking-summary__row,
.nile-booking-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #374151;
}

.nile-booking-summary__row + .nile-booking-summary__row,
.nile-booking-summary__total {
  margin-top: 0.55rem;
}

.nile-booking-summary__total {
  padding-top: 0.65rem;
  border-top: 1px solid #e4ebf1;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.nile-booking-summary__note {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.45;
}

.nile-booking-alert {
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.nile-booking-alert--urgent {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.nile-plan-trip-form .nile-booking-textarea {
  min-height: 96px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  resize: vertical;
  font-weight: 500;
}

.nile-booking-field__control--email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nile-booking-field__control--email .nile-booking-input {
  flex: 1;
}

.nile-booking-email-status {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid transparent;
  display: none;
}

.nile-booking-email-status.is-loading {
  display: inline-block;
  border-color: #d7dee8;
  border-top-color: #1e5aa8;
  animation: nile-booking-spin 0.7s linear infinite;
}

.nile-booking-email-status.is-found,
.nile-booking-email-status.is-clear {
  display: inline-block;
}

.nile-booking-email-status.is-found {
  background: #1e5aa8;
  position: relative;
}

.nile-booking-email-status.is-found::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.nile-plan-trip-btn {
  position: relative;
}

.nile-plan-trip-btn__loading {
  display: none;
}

.nile-plan-trip-btn.is-loading .nile-plan-trip-btn__label {
  visibility: hidden;
}

.nile-plan-trip-btn.is-loading .nile-plan-trip-btn__loading {
  display: inline;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes nile-booking-spin {
  to {
    transform: rotate(360deg);
  }
}

#nile-booking-pricing-link-wrap a {
  color: #1e5aa8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Primary actions — brand blue */
.btn-primary,
.bg-primary {
  background-color: var(--nile-brand-blue) !important;
  border-color: var(--nile-brand-blue) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--nile-brand-blue-dark) !important;
  border-color: var(--nile-brand-blue-dark) !important;
}

.btn-outline-primary {
  color: var(--nile-brand-blue) !important;
  border-color: var(--nile-brand-blue) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--nile-brand-blue) !important;
  border-color: var(--nile-brand-blue) !important;
  color: #fff !important;
}

.text-primary {
  color: var(--nile-brand-orange) !important;
}

a.text-primary:hover {
  color: var(--nile-brand-orange-dark) !important;
}

.badge.bg-primary,
.badge.badge-primary {
  background-color: var(--nile-brand-blue) !important;
}

.badge.bg-info {
  background-color: var(--nile-brand-blue) !important;
  color: #fff !important;
}

.badge.badge-warning {
  background-color: var(--nile-brand-orange) !important;
  color: #fff !important;
}

/* Accessible badges (contrast-safe) */
.nile-badge-trending {
  background-color: #0f3d7a !important;
  color: #fff !important;
}

.nile-badge-rating {
  background-color: #b45309 !important;
  color: #fff !important;
}

.nile-card-title,
.nile-card-title a {
  color: #0b1f3f !important;
  font-weight: 700;
}

.nile-card-meta,
.nile-card-meta span {
  color: #374151 !important;
}

.place-content .text-gray-6,
.place-content .text-gray-5 {
  color: #4b5563 !important;
}

/* Homepage marquee — keep strips level (theme rotate made them look broken) */
.nile-plan-marquee {
  overflow: hidden;
  padding: 1.5rem 0;
}

.nile-plan-marquee .support-sec-eight {
  width: 100% !important;
  left: 0 !important;
  position: relative !important;
  transform: none !important;
  margin-top: 0 !important;
  padding: 0.85rem 0;
}

.nile-plan-marquee .support-sec-eight + .support-sec-eight {
  margin-top: 0.35rem !important;
}

.support-item__label {
  display: block;
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
  color: #fff;
}

.support-section .support-item h3,
.support-section .support-item__label {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
  white-space: nowrap;
}

/* WOW classes should not hide content before/without the library (CLS) */
.wow {
  visibility: visible !important;
}

/* Loader — brand logo + soft ring */
#loader-wrapper.is-hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#loader-wrapper #loader.nile-page-loader,
#loader.nile-page-loader {
  width: auto !important;
  height: auto !important;
  min-width: 230px !important;
  min-height: 230px !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nile-page-loader__ring {
  position: absolute !important;
  inset: 0 !important;
  margin: auto !important;
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(15, 61, 122, 0.12) !important;
  border-top-color: #d95518 !important;
  border-right-color: #0f3d7a !important;
  background: transparent !important;
  animation: nile-loader-spin 0.9s linear infinite !important;
}

.nile-page-loader__logo {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: auto !important;
  max-width: 150px !important;
  height: auto !important;
  max-height: 70px !important;
  object-fit: contain !important;
  animation: nile-loader-breathe 1.5s ease-in-out infinite !important;
}

/* Legacy spinner markup fallback */
#loader-wrapper #loader .loader-line,
#loader .loader-line {
  display: none !important;
}

@keyframes nile-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nile-loader-breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nile-page-loader__ring {
    animation-duration: 1.6s !important;
  }

  .nile-page-loader__logo {
    animation: none !important;
  }
}

/* Header / footer accents */
.header-eight.fixed,
.footer-eight {
  background-color: var(--nile-brand-blue-dark) !important;
}

.header-eight .btn-primary {
  background-color: var(--nile-brand-orange) !important;
  border-color: var(--nile-brand-orange) !important;
}

.header-eight .btn-primary:hover {
  background-color: var(--nile-brand-orange-dark) !important;
  border-color: var(--nile-brand-orange-dark) !important;
}

/* Modals */
.nile-error-modal {
  overflow: hidden;
  border-radius: 18px !important;
}

.nile-error-modal__hero {
  position: relative;
  padding: 1.75rem 1.5rem 1.15rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgb(242 101 34 / 0.16), transparent 55%),
    linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.nile-error-modal--info .nile-error-modal__hero {
  background:
    radial-gradient(circle at top, rgb(30 90 168 / 0.14), transparent 55%),
    linear-gradient(180deg, #f3f7fd 0%, #ffffff 100%);
}

.nile-error-modal__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--nile-brand-orange) !important;
  background: rgb(242 101 34 / 0.12) !important;
  box-shadow: 0 10px 24px rgb(242 101 34 / 0.18);
}

.nile-error-modal__icon i {
  font-size: 2rem;
  line-height: 1;
}

.nile-error-modal__icon--info {
  color: var(--nile-brand-blue) !important;
  background: rgb(30 90 168 / 0.12) !important;
  box-shadow: 0 10px 24px rgb(30 90 168 / 0.16);
}

.nile-error-modal__count {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--nile-brand-orange);
  box-shadow: 0 6px 14px rgb(242 101 34 / 0.28);
}

.nile-error-modal__title {
  color: #0b1f3f;
  font-weight: 700;
  line-height: 1.35;
  font-size: 1.25rem;
}

.nile-error-modal__subtitle {
  margin-top: 0.45rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.5;
}

.nile-error-modal__body {
  padding: 0 1.25rem 0.35rem;
}

.nile-error-modal__message {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4b5563;
}

.nile-error-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: start;
  display: grid;
  gap: 0.65rem;
  counter-reset: none;
}

.nile-error-modal__item,
.nile-error-modal__list li {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: #fff7f2;
  border: 1px solid #ffe0cc;
  color: #7a3410;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: nile-error-item-in 0.35s ease both;
}

.nile-error-modal__item:nth-child(2),
.nile-error-modal__list li:nth-child(2) { animation-delay: 0.05s; }
.nile-error-modal__item:nth-child(3),
.nile-error-modal__list li:nth-child(3) { animation-delay: 0.1s; }
.nile-error-modal__item:nth-child(4),
.nile-error-modal__list li:nth-child(4) { animation-delay: 0.15s; }
.nile-error-modal__item:nth-child(5),
.nile-error-modal__list li:nth-child(5) { animation-delay: 0.2s; }

.nile-error-modal__item-index {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--nile-brand-orange);
}

.nile-error-modal__item-content {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.nile-error-modal__item-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b45309;
}

.nile-error-modal__item-message {
  color: #7a3410;
  word-break: break-word;
}

.nile-error-modal__list li::before {
  content: none;
}

.nile-error-modal__footer {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
}

.nile-error-modal__ok {
  min-width: 10rem;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
}

@keyframes nile-error-item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[dir='rtl'] .nile-error-modal__list li {
  padding: 0.85rem 0.95rem;
}

[dir='rtl'] .nile-error-modal__list li::before {
  content: none;
}

#nileSuccessModal .avatar.text-success {
  color: var(--nile-brand-blue) !important;
  background: rgb(30 90 168 / 0.12) !important;
}

#nileLoginRequiredModal .avatar.text-primary {
  color: var(--nile-brand-blue) !important;
  background: rgb(30 90 168 / 0.12) !important;
}

.nile-favorite-toast--added {
  background: var(--nile-brand-blue) !important;
}

.nile-favorite-toast--removed {
  background: #4b5563 !important;
}

/* Uniform image heights — prevents broken card layouts from mixed aspect ratios */

/* Cruise / listing card images — 16:9 box, gentle center crop */
.trending-list .trending-list-item .place-img,
.place-item .place-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #e5e7eb;
}

.trending-list .trending-list-item .place-img > a,
.hotel-list .place-item .place-img > a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.trending-list .trending-list-item .place-img img,
.hotel-list .place-item .place-img img,
.cruise-listing-page .place-item .place-img img,
.place-item .place-img img,
.trending-list .trending-list-item .place-img img.img-fluid,
.place-item .place-img img.img-fluid {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Owl cruise grid: fill the image box correctly */
.cruise-listing-page .place-item .place-img,
.cruise-category-page .place-item .place-img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.cruise-listing-page .place-item .place-img .cruise-grid-slider,
.cruise-category-page .place-item .place-img .cruise-grid-slider,
.cruise-listing-page .place-item .place-img .owl-stage-outer,
.cruise-category-page .place-item .place-img .owl-stage-outer,
.cruise-listing-page .place-item .place-img .owl-item,
.cruise-category-page .place-item .place-img .owl-item,
.cruise-listing-page .place-item .place-img .slide-images,
.cruise-category-page .place-item .place-img .slide-images,
.cruise-listing-page .place-item .place-img .slide-images a,
.cruise-category-page .place-item .place-img .slide-images a {
  height: 100%;
  width: 100%;
}

.cruise-listing-page .place-item .place-img .slide-images a,
.cruise-category-page .place-item .place-img .slide-images a {
  position: relative;
  display: block;
}

/* Recommended tours */
.recommended-sec .recommended-list-item .recommended-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #e5e7eb;
}

.recommended-sec .recommended-list-item .recommended-img > a {
  display: block;
  height: 100%;
}

.recommended-sec .recommended-list-item .recommended-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Destinations masonry */
.destinations-sec .location-wrap > a:first-of-type {
  display: block;
  height: 100%;
}

.destinations-sec .col-lg-3 .location-wrap,
.destinations-sec .col-lg-5 > .location-wrap,
.destinations-sec .col-lg-5 .col-md-6 .location-wrap {
  height: 268px;
}

.destinations-sec .col-lg-4 .location-wrap {
  height: 560px;
}

.destinations-sec .location-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Deliver stats gallery */
.deliver-sec .deliver-img {
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
}

.deliver-sec .deliver-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Expert guides */
.guide-section .guide-list-item .guide-img {
  height: 320px;
}

.guide-section .guide-list-item .guide-img > a {
  display: block;
  height: 100%;
}

.guide-section .guide-list-item .guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog / article cards */
.article-section .article-item .article-img,
.nile-article-card .article-img {
  height: 420px;
  background-color: #e2e8f0;
  background-size: cover;
  background-position: center;
}

.article-section .article-item .article-img > a,
.nile-article-card .article-img > a {
  display: block;
  height: 100%;
}

.article-section .article-item .article-img img,
.nile-article-card .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nile-article-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.25rem;
}

/* Equal-height card rows */
.nile-equal-cards > [class*='col-'] {
  display: flex;
}

.nile-equal-cards .recommended-list-item,
.nile-equal-cards .article-item,
.nile-equal-cards .place-item,
.nile-equal-cards .nile-offer-card {
  width: 100%;
}

.recommended-sec .recommended-list-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recommended-sec .recommended-list-item .recommended-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.recommended-sec .recommended-list-item .recommended-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.25rem;
  line-height: 1.45;
}

.recommended-sec .recommended-list-item .recommended-title a {
  display: block;
}

.trending-list .trending-list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.trending-list .trending-list-item .place-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.trending-list .trending-list-item .place-content h5,
.trending-list .trending-list-item .place-content .nile-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
  white-space: normal;
}

/* Destination listing grid */
.destination-page .location-wrap {
  height: 300px;
}

.destination-page .location-wrap > a:first-of-type {
  display: block;
  height: 100%;
}

.destination-page .location-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cruise listing grid */
.cruise-listing-page .place-item .place-img {
  height: 280px;
}

.cruise-listing-page .place-item .place-img .cruise-grid-slider,
.cruise-listing-page .place-item .place-img .img-slider,
.cruise-listing-page .place-item .place-img .owl-stage-outer,
.cruise-listing-page .place-item .place-img .owl-item,
.cruise-listing-page .place-item .place-img .slide-images,
.cruise-listing-page .place-item .place-img .slide-images a {
  height: 100%;
}

.cruise-listing-page .place-item .place-img .cruise-grid-slider:not(.owl-loaded) .slide-images:not(:first-child) {
  display: none;
}

.cruise-listing-page .place-item .place-img .cruise-grid-slider:not(.owl-loaded) .slide-images:first-child,
.cruise-listing-page .place-item .place-img .cruise-grid-slider:not(.owl-loaded) .slide-images:first-child a,
.cruise-listing-page .place-item .place-img .cruise-grid-slider:not(.owl-loaded) .slide-images:first-child img {
  display: block;
  height: 100%;
  width: 100%;
}

.hotel-type-item .avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cruise detail page — synced owl gallery (large + thumbs overlay) */
.cruise-detail-page #large-img .service-img,
.cruise-detail-page #large-img .service-img img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.cruise-detail-page #small-img img {
  height: 88px;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
}

.nile-cruise-owl-gallery .slider-wrap {
  margin-bottom: 0;
}

.nile-cruise-owl-gallery #large-img:not(.owl-loaded) {
  display: block;
}

.nile-cruise-owl-gallery #large-img:not(.owl-loaded) .service-img:not(:first-child) {
  display: none;
}

.nile-cruise-owl-gallery .owl-nav button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #0b1f3f !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 20px rgba(11, 31, 63, 0.16);
}

.nile-cruise-owl-gallery .owl-nav button:hover {
  background: #fff !important;
  color: var(--nile-brand-blue, #1e5aa8) !important;
}

.nile-cruise-owl-gallery .nile-owl-chevron {
  display: inline-flex;
  line-height: 0;
}

.nile-cruise-owl-gallery .slider-nav-thumbnails {
  position: relative;
  z-index: 5;
  max-width: 80%;
  margin: -80px auto 0;
}

.nile-cruise-owl-gallery .slider-nav-thumbnails .owl-item {
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nile-cruise-owl-gallery .slider-nav-thumbnails .owl-item.current {
  opacity: 1;
}

.nile-cruise-owl-gallery .slider-nav-thumbnails .owl-item.current img {
  border-color: var(--nile-brand-orange, #d95518);
  box-shadow: 0 6px 16px rgba(11, 31, 63, 0.2);
}

.nile-cruise-owl-gallery .slider-nav-thumbnails img {
  border: 2px solid #fff;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .cruise-detail-page #large-img .service-img,
  .cruise-detail-page #large-img .service-img img {
    height: 280px;
  }

  .cruise-detail-page #small-img img {
    height: 64px;
  }

  .nile-cruise-owl-gallery .slider-nav-thumbnails {
    max-width: 92%;
    margin-top: -56px;
  }
}

.cruise-detail-page .cruise-detail-cabin-img {
  height: 220px;
}

.cruise-detail-page .cruise-detail-cabin-img .cruise-detail-cabin-slider,
.cruise-detail-page .cruise-detail-cabin-img .owl-stage-outer,
.cruise-detail-page .cruise-detail-cabin-img .owl-item,
.cruise-detail-page .cruise-detail-cabin-img .slide-images,
.cruise-detail-page .cruise-detail-cabin-img .slide-images img {
  height: 100%;
}

.cruise-detail-page .cruise-detail-cabin-img .slide-images img {
  object-fit: cover;
  width: 100%;
}

.cruise-detail-page .galley-wrap img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .destinations-sec .col-lg-4 .location-wrap {
    height: 268px;
  }

  .deliver-sec .deliver-img {
    height: 280px;
  }

  .article-section .article-item .article-img,
  .nile-article-card .article-img {
    height: 340px;
  }
}

@media (max-width: 575.98px) {
  .trending-list .trending-list-item .place-img,
  .place-item .place-img,
  .recommended-sec .recommended-list-item .recommended-img,
  .cruise-listing-page .place-item .place-img,
  .cruise-category-page .place-item .place-img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .guide-section .guide-list-item .guide-img {
    height: 280px;
  }

  .article-section .article-item .article-img,
  .nile-article-card .article-img {
    height: 300px;
  }
}

/* Blog article page */
.blog-show-page .blog-show-featured {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-toc-card {
  position: sticky;
  top: 6.5rem;
}

/* Cruise page sidebar: only the lower cards (Enquire Us / Why Book With Us)
   follow the scroll after the booking form has passed. Pure CSS sticky —
   no JS repositioning, so nothing can overlap while scrolling up/down. */
@media (min-width: 1200px) {
  .nile-sidebar-sticky {
    position: sticky;
    top: 6.5rem;
  }
}

.blog-toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-toc-link {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(51 65 85);
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-toc-link:hover {
  color: rgb(201 162 39);
}

.blog-toc-item--sub .blog-toc-link {
  padding-inline-start: 1rem;
  font-size: 0.8125rem;
  color: rgb(100 116 139);
}

.blog-article-content h2,
.blog-article-content h3 {
  scroll-margin-top: 6rem;
}

.blog-related-section.article-section .nile-article-card .article-img {
  height: 280px;
}

@media (max-width: 767.98px) {
  .blog-related-section.article-section .nile-article-card .article-img {
    height: 240px;
  }
}

/* Footer — vertical columns + readable text on dark background */
.footer-eight .footer-top p.text-white {
  color: #f1f5f9 !important;
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 400;
  opacity: 1;
}

.footer-eight .footer-top .fw-medium.text-light,
.footer-eight .footer-top a.fw-medium.text-light {
  color: #ffffff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-eight .footer-top a.fw-medium.text-light:hover {
  color: #fbbf24 !important;
}

.footer-eight .footer-top .fs-14.text-white {
  color: #e2e8f0 !important;
  font-weight: 500;
}

.footer-eight .footer-middle {
  padding: 48px 0;
}

.footer-eight .footer-middle h5.text-white {
  color: #ffffff !important;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1rem !important;
}

.footer-eight .footer-middle ul.footer-links {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-eight .footer-middle ul.footer-links li {
  display: block;
  margin: 0 0 0.625rem;
  padding: 0;
}

.footer-eight .footer-middle ul.footer-links li a {
  display: inline-block;
  color: #e2e8f0 !important;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-eight .footer-middle ul.footer-links li a::after {
  display: none !important;
}

.footer-eight .footer-middle ul.footer-links li a:hover {
  color: #fbbf24 !important;
  text-decoration: none;
}

.footer-eight .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
}

.footer-eight .footer-contact-list li i {
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-eight .footer-contact-list li a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-eight .footer-contact-list li a:hover {
  color: #fbbf24 !important;
}

.footer-eight .footer-bottom p.text-white {
  color: #e2e8f0 !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-eight .footer-bottom .footer-bottom-links a {
  color: #e2e8f0 !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-eight .footer-bottom .footer-bottom-links a:hover {
  color: #fbbf24 !important;
}

.footer-eight .footer-top .social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-eight .footer-top .social-icon li a:hover {
  background-color: #d95518;
  color: #fff;
}

.nile-header-social,
.nile-footer-social,
.nile-mobile-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nile-header-social li,
.nile-footer-social li,
.nile-mobile-social li {
  margin: 0;
  padding: 0;
}

.nile-header-social li::after,
.nile-footer-social li::after,
.nile-mobile-social li::after {
  display: none !important;
}

.nile-header-social li a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  font-size: 14px;
  text-decoration: none;
}

.header-eight .nile-header-social li a {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Home sticky — visual only (same box size). Avoid .fixed full restyle → CLS */
header.header-eight .header-nav {
  min-height: 64px;
}

header.header-eight .header-nav .main-menu-wrapper {
  min-height: 64px;
  padding: 3px 16px;
  gap: 1rem;
}

header.header-eight.is-scrolled .header-nav {
  background: rgba(17, 24, 39, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

header.header-eight.fixed {
  background-color: transparent !important;
  box-shadow: none;
  padding: inherit;
}

header.header-eight.fixed .header-nav {
  background: rgba(17, 24, 39, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
  backdrop-filter: blur(16px);
}

header.header-eight.fixed .header-nav .main-menu-wrapper {
  flex-wrap: nowrap;
  gap: 1rem;
  min-height: 64px;
  padding: 3px 16px;
}

header.header-eight.fixed .header-btn,
header.header-eight .header-btn {
  display: flex !important;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

header:not(.header-eight) .header-logo.logo-dark {
  display: block !important;
}

header:not(.header-eight) .header-logo.logo-white {
  display: none !important;
}

header.header-eight:not(.fixed) .header-logo.logo-dark {
  display: none !important;
}

header.header-eight:not(.fixed) .header-logo.logo-white {
  display: block !important;
}

header.header-eight.fixed .header-logo.logo-dark {
  display: none !important;
}

header.header-eight.fixed .header-logo.logo-white {
  display: block !important;
}

header.header-eight .logo-white .nile-brand-logo,
header.header-eight.fixed .logo-white .nile-brand-logo {
  filter: brightness(0) invert(1);
}

header:not(.header-eight):not(.fixed) .header-nav .main-menu-wrapper .main-nav > li > a {
  color: #111827 !important;
}

header:not(.header-eight):not(.fixed) .header-nav .main-menu-wrapper .main-nav > li > a:hover,
header:not(.header-eight):not(.fixed) .header-nav .main-menu-wrapper .main-nav > li.active > a {
  color: #d95518 !important;
}

/* Inner pages — clean full-width white header */
body.nile-inner-page .main-header {
  position: relative;
  width: 100%;
  z-index: 1050;
  background: #fff;
}

body.nile-inner-page .header-topbar {
  background: #0f3d7a !important;
}

body.nile-inner-page header:not(.header-eight) {
  position: sticky;
  top: 0;
  background: #fff;
  margin: 0;
  box-shadow: 0 1px 0 rgba(15, 61, 122, 0.08);
}

body.nile-inner-page header:not(.header-eight).fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff !important;
  box-shadow: 0 4px 18px rgba(15, 61, 122, 0.1);
  animation: none;
}

body.nile-inner-page header:not(.header-eight) .header-nav {
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper {
  padding: 0.2rem 0.75rem;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  min-height: 64px;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav > li > a {
  color: #111827 !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.55rem;
  white-space: nowrap;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav > li > a:hover,
body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav > li.active > a {
  color: var(--nile-brand-orange) !important;
}

body.nile-inner-page header:not(.header-eight) .header-logo.logo-dark {
  display: block !important;
}

body.nile-inner-page header:not(.header-eight) .header-logo.logo-white {
  display: none !important;
}

body.nile-inner-page header:not(.header-eight) .header__hamburger .sidebar-menu,
body.nile-inner-page header:not(.header-eight) .mobile_btn {
  color: #111827 !important;
}

body.nile-inner-page header:not(.header-eight) .btn-outline-primary {
  border-color: var(--nile-brand-blue) !important;
  color: var(--nile-brand-blue) !important;
}

body.nile-inner-page header:not(.header-eight) .btn-outline-primary:hover {
  background: var(--nile-brand-blue) !important;
  color: #fff !important;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav > li {
  padding: 0;
}

body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper .main-nav > li.active > a::after {
  display: none;
}

body.nile-inner-page header .header-logo .nile-brand-logo {
  width: auto;
  max-width: 220px;
  height: 56px;
  max-height: 56px;
}

body.nile-inner-page .header-topbar a {
  color: #fff;
}

body.nile-inner-page .header-topbar .isax {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
  line-height: 1;
  vertical-align: middle;
}

body.nile-inner-page header:not(.header-eight) .header-btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}

body.nile-inner-page header:not(.header-eight) .navbar-logo {
  flex-shrink: 0;
}

body.nile-inner-page header:not(.header-eight) #mobile-menu {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

@media (min-width: 992px) {
  body.nile-inner-page header:not(.header-eight) .header-nav,
  body.nile-inner-page header:not(.header-eight) .header-nav .main-menu-wrapper {
    overflow: visible;
  }

  body.nile-inner-page header:not(.header-eight) .main-menu-wrapper .main-nav > li {
    position: relative;
  }

  body.nile-inner-page header:not(.header-eight) .main-menu-wrapper .main-nav > li > .submenu {
    z-index: 1060;
  }

  body.nile-inner-page header:not(.header-eight) .main-menu-wrapper .main-nav > li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

body.nile-inner-page header:not(.header-eight) .nile-nav-hot-deals {
  background: var(--nile-brand-blue) !important;
  color: #fff !important;
}

.header-eight .header-nav .main-menu-wrapper .main-nav > li {
  margin-right: 0.4rem !important;
}

.header-eight .header-nav .main-menu-wrapper .main-nav > li > a {
  margin: 0 0.1rem;
}

header.header-eight.fixed .header-nav .main-menu-wrapper .main-nav > li > a {
  color: #fff !important;
}

header.header-eight.fixed .header-nav .main-menu-wrapper .main-nav > li.active > a {
  background-color: #d95518;
  color: #fff !important;
}

header.header-eight.fixed .flag-dropdown .dropdown-toggle {
  color: #fff !important;
}

header.header-eight.fixed .nile-header-social li a {
  background-color: #d95518 !important;
  color: #fff !important;
}

header.header-eight.fixed .header__hamburger .sidebar-menu {
  color: #fff !important;
}

@media (max-width: 1399.98px) {
  header.header-eight.fixed .header-nav .main-menu-wrapper .main-nav > li > a {
    padding: 4px 8px;
    font-size: 0.875rem;
  }
}

@media (max-width: 1199.98px) {
  header.header-eight.fixed .header-nav .main-menu-wrapper {
    flex-wrap: wrap;
  }

  header.header-eight.fixed .header-btn {
    margin-left: auto;
  }
}

.nile-footer-social li a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  font-size: 15px;
  text-decoration: none;
}

.nile-mobile-social li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  color: #334155 !important;
  font-size: 16px;
  text-decoration: none;
}

.nile-header-social li a:hover,
.nile-footer-social li a:hover,
.nile-mobile-social li a:hover {
  background-color: #d95518;
  color: #fff !important;
}

.nile-contact-social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(241 245 249);
  color: rgb(51 65 85);
}

.nile-contact-social li a:hover {
  background-color: #d95518;
  color: #fff;
}

/* Footer — competitor style */
.nile-footer {
  background: #0b1f3f;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.nile-footer__logo-box {
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 1rem;
}

.nile-footer__about,
.nile-footer__payment-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.nile-footer-social {
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.nile-footer__heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nile-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nile-footer__links li + li {
  margin-top: 0.45rem;
}

.nile-footer__links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
}

.nile-footer__links a:hover {
  color: #f39200;
}

.nile-footer__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2rem 0 1.25rem;
}

.nile-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nile-footer__bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.nile-footer__bottom-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
}

.nile-footer__bottom-nav a:hover {
  color: #f39200;
}

.nile-footer__legal,
.nile-footer__license {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.nile-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.nile-payment-icons__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

.nile-pay-visa { background: #1a1f71; }
.nile-pay-mastercard { background: #eb001b; }
.nile-pay-amex { background: #2e77bc; }
.nile-pay-stripe { background: #635bff; }
.nile-pay-paypal { background: #003087; }

/* WhatsApp widget — compact icon only (no wide “Need Help” bubble) */
.nile-wa-widget {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.nile-wa-widget__bubble {
  display: none !important;
}

.nile-wa-widget__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  overflow: hidden;
}

.nile-wa-widget__toggle:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.nile-wa-widget__toggle i,
.nile-wa-widget__toggle .nile-svg-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nile-wa-widget__toggle .nile-svg-icon {
  width: 1.35rem;
  height: 1.35rem;
  margin: auto;
}

.nile-wa-widget__icon-close {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.nile-wa-widget.is-open .nile-wa-widget__icon-open {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.nile-wa-widget.is-open .nile-wa-widget__icon-close {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.nile-wa-widget__popup {
  width: min(340px, calc(100vw - 36px));
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  margin-bottom: 0.25rem;
}

.nile-wa-widget__header {
  background: #075e54;
  color: #fff;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  gap: 0.75rem;
}

.nile-wa-widget__header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.nile-wa-widget__header strong {
  display: block;
  font-size: 1rem;
}

.nile-wa-widget__header p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  opacity: 0.92;
  line-height: 1.45;
}

.nile-wa-widget__body {
  padding: 0.85rem;
}

.nile-wa-widget__hint {
  color: #6b7280;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}

.nile-wa-widget__agent {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.55rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nile-wa-widget__agent:last-child {
  margin-bottom: 0;
}

.nile-wa-widget__agent:hover {
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.15);
}

.nile-wa-widget__agent-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #25d366;
}

.nile-wa-widget__agent-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f8ee;
  color: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nile-wa-widget__agent-text {
  flex: 1;
  min-width: 0;
}

.nile-wa-widget__agent-text strong {
  display: block;
  font-size: 0.92rem;
  color: #111827;
}

.nile-wa-widget__agent-text small {
  color: #6b7280;
  font-size: 0.78rem;
}

.nile-wa-widget__agent-action {
  color: #25d366;
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .nile-wa-widget {
    right: 10px;
    bottom: 14px;
  }

  .nile-wa-widget__toggle {
    width: 40px;
    height: 40px;
  }

  .nile-wa-widget__toggle .nile-svg-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .nile-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.back-to-top {
  right: auto;
  left: 20px;
}

.back-to-top-icon {
  left: 20px !important;
  right: auto !important;
}

@media (max-width: 767.98px) {
  .back-to-top {
    left: 12px;
    bottom: 90px;
  }

  .back-to-top-icon {
    left: 12px !important;
    bottom: 24px !important;
  }
}

/* Account dashboard / favorites cruise cards */
.account-cruise-grid .place-item .place-img {
  height: 240px;
}

.account-cruise-grid .place-item .place-img .cruise-grid-slider,
.account-cruise-grid .place-item .place-img .owl-stage-outer,
.account-cruise-grid .place-item .place-img .owl-item,
.account-cruise-grid .place-item .place-img .slide-images,
.account-cruise-grid .place-item .place-img .slide-images a,
.account-cruise-grid .place-item .place-img .slide-images img {
  height: 100%;
}

.account-cruise-grid .place-item .place-img .slide-images img {
  width: 100%;
  object-fit: cover;
}

.account-cruise-grid .place-item {
  width: 100%;
}

.account-cruise-grid .place-item .place-content .curise-details {
  gap: 0.5rem;
}

.account-cruise-grid .place-item .place-content .curise-details > div {
  min-width: 0;
}

.recommended-sec .recommended-list-item .recommended-img .nile-recommended-fav {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.trending-list .fav-item,
.place-item .fav-item {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  gap: 0.5rem;
  pointer-events: none;
}

.trending-list .fav-item .nile-trending-fav,
.trending-list .fav-item .badge,
.place-item .fav-item .nile-favorite-toggle,
.place-item .fav-item .badge {
  pointer-events: auto;
}

.trending-list .fav-item .nile-trending-fav {
  flex-shrink: 0;
  margin-left: auto;
}

button.fav-icon.nile-favorite-toggle,
button.fav-icon.nile-favorite-guest {
  border: 0;
  padding: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}

button.fav-icon.nile-favorite-toggle.selected,
button.fav-icon.nile-favorite-toggle.active {
  color: var(--nile-brand-orange);
}

.nile-favorite-toggle.selected i.isax-heart5,
.nile-favorite-toggle.active i.isax-heart5 {
  color: var(--nile-brand-orange);
}

.nile-favorite-toast-container {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.nile-favorite-toast-container .toast {
  pointer-events: auto;
}

.nile-favorite-toast--added {
  background: #198754 !important;
  color: #fff !important;
}

.nile-favorite-toast--removed {
  background: #4b5563 !important;
  color: #fff !important;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* Tailor a Tour page */
.nile-breadcrumb-plain {
  background: linear-gradient(180deg, #0f3d7a 0%, #1e5aa8 100%);
  padding: 1.1rem 0;
  min-height: 0;
}

.nile-breadcrumb-plain .breadcrumb-item,
.nile-breadcrumb-plain .breadcrumb-item a,
.nile-breadcrumb-plain .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.92);
}

.nile-tailor-intro-section {
  padding-top: 2.5rem;
}

.nile-tailor-hero .nile-page-hero__overlay {
  align-items: flex-end;
  padding-bottom: 1.5rem;
}

.nile-tailor-hero .nile-hero-breadcrumb {
  margin-bottom: 0;
}

.nile-tailor-hero-img {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(15, 61, 122, 0.12);
}

.nile-tailor-page .nile-tailor-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.nile-tailor-hero-img img {
  border-radius: 1rem;
  object-fit: cover;
  min-height: 320px;
}

.nile-tailor-form-wrap {
  background: #f8fafc;
  border: 1px solid #e4ebf1;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .nile-tailor-form-wrap {
    padding: 2.5rem;
  }
}

.nile-tailor-form .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.35rem;
}

.nile-tailor-form .form-control,
.nile-tailor-form .form-select {
  min-height: 46px;
  border-color: #e4ebf1;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.nile-tailor-form .form-control:focus,
.nile-tailor-form .form-select:focus {
  border-color: var(--nile-brand-blue);
  box-shadow: 0 0 0 0.15rem rgba(30, 90, 168, 0.12);
}

.nile-tailor-submit {
  min-width: 220px;
  min-height: 48px;
  font-weight: 600;
}

.nile-tailor-checklist li {
  color: #374151;
  font-size: 0.95rem;
}

.nile-tailor-cta-box {
  background: linear-gradient(135deg, var(--nile-brand-blue) 0%, var(--nile-brand-blue-dark) 100%);
}

.nile-tailor-media-main img {
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

.nile-tailor-badge {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: var(--nile-brand-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(217, 85, 24, 0.35);
}

.nile-tailor-media-secondary img {
  min-height: 220px;
  object-fit: cover;
}

.nile-tailor-promo {
  padding-bottom: 3rem;
}

.nile-tailor-promo-inner {
  background: var(--nile-brand-blue-dark);
  min-height: 280px;
}

.nile-tailor-promo-content {
  padding: 2rem 1.5rem;
}

@media (min-width: 992px) {
  .nile-tailor-promo-content {
    padding: 3rem 2.5rem;
  }
}

.nile-tailor-promo-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.nile-tailor-promo-image__media {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.nile-tailor-faq-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nile-tailor-faq-pill {
  border: 1px solid #e4ebf1;
  background: #fff;
  color: #111827;
  text-align: left;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nile-tailor-faq-pill:hover,
.nile-tailor-faq-pill.is-active {
  background: var(--nile-brand-blue);
  border-color: var(--nile-brand-blue);
  color: #fff;
}

.nile-tailor-accordion .accordion-item {
  border: 1px solid #e4ebf1;
  border-radius: 0.75rem !important;
  overflow: hidden;
}

.nile-tailor-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none;
}

.nile-tailor-accordion .accordion-button::after,
.nile-tailor-accordion .accordion-button:not(.collapsed)::after,
.nile-about-accordion .accordion-button::after,
.nile-about-accordion .accordion-button:not(.collapsed)::after {
  content: "" !important;
  font-family: inherit !important;
  font-size: 0 !important;
  width: 1.15rem !important;
  height: 1.15rem !important;
  margin-left: auto;
  flex-shrink: 0;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 1.15rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1f3f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.nile-tailor-accordion .accordion-button:not(.collapsed)::after,
.nile-about-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.nile-tailor-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--nile-brand-blue);
}

/* Thank You page */
.nile-thanks-page {
  overflow-x: hidden;
}

.nile-thanks-hero {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 220px;
  max-height: 280px;
  background: var(--nile-brand-blue-dark);
}

@media (min-width: 768px) {
  .nile-thanks-hero {
    height: 280px;
    max-height: 320px;
  }
}

.nile-thanks-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nile-thanks-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(15, 61, 122, 0.78) 0%, rgba(15, 61, 122, 0.42) 55%, rgba(15, 61, 122, 0.25) 100%);
}

.nile-thanks-hero__title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.nile-thanks-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f7ff;
  color: var(--nile-brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nile-thanks-cta {
  min-width: 200px;
  font-weight: 600;
}

.nile-thanks-feature {
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  color: #fff;
}

.nile-thanks-feature--orange {
  background: var(--nile-brand-orange);
}

.nile-thanks-feature--blue {
  background: var(--nile-brand-blue);
}

.nile-thanks-feature--navy {
  background: var(--nile-brand-blue-dark);
}

.nile-thanks-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.nile-thanks-feature__title {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.nile-thanks-feature__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Unified page hero — sharp full-width imagery via <img> instead of CSS backgrounds */
.nile-page-hero,
.nile-category-hero,
.nile-cruise-hero,
.nile-blog-hero,
.nile-blog-article__hero,
.nile-about-hero {
  position: relative;
  min-height: var(--nile-hero-min-height, 300px);
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
  background-color: #0f3d7a;
  isolation: isolate;
}

.nile-page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nile-page-hero__overlay,
.nile-category-hero__overlay,
.nile-cruise-hero__overlay,
.nile-blog-hero__overlay,
.nile-blog-article__hero-overlay,
.nile-about-hero__overlay {
  position: relative;
  z-index: 1;
  min-height: var(--nile-hero-min-height, 300px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(15, 61, 122, 0.12) 0%, rgba(15, 61, 122, 0.84) 100%);
  padding: 2.25rem 0 2rem;
}

.nile-category-hero__overlay,
.nile-cruise-hero__overlay {
  background: linear-gradient(180deg, rgba(15, 61, 122, 0.15) 0%, rgba(15, 61, 122, 0.82) 100%);
  padding: 2.5rem 0 2rem;
}

.nile-page-hero--section {
  border-radius: 0;
  padding: 4rem 0;
}

.nile-page-hero--section .nile-page-hero__media {
  object-position: center 35%;
}

.nile-about-cta__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 31, 63, 0.55);
  pointer-events: none;
}

.nile-about-cta__container {
  position: relative;
  z-index: 2;
}

/* Category hero + competitor-style cruise sections */
.nile-category-hero,
.nile-cruise-hero {
  margin-bottom: 0;
}

.nile-category-hero__title,
.nile-cruise-hero__title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Cruise hero — video / gallery quick actions */
.nile-cruise-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.nile-hero-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 1.05rem 0.3rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(11, 31, 63, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

[dir='rtl'] .nile-hero-action-btn {
  padding: 0.3rem 0.35rem 0.3rem 1.05rem;
}

.nile-hero-action-btn:hover,
.nile-hero-action-btn:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: #fff;
  color: var(--nile-brand-blue, #0f3d7a);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 31, 63, 0.28);
}

.nile-hero-action-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nile-brand-blue, #0f3d7a);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nile-hero-action-btn:hover .nile-hero-action-btn__icon {
  transform: scale(1.08);
}

.nile-hero-action-btn--video .nile-hero-action-btn__icon {
  background: var(--nile-brand-orange, #f4a51c);
  color: #fff;
}

.nile-hero-action-btn__count {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  font-weight: 700;
}

.nile-hero-action-btn:hover .nile-hero-action-btn__count {
  background: rgba(15, 61, 122, 0.12);
}

@media (max-width: 575.98px) {
  .nile-cruise-hero__actions {
    gap: 0.5rem;
  }

  .nile-hero-action-btn {
    font-size: 0.82rem;
  }

  .nile-hero-action-btn__icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

.nile-hero-breadcrumb,
.nile-blog-article__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.nile-hero-breadcrumb a,
.nile-hero-breadcrumb span,
.nile-blog-article__breadcrumb a,
.nile-blog-article__breadcrumb span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nile-hero-breadcrumb a:hover,
.nile-blog-article__breadcrumb a:hover {
  color: #fff;
}

.nile-cruise-detail-top .service-wrap {
  margin-bottom: 0;
}

.nile-cruise-detail-top .nile-quick-facts {
  margin-bottom: 0;
}

.nile-category-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin-bottom: 0;
}

.nile-plan-trip-cta__card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, rgba(243, 146, 0, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 110% at 0% 100%, rgba(30, 90, 168, 0.06), transparent 50%),
    #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(15, 61, 122, 0.08);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(30, 90, 168, 0.08);
}

.nile-plan-trip-cta__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nile-brand-orange, #d95518), var(--nile-brand-blue, #1e5aa8));
}

.nile-plan-trip-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nile-brand-orange, #d95518);
  margin-bottom: 0.5rem;
}

.nile-plan-trip-cta__eyebrow .isax {
  font-size: 1rem;
}

.nile-plan-trip-cta__title {
  color: var(--nile-brand-blue-dark);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.nile-plan-trip-cta__text {
  color: #4b5563;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.nile-plan-trip-cta__btn {
  background: var(--nile-brand-orange) !important;
  border-color: var(--nile-brand-orange) !important;
  color: #fff !important;
  font-weight: 600;
}

.nile-plan-trip-cta__btn:hover,
.nile-plan-trip-cta__btn:focus {
  background: var(--nile-brand-orange-dark) !important;
  border-color: var(--nile-brand-orange-dark) !important;
  color: #fff !important;
}

.nile-tailor-cta-btn {
  background: var(--nile-brand-orange) !important;
  border-color: var(--nile-brand-orange) !important;
  color: #fff !important;
  font-weight: 600;
}

.nile-tailor-cta-btn:hover,
.nile-tailor-cta-btn:focus {
  background: var(--nile-brand-orange-dark) !important;
  border-color: var(--nile-brand-orange-dark) !important;
  color: #fff !important;
}

.nile-tailor-promo__btn {
  color: var(--nile-brand-blue-dark) !important;
  font-weight: 600;
  border: 0 !important;
}

.nile-tailor-promo__btn:hover,
.nile-tailor-promo__btn:focus {
  background: #fff !important;
  color: var(--nile-brand-blue-dark) !important;
}

.nile-quick-facts {
  display: grid;
  gap: 0.75rem;
}

.nile-quick-facts__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
}

.nile-quick-facts__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217, 85, 24, 0.12);
  color: var(--nile-brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.nile-quick-facts__label {
  display: block;
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
}

.nile-quick-facts__value {
  display: block;
  color: #4b5563;
  font-size: 0.92rem;
}

.nile-section-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(15, 61, 122, 0.06);
  border: 1px solid rgba(30, 90, 168, 0.08);
  padding: 1.25rem 1.5rem;
}

.nile-section-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #111827;
  max-width: fit-content;
}

.nile-section-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(217, 85, 24, 0.12);
  color: var(--nile-brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nile-section-card__icon--success {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.nile-section-card__icon--warning {
  background: rgba(217, 85, 24, 0.12);
  color: var(--nile-brand-orange);
}

.nile-section-card__title {
  margin: 0;
  color: var(--nile-brand-blue-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.nile-section-card__intro,
.nile-section-card__body {
  color: #374151;
  line-height: 1.7;
}

.nile-cruise-why-choose .nile-section-card__body {
  padding: 0;
}

.nile-cruise-why-tabs {
  border: 1px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.nile-cruise-why-tabs__item {
  border: 0;
  border-bottom: 1px solid #e8edf5;
}

.nile-cruise-why-tabs__item:last-child {
  border-bottom: 0;
}

.nile-cruise-why-tabs__trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.15rem;
  background: #f8fafc;
  box-shadow: none;
  color: #0b1f3f;
  font-size: 1rem;
  font-weight: 700;
}

.nile-cruise-why-tabs__trigger:not(.collapsed) {
  background: #fff;
  color: var(--nile-brand-blue-dark);
  border-left: 4px solid var(--nile-brand-orange);
}

/* Theme style.css uses Font Awesome (+ / minus) which we no longer load */
.nile-cruise-why-tabs__trigger::after,
.nile-cruise-why-tabs__trigger:not(.collapsed)::after {
  content: "" !important;
  font-family: inherit !important;
  font-size: 0 !important;
  width: 1.15rem !important;
  height: 1.15rem !important;
  margin-left: auto;
  flex-shrink: 0;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 1.15rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1f3f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.nile-cruise-why-tabs__trigger:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.nile-cruise-why-tabs__trigger:focus {
  box-shadow: none;
}

.nile-cruise-why-tabs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.nile-cruise-why-tabs__icon i {
  font-size: 1.15rem;
}

.nile-cruise-why-tabs__label {
  flex: 1;
  text-align: start;
  line-height: 1.45;
}

.nile-cruise-why-tabs__panel {
  padding: 1rem 1.15rem 1.15rem;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid #eef2f7;
  background: #fff;
}

.nile-rich-content ul,
.nile-rich-content ol {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.nile-rich-content ul li,
.nile-rich-content ol li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  margin-bottom: 0.35rem;
  line-height: 1.65;
  color: #374151;
  border-bottom: 1px dashed #e8edf5;
}

.nile-rich-content ul li:last-child,
.nile-rich-content ol li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.nile-rich-content ul li::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e5aa8, #5bc0eb);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
}

.nile-rich-content ol {
  counter-reset: nile-ol;
}

.nile-rich-content ol li {
  padding-left: 2.1rem;
}

.nile-rich-content ol li::before {
  counter-increment: nile-ol;
  content: counter(nile-ol);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(30, 90, 168, 0.1);
  color: var(--nile-brand-blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nile-rich-content h3 {
  color: var(--nile-brand-blue-dark);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.15rem 0 0.55rem;
}

.nile-rich-content h4 {
  color: var(--nile-brand-blue-dark);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.95rem 0 0.4rem;
}

.nile-rich-content p {
  margin-bottom: 0.65rem;
}

.nile-rich-content p:last-child {
  margin-bottom: 0;
}

.nile-rich-list--included ul li::before,
.nile-rich-list--excluded ul li::before {
  left: 0;
  top: 0.72rem;
  width: 10px;
  height: 10px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14);
}

.nile-rich-list--excluded ul li::before {
  background: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.nile-rich-list--included,
.nile-rich-list--excluded {
  font-size: 0.875rem;
  line-height: 1.55;
}

.nile-rich-list--included p,
.nile-rich-list--excluded p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.45rem;
}

.nile-rich-list--included p:last-child,
.nile-rich-list--excluded p:last-child {
  margin-bottom: 0;
}

.nile-rich-list--included ul,
.nile-rich-list--excluded ul {
  margin-top: 0.25rem;
}

.nile-rich-list--included ul li,
.nile-rich-list--excluded ul li {
  padding: 0.32rem 0 0.32rem 1.45rem;
  margin-bottom: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.nile-rich-list--included ul li::before,
.nile-rich-list--excluded ul li::before {
  top: 0.58rem;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.12);
}

.nile-rich-list--excluded ul li::before {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.cruise-detail-page .nile-section-card:has(.nile-rich-list--included),
.cruise-detail-page .nile-section-card:has(.nile-rich-list--excluded) {
  padding: 1rem 1.15rem;
}

.cruise-detail-page .nile-section-card:has(.nile-rich-list--included) .nile-section-card__header,
.cruise-detail-page .nile-section-card:has(.nile-rich-list--excluded) .nile-section-card__header {
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
}

.cruise-detail-page .nile-section-card:has(.nile-rich-list--included) .nile-section-card__title,
.cruise-detail-page .nile-section-card:has(.nile-rich-list--excluded) .nile-section-card__title {
  font-size: 1.05rem;
}

[dir='rtl'] .nile-rich-list--included ul li,
[dir='rtl'] .nile-rich-list--excluded ul li {
  padding: 0.32rem 1.45rem 0.32rem 0;
}

.nile-rich-content ol {
  counter-reset: nile-rich-ol;
}

.nile-rich-content ol li {
  counter-increment: nile-rich-ol;
}

.nile-rich-content ol li::before {
  content: counter(nile-rich-ol);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #eef4ff;
  color: #1e5aa8;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

[dir='rtl'] .nile-rich-content ul li,
[dir='rtl'] .nile-rich-content ol li {
  padding: 0.55rem 1.85rem 0.55rem 0;
}

[dir='rtl'] .nile-rich-content ul li::before,
[dir='rtl'] .nile-rich-list--included ul li::before,
[dir='rtl'] .nile-rich-list--excluded ul li::before,
[dir='rtl'] .nile-rich-content ol li::before {
  left: auto;
  right: 0;
}

[dir='rtl'] .nile-rich-list--included ul li::before,
[dir='rtl'] .nile-rich-list--excluded ul li::before {
  top: 0.58rem;
}

[dir='rtl'] .nile-cruise-why-tabs__trigger:not(.collapsed) {
  border-left: 0;
  border-right: 4px solid var(--nile-brand-orange);
}

[dir='rtl'] .nile-cruise-why-tabs__trigger::after,
[dir='rtl'] .nile-cruise-why-tabs__trigger:not(.collapsed)::after {
  margin-left: 0;
  margin-right: auto;
}

.nile-cruise-why-choose__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  background: #f8fafc;
}

.nile-cruise-why-choose__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.nile-cruise-why-choose__icon i {
  font-size: 1.35rem;
}

.nile-cruise-why-choose__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1f3f;
  margin-bottom: 0.35rem;
}

.nile-cruise-why-choose__text {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.55;
}

.nile-facilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nile-facilities-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  color: #374151;
}

.nile-facilities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid #111827;
}

.nile-variant-heading {
  text-align: center;
  color: var(--nile-brand-blue);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 1.35rem 0 0.85rem;
}

.nile-competitor-accordion .accordion-item {
  border: 0;
  margin-bottom: 0.65rem;
  border-radius: 0.65rem !important;
  overflow: hidden;
}

.nile-competitor-accordion .accordion-header {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.nile-competitor-accordion h3.accordion-header {
  font-size: 1.12rem;
}

.nile-competitor-accordion h4.accordion-header {
  font-size: 0.95rem;
}

.nile-competitor-accordion .accordion-button {
  background: #f3f4f6;
  box-shadow: none;
  font-weight: 700;
  font-size: inherit;
  color: #111827;
  border-radius: 0.65rem !important;
}

/* Theme style.css uses Font Awesome (+ / minus) which we no longer load — restore visible chevrons */
.nile-competitor-accordion .accordion-button::after,
.nile-competitor-accordion .accordion-button:not(.collapsed)::after {
  content: "" !important;
  font-family: inherit !important;
  font-size: 0 !important;
  width: 1.15rem !important;
  height: 1.15rem !important;
  margin-left: auto;
  flex-shrink: 0;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 1.15rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1f3f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.nile-competitor-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.nile-competitor-accordion .accordion-button:not(.collapsed) {
  background: #eef2ff;
  color: var(--nile-brand-blue-dark);
}

.nile-pricing-table thead th {
  background: var(--nile-brand-blue);
  color: #fff;
  border: 0;
}

.nile-pricing-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.nile-pricing-note {
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  border-top: 1px solid #e5e7eb;
}

.support-item--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.support-item--link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.support-item--promo {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
}

.support-item__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--nile-brand-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nile-google-reviews-section {
  padding: 3rem 0;
}

.nile-google-reviews-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.nile-google-reviews-section__g,
.nile-google-review__g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.nile-google-reviews-section__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--nile-brand-blue-dark);
}

/* ── Reviews wall (Google + Tripadvisor showcase) ── */
.nile-reviews-wall {
  --nile-reviews-navy: #0b1f3f;
  --nile-reviews-gold: #c49a5c;
  position: relative;
  isolation: isolate;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.nile-reviews-wall__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nile-reviews-wall__backdrop-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.95);
}

.nile-reviews-wall__backdrop-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(248, 250, 252, 0.92) 100%);
}

.nile-reviews-wall__inner {
  position: relative;
  z-index: 1;
}

.nile-reviews-wall__header {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 0 1.25rem;
  padding: 0;
  background: transparent !important;
}

.nile-reviews-wall__title {
  margin: 20px auto;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #0b1f3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.nile-reviews-wall__title span {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Inner pages: same review experience, fitted to content width (no nested broken container) */
.nile-reviews-wall--inner {
  margin: 0;
  padding: 2.25rem 1.35rem 1.85rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(15, 61, 122, 0.08);
  overflow: visible;
  box-shadow: 0 18px 40px rgba(11, 31, 63, 0.08);
}

.nile-reviews-wall--inner .nile-reviews-wall__backdrop {
  border-radius: inherit;
  overflow: hidden;
}

.nile-reviews-wall--inner .nile-reviews-wall__backdrop-image {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.96);
}

.nile-reviews-wall--inner .nile-reviews-wall__backdrop-fade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(248, 250, 252, 0.96) 100%);
}

.nile-reviews-wall--inner .nile-reviews-wall__title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.nile-reviews-wall--inner .nile-reviews-wall__platforms {
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.nile-reviews-wall--inner .nile-reviews-platform {
  min-height: 128px;
  padding: 1.05rem 1.15rem 1.2rem;
  border-radius: 1.1rem;
}

.nile-reviews-wall--inner .nile-reviews-platform__score strong {
  font-size: 2rem;
}

.nile-reviews-wall--inner .nile-reviews-carousel {
  padding: 0 2.75rem;
  margin-bottom: 1.35rem;
}

.nile-reviews-wall--inner .nile-reviews-carousel.is-static {
  padding: 0;
}

.nile-reviews-wall--inner .nile-reviews-carousel__slide {
  flex-basis: calc((100% - 1rem) / 2);
}

.nile-reviews-wall--inner .nile-google-review--wall {
  min-height: 250px;
}

.nile-reviews-wall--inner .nile-reviews-wall__trust {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 1.15rem;
  padding: 1rem 1.15rem;
  gap: 0.9rem 1rem;
}

.nile-reviews-wall--inner .nile-reviews-wall__trust-title {
  font-size: 0.88rem;
}

.nile-reviews-wall--inner .nile-reviews-wall__trust-text {
  font-size: 0.74rem;
}

@media (max-width: 991.98px) {
  .nile-reviews-wall--inner .nile-reviews-wall__platforms {
    grid-template-columns: 1fr;
  }

  .nile-reviews-wall--inner .nile-reviews-carousel__slide {
    flex-basis: 100%;
  }
}

@media (max-width: 575.98px) {
  .nile-reviews-wall--inner {
    padding: 1.65rem 0.9rem 1.35rem;
    border-radius: 1rem;
  }

  .nile-reviews-wall--inner .nile-reviews-wall__trust {
    grid-template-columns: 1fr;
  }
}


.nile-reviews-wall__subtitle {
  margin: 0;
  color: #52637a;
  font-size: 1rem;
  line-height: 1.55;
}

.nile-reviews-wall__platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.nile-reviews-platform {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(9rem, 0.8fr);
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 1.35rem;
  padding: 1.25rem 1.35rem 1.4rem;
  border: 1px solid rgba(15, 61, 122, 0.08);
  box-shadow: 0 14px 34px rgba(11, 31, 63, 0.08);
  min-height: 148px;
}

.nile-reviews-platform--google {
  border-bottom: 3px solid #4285f4;
}

.nile-reviews-platform--tripadvisor {
  border-bottom: 3px solid #00aa6c;
}

.nile-reviews-platform__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--nile-reviews-navy);
  margin-bottom: 0.65rem;
}

.nile-reviews-platform__g {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.nile-reviews-platform__ta {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00aa6c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nile-reviews-platform__ta-svg {
  width: 16px;
  height: 16px;
}

.nile-reviews-platform__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.nile-reviews-platform__score strong {
  font-size: 2.35rem;
  line-height: 1;
  color: var(--nile-reviews-navy);
  font-weight: 700;
}

.nile-reviews-platform__score > span {
  width: 100%;
  color: #6b7c93;
  font-size: 0.92rem;
}

.nile-reviews-platform__stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #f4b400;
}

.nile-reviews-platform__stars .nile-svg-icon {
  width: 16px;
  height: 16px;
}

.nile-reviews-platform__circles {
  display: inline-flex;
  gap: 0.25rem;
}

.nile-reviews-platform__circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #00aa6c;
  background: transparent;
}

.nile-reviews-platform__circle.is-filled {
  background: #00aa6c;
}

.nile-reviews-platform__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  color: var(--nile-reviews-gold);
  padding: 0.4rem;
}

.nile-reviews-platform__badge i {
  font-size: 1.65rem;
}

.nile-reviews-platform__badge p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #5b6b80;
  max-width: 9.5rem;
}

.nile-reviews-platform__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.nile-reviews-wall__carousel-head {
  text-align: center;
  margin-bottom: 1rem;
}

.nile-reviews-wall__carousel-head p {
  margin: 0;
  color: #52637a;
  font-size: 0.95rem;
}

.nile-reviews-carousel {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 0 2.75rem;
}

.nile-reviews-carousel.is-static {
  padding-left: 0;
  padding-right: 0;
}

.nile-reviews-carousel.is-static .nile-reviews-carousel__nav,
.nile-reviews-carousel.is-static .nile-reviews-carousel__dots,
.nile-reviews-carousel__nav[hidden],
.nile-reviews-carousel__dots[hidden] {
  display: none !important;
}

.nile-reviews-carousel.is-static .nile-reviews-carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.5rem), 1fr));
  gap: 1rem;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0.35rem;
}

.nile-reviews-carousel.is-static .nile-reviews-carousel__slide {
  flex: none;
  width: 100%;
  max-width: none;
}

.nile-reviews-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1rem;
  scrollbar-width: none;
}

.nile-reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.nile-reviews-carousel__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

.nile-reviews-carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--nile-reviews-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 31, 63, 0.22);
}

.nile-reviews-carousel__nav svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nile-reviews-carousel__nav--prev {
  left: 0;
}

.nile-reviews-carousel__nav--next {
  right: 0;
}

[dir="rtl"] .nile-reviews-carousel__nav--prev {
  left: auto;
  right: 0;
}

[dir="rtl"] .nile-reviews-carousel__nav--next {
  right: auto;
  left: 0;
}

.nile-reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.nile-reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 31, 63, 0.22);
  padding: 0;
  cursor: pointer;
}

.nile-reviews-carousel__dot.is-active {
  width: 22px;
  background: var(--nile-reviews-gold);
}

.nile-reviews-wall__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  background: var(--nile-reviews-navy);
  color: #fff;
  border-radius: 999px;
  padding: 1.15rem 1.5rem;
}

.nile-reviews-wall__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.nile-reviews-wall__trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--nile-reviews-gold);
  border-radius: 50%;
  color: var(--nile-reviews-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nile-reviews-wall__trust-title {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.nile-reviews-wall__trust-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.nile-google-review--wall {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-radius: 1.25rem;
  box-shadow: 0 16px 36px rgba(11, 31, 63, 0.08);
  border: 1px solid #e8edf5;
  background: #fff;
}

.nile-google-review--wall .nile-google-review__top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.nile-google-review__identity {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.nile-google-review--wall .nile-google-review__rating {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  margin: 0;
}

.nile-google-review--wall .nile-google-review__rating > span {
  font-weight: 700;
  color: var(--nile-reviews-navy, #0b1f3f);
}

.nile-google-review__stars {
  display: inline-flex;
  gap: 0.05rem;
}

.nile-google-review__stars .nile-svg-icon {
  width: 14px;
  height: 14px;
  color: #d1d5db;
}

.nile-google-review__stars .nile-svg-icon.is-filled {
  color: #fbbc04;
}

.nile-google-review__source-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 0.35rem;
  vertical-align: middle;
}

.nile-google-review__source-mark--google {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.nile-google-review__source-mark--ta {
  width: 18px;
  height: 18px;
  color: #00aa6c;
}

.nile-google-review__source-mark--ta .nile-svg-icon {
  width: 16px;
  height: 16px;
}

.nile-google-review--wall .nile-google-review__content {
  position: relative;
  flex: 1 1 auto;
  margin: 0.25rem 0 1rem;
  color: #3f4f63;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nile-google-review__quote {
  color: var(--nile-reviews-gold, #c49a5c);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 0;
}

.nile-google-review__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-top: auto;
  font-size: 0.8rem;
  color: #7a8799;
}

.nile-google-review__footer a {
  color: #3b82f6;
  text-decoration: none;
}

.nile-google-review__footer a:hover {
  text-decoration: underline;
}

.nile-google-review__watermark {
  position: absolute;
  right: 0.85rem;
  bottom: 0.55rem;
  opacity: 0.08;
  pointer-events: none;
  color: #0b1f3f;
}

.nile-google-review__watermark .nile-svg-icon,
.nile-google-review__watermark-ta {
  width: 64px;
  height: 64px;
  color: #00aa6c;
}

.nile-google-review__watermark-g {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .nile-reviews-carousel__slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .nile-reviews-wall__trust {
    border-radius: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .nile-reviews-wall {
    padding: 3rem 0 2.5rem;
  }

  .nile-reviews-wall__platforms {
    grid-template-columns: 1fr;
  }

  .nile-reviews-platform {
    grid-template-columns: 1fr;
  }

  .nile-reviews-platform__badge {
    align-items: flex-start;
    text-align: start;
    flex-direction: row;
    gap: 0.65rem;
  }

  .nile-reviews-platform__badge p {
    max-width: none;
  }

  .nile-reviews-carousel {
    padding: 0 2.4rem;
  }

  .nile-reviews-carousel__slide {
    flex-basis: 100%;
  }

  .nile-reviews-wall__trust {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
    padding: 1.1rem 1.15rem;
  }
}

/* TripAdvisor CTA near homepage reviews */
.nile-tripadvisor-cta {
  --ta-green: #00aa6c;
  --ta-green-dark: #008f5b;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 1.75rem;
  border-radius: 1rem;
  background:
    linear-gradient(120deg, #0b1f3f 0%, #0f3d7a 48%, #0a5c45 100%);
  box-shadow: 0 16px 40px rgba(15, 61, 122, 0.18);
}

.nile-tripadvisor-cta__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -70px;
  right: 12%;
  background: radial-gradient(circle, rgba(0, 170, 108, 0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: nile-tripadvisor-pulse 4.5s ease-in-out infinite;
}

.nile-tripadvisor-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.35rem;
  flex-wrap: wrap;
}

.nile-tripadvisor-cta__brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: min(100%, 20rem);
  flex: 1 1 18rem;
}

.nile-tripadvisor-cta__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  animation: nile-tripadvisor-float 3.2s ease-in-out infinite;
}

.nile-tripadvisor-cta__svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.nile-tripadvisor-cta__eyebrow {
  margin: 0 0 0.2rem;
  color: #84ebb8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nile-tripadvisor-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 34rem;
}

.nile-tripadvisor-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--ta-green);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 170, 108, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nile-tripadvisor-cta__btn:hover,
.nile-tripadvisor-cta__btn:focus {
  background: var(--ta-green-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 170, 108, 0.42);
}

.nile-tripadvisor-cta__btn-arrow {
  transition: transform 0.2s ease;
}

.nile-tripadvisor-cta__btn:hover .nile-tripadvisor-cta__btn-arrow,
.nile-tripadvisor-cta__btn:focus .nile-tripadvisor-cta__btn-arrow {
  transform: translateX(3px);
}

@keyframes nile-tripadvisor-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes nile-tripadvisor-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 767.98px) {
  .nile-tripadvisor-cta__inner {
    padding: 1.1rem 1rem 1.2rem;
  }

  .nile-tripadvisor-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nile-tripadvisor-cta__glow,
  .nile-tripadvisor-cta__icon,
  .nile-tripadvisor-cta__btn {
    animation: none !important;
    transition: none !important;
  }
}

.nile-google-review {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 61, 122, 0.05);
  height: 100%;
}

.nile-google-review__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.nile-google-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.nile-google-review__meta {
  flex: 1;
  min-width: 0;
}

.nile-google-review__name {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.nile-google-review__country,
.nile-google-review__cruise {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.nile-google-review__brand {
  text-align: right;
}

.nile-google-review__brand-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4285f4;
}

.nile-google-review__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

/* Lightweight SVG icons (replaces Font Awesome webfonts) */
.nile-svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.nile-svg-icon.fs-24 {
  width: 1.5rem;
  height: 1.5rem;
}

.nile-google-review__rating .nile-svg-icon,
.nile-about-testimonial-card__stars .nile-svg-icon {
  color: #d1d5db;
}

.nile-google-review__rating .nile-svg-icon.is-filled,
.nile-about-testimonial-card__stars .nile-svg-icon.is-filled {
  color: var(--nile-brand-orange);
}

.nile-google-review__rating .fa-star {
  color: #d1d5db;
  font-size: 0.85rem;
}

.nile-google-review__rating .fa-star.is-filled {
  color: #fbbc04;
}

.nile-google-review__content {
  color: #374151;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.nile-google-review__date {
  font-size: 0.78rem;
  color: #9ca3af;
}

.nile-review-form .nile-google-review__g {
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
}

/* Nav — competitor-style Hot Deals CTA */
.nile-nav-hot-deals {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  white-space: nowrap;
}

header.header-eight:not(.fixed) .nile-nav-hot-deals {
  background-color: #f39200;
  border-color: #f39200;
}

header.header-eight:not(.fixed) .nile-nav-hot-deals:hover,
header.header-eight:not(.fixed) .nile-nav-hot-deals.active {
  background-color: #d95518;
  border-color: #d95518;
}

header.header-eight.fixed .nile-nav-hot-deals {
  background-color: #f39200;
  border-color: #f39200;
  color: #fff;
}

header:not(.header-eight) .nile-nav-hot-deals {
  margin-right: 0.5rem;
}

.header-btn .nile-nav-hot-deals {
  flex-shrink: 0;
}

@media (max-width: 1199.98px) {
  .header-btn .nile-nav-hot-deals {
    display: none;
  }
}

.nile-subcategory-hub__head {
  margin-bottom: 1.25rem;
}

.nile-subcategory-hub__title {
  color: var(--nile-brand-blue);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.nile-category-results-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.nile-category-results-title {
  color: var(--nile-brand-blue);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  margin: 0;
}

.nile-subcategory-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nile-subcategory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  color: inherit;
}

.nile-subcategory-card__image {
  height: 170px;
  overflow: hidden;
  background: #e2e8f0;
}

.nile-subcategory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nile-subcategory-card:hover .nile-subcategory-card__image img {
  transform: scale(1.05);
}

.nile-subcategory-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nile-subcategory-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0b1f3f;
  margin-bottom: 0.4rem;
}

.nile-subcategory-card__text {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.nile-subcategory-card__meta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1e5aa8;
  font-size: 0.84rem;
  font-weight: 600;
}

header .main-menu-wrapper .main-nav > li .submenu li.nile-submenu-all a {
  font-weight: 700;
  color: #1e5aa8;
  border-bottom: 1px solid #e8edf5;
  margin-bottom: 0.35rem;
  padding-bottom: 0.55rem;
}

/* Cruise special price badge & pricing */
.nile-cruise-special-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f39200;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  line-height: 1.2;
}

.nile-cruise-special-badge--chip {
  padding: 0.38rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  border-radius: 6px;
  line-height: 1.15;
  box-shadow: 0 6px 14px rgba(15, 61, 122, 0.22);
  white-space: nowrap;
  pointer-events: none;
}

/* Legacy overlay placement (kept for any remaining usages) */
.nile-cruise-special-badge--overlay {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 6;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
}

.trending-list .trending-list-item,
.cruise-listing-page .place-item,
.hotel-list .place-item {
  overflow: visible;
}

.trending-list .trending-list-item .place-content,
.cruise-listing-page .place-item .place-content,
.hotel-list .place-item .place-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.trending-list .trending-list-item .place-img > a,
.hotel-list .place-item .place-img > a,
.cruise-listing-page .place-item .place-img > a,
.recommended-sec .recommended-list-item .recommended-img > a {
  display: block;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.place-content,
.recommended-content,
.trending-list-item .place-content {
  position: relative;
  padding-top: 1.35rem;
  margin-top: 0.35rem;
}

.nile-cruise-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.nile-cruise-price__label {
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: capitalize;
}

.nile-cruise-price__values {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.nile-cruise-price__old {
  color: #f39200;
  text-decoration: line-through;
  font-size: 0.92rem;
  font-weight: 500;
}

.nile-cruise-price__current {
  color: #9a3412;
  font-size: 1.15rem;
  font-weight: 700;
}

.nile-cruise-price--lg .nile-cruise-price__current {
  font-size: 1.35rem;
}

.nile-cruise-price__suffix {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
}

/* About page */
.nile-about-hero__title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nile-about-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.nile-about-trust__item {
  text-align: center;
  padding: 1rem;
}

.nile-about-trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef4ff;
  color: #0b1f3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.nile-about-section-title,
.nile-about-why__title {
  color: #0b1f3f;
  font-weight: 700;
}

.nile-about-feature {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.nile-about-feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff3e6;
  color: #f39200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nile-about-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.nile-about-feature p {
  margin: 0;
  color: #6b7280;
  font-size: 0.92rem;
}

.nile-about-why__row + .nile-about-why__row {
  margin-top: 2.5rem;
}

.nile-about-testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.nile-about-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0b1f3f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.nile-about-testimonial-card__stars .fa-star.is-filled {
  color: #22c55e;
}

.nile-about-testimonial-card__quote {
  font-style: italic;
  color: #4b5563;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.nile-about-accordion .accordion-button {
  font-weight: 600;
  color: #0b1f3f;
}

.nile-about-partners__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.nile-about-partners__logo {
  padding: 0.65rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #6b7280;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
}

.nile-about-cta {
  position: relative;
  padding: 4rem 0;
}

.nile-about-cta__box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(11, 31, 63, 0.82);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.nile-about-cta__box h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.nile-about-cta__box p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.nile-about-cta__box .btn-outline-light {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.nile-about-cta__box .btn-outline-light:hover,
.nile-about-cta__box .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* Smart cruise search */
.nile-smart-search { position: relative; }
.nile-smart-search__field { position: relative; }
.nile-smart-search__icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: #6b7280; z-index: 2;
}
.nile-smart-search__input {
  padding-left: 2.75rem; padding-right: 2.5rem; min-height: 52px;
  border-radius: 14px; border: 1px solid #dbe3ef;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.nile-smart-search__clear {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: #9ca3af; font-size: 1.1rem;
}
.nile-smart-search__hint { margin-top: 0.45rem; font-size: 0.8rem; color: #6b7280; }
.nile-smart-search__dropdown {
  position: absolute; left: 0; right: 0; top: calc(100% + 0.35rem);
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12); z-index: 30; overflow: hidden;
}
.nile-smart-search__option {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.85rem 1rem; text-decoration: none; color: inherit; border-bottom: 1px solid #f1f5f9;
}
.nile-smart-search__option:last-child { border-bottom: 0; }
.nile-smart-search__option:hover { background: #f8fafc; }
.nile-smart-search__option-text strong { display: block; color: #0b1f3f; font-size: 0.92rem; }
.nile-smart-search__option-text small { display: block; color: #6b7280; font-size: 0.78rem; }
.nile-smart-search__price { color: #f39200; font-weight: 700; white-space: nowrap; }

/* Blog listing & article */
.nile-blog-hero,
.nile-blog-article__hero {
  min-height: var(--nile-hero-min-height, 300px);
}

.nile-blog-hero__title,
.nile-blog-article__hero-content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
  max-width: 760px;
}

.nile-blog-hero__text,
.nile-hot-deals-hero__text,
.nile-auth-hero__text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.nile-blog-listing {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.nile-blog-featured-banner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nile-blog-featured-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  color: inherit;
}

.nile-blog-featured-banner__image {
  min-height: 220px;
  background: #e2e8f0;
}

.nile-blog-featured-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nile-blog-featured-banner__content {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nile-blog-featured-banner__label {
  display: inline-block;
  width: fit-content;
  background: rgba(30, 90, 168, 0.1);
  color: #1e5aa8;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.nile-blog-featured-banner__content h2 {
  color: #0b1f3f;
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.nile-blog-featured-banner__content p {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.nile-blog-featured-banner__meta {
  color: #6b7280;
  font-size: 0.82rem;
}

.nile-blog-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nile-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.nile-blog-card__media {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #e2e8f0;
}

.nile-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nile-blog-card:hover .nile-blog-card__media img {
  transform: scale(1.04);
}

.nile-blog-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.nile-blog-card__badge {
  display: inline-block;
  background: rgba(217, 85, 24, 0.12);
  color: #d95518;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.nile-blog-card__title {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9rem;
}

.nile-blog-card__title a {
  color: #0b1f3f;
  text-decoration: none;
}

.nile-blog-card__title a:hover {
  color: #1e5aa8;
}

.nile-blog-card__date {
  color: #6b7280;
  font-size: 0.8rem;
}

.nile-blog-card__date i {
  margin-right: 0.3rem;
}

.nile-blog-article__content {
  padding: 2.5rem 0 3rem;
  background: #f8fafc;
}

.nile-blog-article__panel {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.nile-blog-sidebar { position: sticky; top: 6.5rem; }
.nile-blog-sidebar__card {
  background: #fff; border: 1px solid #e8edf5; border-radius: 18px;
  padding: 1.25rem; box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.nile-blog-sidebar__card h3 { font-size: 1.05rem; margin-bottom: 1rem; color: #0b1f3f; }
.nile-blog-sidebar__list { list-style: none; margin: 0; padding: 0; }
.nile-blog-sidebar__list li + li { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid #eef2f7; }
.nile-blog-sidebar__list a { display: block; text-decoration: none; color: inherit; }
.nile-blog-sidebar__list strong { display: block; color: #0b1f3f; font-size: 0.92rem; line-height: 1.45; }
.nile-blog-sidebar__list small { color: #6b7280; font-size: 0.78rem; }
.nile-blog-contact {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border: 1px solid #dbe7f7; border-radius: 18px; padding: 1.25rem;
}
.nile-blog-contact__head { display: flex; gap: 0.85rem; margin-bottom: 1rem; }
.nile-blog-contact__icon {
  width: 44px; height: 44px; border-radius: 12px; background: #1e5aa8; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nile-blog-contact__head h3 { font-size: 1rem; margin-bottom: 0.15rem; color: #0b1f3f; }
.nile-blog-contact__head p { margin: 0; font-size: 0.85rem; color: #6b7280; }
.nile-blog-article__badge {
  display: inline-block; background: #f39200; color: #fff; border-radius: 999px;
  padding: 0.3rem 0.8rem; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.75rem;
}
.nile-blog-article__meta { display: flex; flex-wrap: wrap; gap: 1rem; color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.nile-blog-article__lead { margin: 0 0 1.75rem; }
.nile-blog-article__lead-img,
.nile-blog-article__lead img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.nile-blog-article__excerpt {
  font-size: 1.08rem; color: #4b5563; border-left: 4px solid #1e5aa8;
  padding-left: 1rem; margin: 0 0 1.5rem;
}
.nile-blog-article__body { color: #374151; line-height: 1.8; }
.nile-blog-article__sidebar { position: sticky; top: 6.5rem; }
.nile-blog-toc-list { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.nile-blog-toc-list li { counter-increment: toc; margin-bottom: 0.55rem; }
.nile-blog-toc-list li::before { content: counter(toc) '.'; color: #1e5aa8; font-weight: 700; margin-right: 0.45rem; }
.nile-blog-toc-list a { color: #0b1f3f; text-decoration: none; font-size: 0.92rem; }
.nile-blog-toc-list a:hover { color: #1e5aa8; }
.nile-blog-toc-card {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border: 1px solid #dbe7f7;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.nile-blog-toc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1f3f;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e8f0fb;
}
.nile-blog-article__related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; }
.nile-blog-article__related-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem;
}
.nile-blog-figure { margin: 1.5rem 0; }
.nile-blog-figure img { width: 100%; }
.nile-blog-figure figcaption { margin-top: 0.5rem; font-size: 0.85rem; color: #6b7280; text-align: center; }
.nile-blog-inline-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.25rem 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.nile-blog-table-wrap,
.nile-blog-table-card {
  width: 100%;
  max-width: 100%;
  margin: 1.75rem 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(30, 90, 168, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 14px 36px rgba(15, 61, 122, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
}

.nile-blog-table-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--nile-brand-orange) 0%, #f5a623 35%, var(--nile-brand-blue) 100%);
  border-radius: 16px 16px 0 0;
  z-index: 1;
}

.nile-blog-table-wrap .nile-blog-table {
  margin: 0;
  box-shadow: none;
}

.nile-blog-table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  margin: 0;
  font-size: clamp(0.72rem, 1.35vw, 0.86rem);
  line-height: 1.45;
  border-collapse: separate;
  border-spacing: 0;
  border: 0 !important;
  background: transparent;
}

.nile-blog-table thead {
  background: linear-gradient(135deg, #0f3d7a 0%, #1e5aa8 100%);
}

.nile-blog-table thead th {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.68rem, 1.25vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 0.78rem 0.62rem;
  border: 0 !important;
  border-bottom: 2px solid rgba(217, 85, 24, 0.9) !important;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.nile-blog-table thead th:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(255, 255, 255, 0.18);
}

.nile-blog-table tbody td,
.nile-blog-table tbody th {
  padding: 0.62rem 0.62rem;
  border: 0 !important;
  border-bottom: 1px solid #e6edf8 !important;
  color: #374151;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.nile-blog-table tbody tr:last-child td,
.nile-blog-table tbody tr:last-child th {
  border-bottom: 0 !important;
}

.nile-blog-table tbody tr:nth-child(even) {
  background: rgba(238, 244, 255, 0.42);
}

.nile-blog-table tbody tr:hover {
  background: rgba(30, 90, 168, 0.06);
}

.nile-blog-table tbody td:first-child,
.nile-blog-table tbody th:first-child {
  font-weight: 600;
  color: #0b1f3f;
  background: rgba(238, 244, 255, 0.72);
  border-right: 1px solid #dfe8f6 !important;
}

.nile-blog-table tfoot {
  background: linear-gradient(180deg, #eef3fb 0%, #e3ebf8 100%);
}

.nile-blog-table tfoot td,
.nile-blog-table tfoot th {
  padding: 0.72rem 0.62rem;
  font-weight: 700;
  color: #0b1f3f;
  font-size: clamp(0.68rem, 1.25vw, 0.82rem);
  border: 0 !important;
  border-top: 2px solid var(--nile-brand-blue) !important;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  vertical-align: middle;
}

.nile-blog-table tfoot tr:first-child td,
.nile-blog-table tfoot tr:first-child th {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nile-blog-table caption {
  caption-side: bottom;
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
  text-align: center;
  font-style: italic;
  background: #f8fafc;
  border-top: 1px dashed #dbe4f0;
}

.nile-blog-table.table > :not(caption) > * > * {
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .nile-blog-table {
    font-size: 0.72rem;
  }

  .nile-blog-table thead th,
  .nile-blog-table tfoot td,
  .nile-blog-table tfoot th,
  .nile-blog-table tbody td,
  .nile-blog-table tbody th {
    padding: 0.52rem 0.45rem;
  }
}

[dir='rtl'] .nile-blog-table tbody td:first-child,
[dir='rtl'] .nile-blog-table tbody th:first-child {
  border-right: 0 !important;
  border-left: 1px solid #dfe8f6 !important;
}

[dir='rtl'] .nile-blog-table thead th:not(:last-child)::after {
  right: auto;
  left: 0;
}
.blog-article-content ul,
.blog-article-content ol {
  margin: 1.1rem 0 1.35rem;
  padding-left: 0;
  list-style: none;
}
.blog-article-content ul li,
.blog-article-content ol li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  margin-bottom: 0.35rem;
  line-height: 1.7;
  color: #374151;
  border-bottom: 1px dashed #e8edf5;
}
.blog-article-content ul li:last-child,
.blog-article-content ol li:last-child { border-bottom: 0; }
.blog-article-content ul li::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e5aa8, #5bc0eb);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
}
.blog-article-content ol { counter-reset: blog-ol; }
.blog-article-content ol li { counter-increment: blog-ol; }
.blog-article-content ol li::before {
  content: counter(blog-ol);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #1e5aa8;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blog-article-content .mce-toc {
  display: none !important;
}

.blog-article-content .nile-blog-faq-section {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f4f8ff 100%);
  border: 1px solid #dbe7f7;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.blog-article-content .nile-blog-faq-section > h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.blog-article-content .nile-blog-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-article-content .nile-blog-faq-item {
  border: 1px solid #dbe7f7;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.blog-article-content .nile-blog-faq-item[open] {
  border-color: #b9d0f2;
}

.blog-article-content .nile-blog-faq-item__question {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  margin: 0;
  font-weight: 700;
  color: #0b1f3f;
  background: #f8fbff;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.blog-article-content .nile-blog-faq-item__question::-webkit-details-marker {
  display: none;
}

.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__question {
  background: #1e5aa8;
  color: #fff;
}

.blog-article-content .nile-blog-faq-item__num {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(30, 90, 168, 0.1);
  color: #1e5aa8;
}

.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__num {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.blog-article-content .nile-blog-faq-item__label {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.5;
  padding-inline-end: 0.5rem;
}

.blog-article-content .nile-blog-faq-item__toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  position: relative;
  background: rgba(30, 90, 168, 0.1);
}

.blog-article-content .nile-blog-faq-item__toggle::before,
.blog-article-content .nile-blog-faq-item__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 2px;
  background: #1e5aa8;
  transform: translate(-50%, -50%);
}

.blog-article-content .nile-blog-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__toggle {
  background: rgba(255, 255, 255, 0.16);
}

.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__toggle::before,
.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__toggle::after {
  background: #fff;
}

.blog-article-content .nile-blog-faq-item[open] .nile-blog-faq-item__toggle::after {
  display: none;
}

.blog-article-content .nile-blog-faq-item__answer {
  padding: 0 1.15rem 1.15rem;
  color: #4b5563;
  line-height: 1.8;
  border-top: 1px solid #e8f0fb;
}

.blog-article-content .nile-blog-faq-item__answer > *:first-child {
  margin-top: 1rem;
}

.blog-article-content .nile-blog-faq-item__answer > *:last-child {
  margin-bottom: 0;
}

[dir='rtl'] .blog-article-content .nile-blog-faq-item__question {
  text-align: right;
}
.blog-article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #1e5aa8;
  background: #f8fbff;
  border-radius: 0 12px 12px 0;
  color: #334155;
  font-style: italic;
}
.blog-article-content h2, .blog-article-content h3 { color: #0b1f3f; margin-top: 2rem; margin-bottom: 0.85rem; }
.blog-article-content h2 {
  font-size: 1.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid #e8f0fb;
  scroll-margin-top: 6rem;
}
.blog-article-content h3 {
  font-size: 1.15rem;
  color: #1e5aa8;
  scroll-margin-top: 6rem;
}
[dir='rtl'] .blog-article-content ul li,
[dir='rtl'] .blog-article-content ol li {
  padding: 0.55rem 2rem 0.55rem 0;
}
[dir='rtl'] .blog-article-content ul li::before {
  left: auto;
  right: 0.35rem;
}
[dir='rtl'] .blog-article-content ol li::before {
  left: auto;
  right: 0;
}
[dir='rtl'] .blog-article-content blockquote {
  border-left: 0;
  border-right: 4px solid #1e5aa8;
  border-radius: 12px 0 0 12px;
}
[dir='rtl'] .nile-blog-toc-list li::before {
  margin-right: 0;
  margin-left: 0.45rem;
}

.blog-article-content .nile-blog-inline-cta {
  position: relative;
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d7e6ff;
  background: linear-gradient(135deg, #0b1f3f 0%, #1e5aa8 58%, #5bc0eb 100%);
  box-shadow: 0 18px 40px rgba(11, 31, 63, 0.18);
}

.blog-article-content .nile-blog-inline-cta__glow {
  position: absolute;
  inset: -30% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(8px);
  pointer-events: none;
}

.blog-article-content .nile-blog-inline-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.35rem 1.4rem;
}

.blog-article-content .nile-blog-inline-cta__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.blog-article-content .nile-blog-inline-cta__content {
  min-width: 0;
  flex: 1;
}

.blog-article-content .nile-blog-inline-cta__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.35;
}

.blog-article-content .nile-blog-inline-cta__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.blog-article-content .nile-blog-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-article-content .nile-blog-inline-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.blog-article-content .nile-blog-inline-cta__btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.blog-article-content .nile-blog-inline-cta__btn--whatsapp:hover,
.blog-article-content .nile-blog-inline-cta__btn--whatsapp:focus {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.blog-article-content .nile-blog-inline-cta__btn--contact {
  background: #fff;
  color: #0b1f3f;
  border-color: #fff;
}

.blog-article-content .nile-blog-inline-cta__btn--contact:hover,
.blog-article-content .nile-blog-inline-cta__btn--contact:focus {
  background: #f3f8ff;
  color: #0b1f3f;
  border-color: #f3f8ff;
}

[dir='rtl'] .blog-article-content .nile-blog-inline-cta__inner {
  flex-direction: row-reverse;
  text-align: right;
}

[dir='rtl'] .blog-article-content .nile-blog-inline-cta__actions {
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .blog-article-content .nile-blog-inline-cta__inner {
    flex-direction: column;
  }

  .blog-article-content .nile-blog-inline-cta__actions {
    flex-direction: column;
  }

  .blog-article-content .nile-blog-inline-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .nile-blog-featured-banner {
    grid-template-columns: 1fr;
  }

  .nile-blog-featured-banner__image {
    min-height: 180px;
  }

  .nile-blog-article__panel {
    padding: 1.15rem 1rem;
  }
}

/* Performance: homepage hero uses dashboard image when provided */
.hero-sec-eight.nile-home-hero--has-bg {
  background-image: none !important;
  background-attachment: scroll !important;
}

.hero-sec-eight.nile-home-hero::after {
  background-attachment: scroll !important;
}

.hero-sec-eight.nile-home-hero--has-bg::after {
  background-image: none;
  background-color: rgba(15, 61, 122, 0.22);
  background-size: cover;
  background-position: center;
}

.hero-sec-eight--custom-bg::after {
  background-image: var(--nile-home-hero-bg);
}

.nile-home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
}

.nile-home-hero {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: clamp(620px, 88vh, 860px);
  padding: 7.5rem 0 4.5rem;
}

.nile-home-hero .animate-text {
  display: none;
}

.nile-home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.nile-home-hero__copy {
  text-align: center;
  margin-bottom: 1.75rem;
}

.nile-home-hero__title {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.nile-home-hero__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

.nile-home-hero-search,
.nile-home-hero__search {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

.nile-hero-search {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(15, 61, 122, 0.22);
  padding: 0.45rem;
  backdrop-filter: blur(8px);
}

.nile-hero-search__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.85fr) auto;
  gap: 0.35rem;
  align-items: stretch;
}

.nile-hero-search__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nile-hero-search__field:focus-within {
  background: #fff;
  border-color: rgba(30, 90, 168, 0.28);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.08);
}

.nile-hero-search__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.nile-hero-search__input,
.nile-hero-search__select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: none;
  outline: none;
}

.nile-hero-search__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.nile-hero-search__select {
  cursor: pointer;
  padding-right: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  appearance: none;
}

.nile-hero-search__price-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nile-hero-search__currency {
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
}

.nile-hero-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 168px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--nile-brand-blue) 0%, #0f3d7a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nile-hero-search__submit:hover,
.nile-hero-search__submit:focus {
  color: #fff;
  background: linear-gradient(135deg, #0f3d7a 0%, var(--nile-brand-blue) 100%);
  box-shadow: 0 12px 28px rgba(15, 61, 122, 0.28);
  transform: translateY(-1px);
}

.nile-hero-search__submit-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .nile-home-hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .nile-hero-search__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nile-hero-search__field:first-child {
    grid-column: 1 / -1;
  }

  .nile-hero-search__submit {
    grid-column: 1 / -1;
    min-height: 52px;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .nile-hero-search__grid {
    grid-template-columns: 1fr;
  }

  .nile-hero-search__field:first-child {
    grid-column: auto;
  }
}

[dir='rtl'] .nile-hero-search__select {
  padding-right: 0;
  padding-left: 1.25rem;
  background-position: left center;
}

[dir='rtl'] .nile-hero-search__price-wrap {
  flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
  .nile-home-hero .animate-button {
    display: none;
  }
}

.nile-img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  background: linear-gradient(135deg, #dbe4f0 0%, #c5d4e8 100%);
}

.nile-blog-card__media--empty,
.nile-blog-featured-banner__image--empty,
.article-img--empty {
  background: linear-gradient(135deg, #dbe4f0 0%, #c5d4e8 100%);
}

.nile-blog-card__media .nile-img-placeholder {
  min-height: 210px;
}

.article-img--empty .nile-img-placeholder {
  min-height: 420px;
}

.nile-about-cta--no-image {
  background: linear-gradient(135deg, #0f3d7a 0%, #1e5aa8 100%);
}

.nile-about-cta--no-image .nile-about-cta__shade {
  background: transparent;
}

.nile-subcategory-card__image--empty,
.nile-category-hero:not(:has(.nile-page-hero__media)) {
  background: linear-gradient(135deg, #0f3d7a 0%, #1e5aa8 100%);
}

.nile-cruise-detail-top {
  margin-bottom: 1.5rem;
}

.nile-cruise-detail-top + .nile-quick-facts {
  margin-top: 0;
}

.nile-contact-hero .nile-page-h1 {
  color: #fff;
}

/* Accessibility: slightly stronger contrast on small hint text (minimal visual change) */
.hero-sec-eight .banner-form .fs-12,
.nile-booking-field__hint,
.nile-smart-search__hint,
.nile-smart-search__option-text small {
  color: #5f6b7a;
}

/* ── Dropdown chevrons (Font Awesome removed) ── */
.dropdown-toggle::after,
.dropdown .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-inline-start: 0.45rem;
  margin-top: -0.12em;
  vertical-align: middle;
  border: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.dropup .dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 0.12em;
}

.dropend .dropdown-toggle::after {
  transform: rotate(-45deg);
}

.dropstart .dropdown-toggle::before {
  content: '';
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-inline-end: 0.45rem;
  vertical-align: middle;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  font-family: inherit !important;
}

/* ── Header lang/currency dropdown readability ── */
.header-topbar .dropdown-menu,
header.header-eight .dropdown-menu,
.offcanvas-detail .dropdown-menu {
  color: #334155;
  min-width: 9.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.header-topbar .dropdown-menu .dropdown-item,
header.header-eight .dropdown-menu .dropdown-item,
.offcanvas-detail .dropdown-menu .dropdown-item {
  color: #334155 !important;
  font-weight: 500;
}

.header-topbar .dropdown-menu .dropdown-item:hover,
.header-topbar .dropdown-menu .dropdown-item:focus,
header.header-eight .dropdown-menu .dropdown-item:hover,
header.header-eight .dropdown-menu .dropdown-item:focus,
.offcanvas-detail .dropdown-menu .dropdown-item:hover,
.offcanvas-detail .dropdown-menu .dropdown-item:focus {
  color: #fff !important;
  background-color: var(--nile-brand-orange, #d95518) !important;
}

.header-topbar .dropdown-menu .dropdown-item.active,
header.header-eight .dropdown-menu .dropdown-item.active,
.offcanvas-detail .dropdown-menu .dropdown-item.active {
  color: #0f172a !important;
  background-color: #f1f5f9 !important;
  font-weight: 700;
}

.header-topbar .dropdown-menu button.dropdown-item,
header.header-eight .dropdown-menu button.dropdown-item {
  width: 100%;
  text-align: start;
  border: 0;
  background: transparent;
}

/* ── Global modern select styling ── */
:root {
  --nile-select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
}

select,
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 2.75rem;
  padding: 0.65rem 2.25rem 0.65rem 1rem;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background-color: #fff;
  background-image: var(--nile-select-arrow);
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  color: #0f172a;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

select:hover,
.form-select:hover {
  border-color: #b8c9de;
}

select:focus,
.form-select:focus {
  border-color: rgba(30, 90, 168, 0.45);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
  outline: 0;
}

select:disabled,
.form-select:disabled {
  background-color: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}

[dir='rtl'] select,
[dir='rtl'] .form-select {
  padding-right: 1rem;
  padding-left: 2.25rem;
  background-position: left 0.9rem center;
}

/* Filter bars & banner forms */
.banner-form select,
.banner-form .form-select,
.nile-cruise-filter select,
.nile-cruise-filter .form-select,
.nile-smart-search select,
.nile-smart-search .form-select {
  background-color: #f8fafc;
}

.banner-form select:focus,
.banner-form .form-select:focus,
.nile-cruise-filter select:focus,
.nile-cruise-filter .form-select:focus {
  background-color: #fff;
}

/* Hero search keeps its inline field styling */
.nile-hero-search__select {
  min-height: 1.75rem;
  padding: 0;
  padding-right: 1.25rem;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.nile-hero-search__select:focus {
  box-shadow: none;
}

[dir='rtl'] .nile-hero-search__select {
  padding-right: 0;
  padding-left: 1.25rem;
}

/* ── Custom select dropdown (replaces native open list) ── */
.nile-select {
  position: relative;
  width: 100%;
}

.nile-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  display: none !important;
}

.nile-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: start;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nile-select__trigger:hover {
  border-color: #b8c9de;
}

.nile-select.is-open .nile-select__trigger,
.nile-select__trigger:focus-visible {
  border-color: rgba(30, 90, 168, 0.45);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
  outline: 0;
}

.nile-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nile-select__arrow {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  margin-top: -0.18rem;
  transition: transform 0.2s ease;
}

.nile-select.is-open .nile-select__arrow {
  transform: rotate(-135deg);
  margin-top: 0.12rem;
}

.nile-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10050;
  min-width: 100%;
  width: max(100%, 240px);
  padding: 0.4rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nile-select__menu.is-above {
  top: auto;
  bottom: calc(100% + 6px);
}

.nile-select__menu.is-fixed {
  position: fixed;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  min-width: 0;
  width: auto;
}

.nile-select__menu.is-fixed.is-above {
  bottom: auto;
}

.nile-select__group-label {
  padding: 0.45rem 0.75rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.nile-select__option {
  display: block;
  width: 100%;
  padding: 0.68rem 0.8rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: start;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.nile-select__option:hover,
.nile-select__option:focus-visible {
  background: #f1f5f9;
  color: #0f172a;
  outline: 0;
}

.nile-select__option.is-selected {
  background: #eff6ff;
  color: #0f3d7a;
  font-weight: 700;
}

.nile-select__option.is-selected:hover,
.nile-select__option.is-selected:focus-visible {
  background: var(--nile-brand-blue, #1e5aa8);
  color: #fff;
}

.nile-select__option.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.nile-select.is-disabled .nile-select__trigger {
  opacity: 0.65;
  cursor: not-allowed;
}

.nile-select.is-invalid .nile-select__trigger {
  border-color: #dc3545;
}

.nile-select.is-invalid.is-open .nile-select__trigger,
.nile-select.is-invalid .nile-select__trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.nile-select--inline .nile-select__trigger {
  min-height: 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nile-select--inline.is-open .nile-select__trigger,
.nile-select--inline .nile-select__trigger:focus-visible {
  box-shadow: none;
}

.nile-select--inline .nile-select__menu {
  border-radius: 10px;
  min-width: 12rem;
}

.nile-hero-search__field .nile-select {
  width: 100%;
  position: relative;
  z-index: 1;
}

.nile-hero-search__field:focus-within,
.nile-select.is-open {
  z-index: 4;
}

.nile-hero-search__grid:has(.nile-select.is-open) {
  position: relative;
  z-index: 5;
}

.nile-plan-trip-form .nile-select__trigger {
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid #d7dee8;
  border-color: #d7dee8;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  padding: 0.55rem 0.9rem;
  box-shadow: none;
}

.nile-plan-trip-form .nile-select.is-open .nile-select__trigger,
.nile-plan-trip-form .nile-select__trigger:focus-visible {
  border-color: #1e5aa8;
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.12);
}

.nile-plan-trip-form .nile-select--booking {
  border: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.nile-plan-trip-form .nile-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  min-width: 0;
}

.nile-plan-trip-form select.nile-booking-select.nile-select-native,
.nile-plan-trip-form select.nile-select-native {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  background: transparent !important;
  background-image: none !important;
  appearance: none !important;
}

.nile-plan-trip-form .nile-select__menu {
  z-index: 11000;
  max-width: min(420px, calc(100vw - 24px));
}

.banner-form .nile-select__trigger,
.nile-cruise-filter .nile-select__trigger,
.nile-tailor-form .nile-select__trigger {
  background: #f8fafc;
}

.banner-form .nile-select.is-open .nile-select__trigger,
.nile-cruise-filter .nile-select.is-open .nile-select__trigger,
.nile-tailor-form .nile-select.is-open .nile-select__trigger {
  background: #fff;
}

[dir='rtl'] .nile-select__trigger {
  text-align: right;
}

[dir='rtl'] .nile-select__option {
  text-align: right;
}


/* Partner banners above footer — side-by-side pair */
.nile-partner-banners {
  padding: 2.75rem 0 1.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(30, 90, 168, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(217, 85, 24, 0.06), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

.nile-partner-banners__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.nile-partner-banners__row--pair {
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
}

.nile-partner-banners__cell {
  min-width: 0;
  display: flex;
}

.nile-partner-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.35rem;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  min-height: clamp(260px, 30vw, 380px);
  width: 100%;
  height: 100%;
  box-shadow: 0 18px 48px rgba(11, 31, 63, 0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.nile-partner-banner:hover,
.nile-partner-banner:focus-within {
  box-shadow: 0 28px 60px rgba(11, 31, 63, 0.2);
}

.nile-partner-banner--primary {
  background: linear-gradient(135deg, #0b1f3f 0%, #1e5aa8 55%, #0f3d7a 100%);
}

.nile-partner-banner--secondary {
  background: linear-gradient(145deg, #16365f 0%, #2a6fad 100%);
}

.nile-partner-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 1.1s ease;
}

.nile-partner-banner:hover .nile-partner-banner__media,
.nile-partner-banner:focus-visible .nile-partner-banner__media {
  transform: scale(1.08);
}

.nile-partner-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 22, 46, 0.88) 0%, rgba(8, 22, 46, 0.55) 48%, rgba(8, 22, 46, 0.28) 100%);
}

.nile-partner-banner--secondary .nile-partner-banner__shade {
  background:
    linear-gradient(180deg, rgba(10, 28, 55, 0.72) 0%, rgba(10, 28, 55, 0.55) 45%, rgba(10, 28, 55, 0.8) 100%);
}

.nile-partner-banner__glow {
  position: absolute;
  width: 48%;
  height: 90%;
  right: -8%;
  top: 5%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 68%);
  opacity: 0.75;
  animation: nile-partner-glow 7s ease-in-out infinite alternate;
}

.nile-partner-banner--secondary .nile-partner-banner__glow {
  width: 55%;
  height: 60%;
  right: -10%;
  top: -5%;
  opacity: 0.4;
  animation-duration: 9s;
}

@keyframes nile-partner-glow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  to { transform: translate3d(-4%, 3%, 0) scale(1.08); opacity: 0.85; }
}

.nile-partner-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.nile-partner-banner__cta,
a.nile-partner-banner__logo-wrap {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.nile-partner-banner--secondary .nile-partner-banner__content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.nile-partner-banner__copy {
  max-width: 36rem;
}

.nile-partner-banner--secondary .nile-partner-banner__copy {
  max-width: 100%;
}

.nile-partner-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.nile-partner-banner--primary .nile-partner-banner__eyebrow {
  background: rgba(217, 85, 24, 0.22);
  border-color: rgba(255, 196, 154, 0.45);
}

.nile-partner-banner__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.nile-partner-banner--secondary .nile-partner-banner__title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.nile-partner-banner__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.6;
  max-width: 34rem;
}

.nile-partner-banner__text p {
  margin: 0 0 0.55rem;
  color: inherit;
}

.nile-partner-banner__text p:last-child {
  margin-bottom: 0;
}

.nile-partner-banner__text ul,
.nile-partner-banner__text ol {
  margin: 0.45rem 0 0.65rem;
  padding: 0;
  list-style: none;
}

.nile-partner-banner__text ul li,
.nile-partner-banner__text ol li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.45rem;
  margin: 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.nile-partner-banner__text ul li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.nile-partner-banner__text ol {
  counter-reset: partner-ol;
}

.nile-partner-banner__text ol li {
  padding-left: 1.7rem;
}

.nile-partner-banner__text ol li::before {
  counter-increment: partner-ol;
  content: counter(partner-ol);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.nile-partner-banner__text,
.nile-partner-banner__text p,
.nile-partner-banner__text li,
.nile-partner-banner__text span {
  text-decoration: none;
}

.nile-partner-banner__text strong,
.nile-partner-banner__text b {
  color: #fff;
  font-weight: 700;
}

.nile-partner-banner--secondary .nile-partner-banner__text {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  max-width: 100%;
}

.nile-partner-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  color: #0b1f3f;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nile-partner-banner__cta:hover,
.nile-partner-banner__cta:focus-visible {
  color: #0b1f3f;
  text-decoration: none;
  transform: translateX(4px);
}

.nile-partner-banner--primary .nile-partner-banner__cta {
  background: var(--nile-brand-orange, #d95518);
  color: #fff;
}

.nile-partner-banner--secondary .nile-partner-banner__cta {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.nile-partner-banner--linked:hover .nile-partner-banner__cta,
.nile-partner-banner--linked:focus-within .nile-partner-banner__cta {
  transform: translateX(4px);
}

.nile-partner-banner__logo-wrap {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(100px, 14vw, 160px);
  min-height: clamp(68px, 10vw, 100px);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  animation: nile-partner-logo-in 0.8s ease both;
}

.nile-partner-banner--secondary .nile-partner-banner__logo-wrap {
  width: clamp(78px, 10vw, 112px);
  min-height: clamp(54px, 8vw, 72px);
  padding: 0.6rem 0.7rem;
}

.nile-partner-banner__logo {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nile-partner-banner--secondary .nile-partner-banner__logo {
  max-height: 46px;
}

@keyframes nile-partner-logo-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991.98px) {
  .nile-partner-banners__row--pair {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  .nile-partner-banners {
    padding: 1.75rem 0 0.75rem;
  }

  .nile-partner-banners__row--pair {
    grid-template-columns: 1fr;
  }

  .nile-partner-banner {
    min-height: 250px;
  }

  .nile-partner-banner--primary {
    min-height: 290px;
  }

  .nile-partner-banner__content,
  .nile-partner-banner--secondary .nile-partner-banner__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nile-partner-banner,
  .nile-partner-banner__media,
  .nile-partner-banner__glow,
  .nile-partner-banner__logo-wrap,
  .nile-partner-banner__cta {
    animation: none !important;
    transition: none !important;
  }
}

/* —— 404 error page —— */
body.nile-error-page .nile-partner-banners {
  display: none;
}

.nile-error-404 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 0 5rem;
  background: var(--nile-brand-blue-dark);
  color: #fff;
}

.nile-error-404__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.08);
  animation: nile-error-404-kenburns 22s ease-in-out infinite alternate;
}

.nile-error-404__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(11, 31, 63, 0.82) 0%, rgba(15, 61, 122, 0.72) 45%, rgba(30, 90, 168, 0.55) 100%),
    linear-gradient(0deg, rgba(11, 31, 63, 0.55) 0%, transparent 42%);
}

.nile-error-404__glow {
  position: absolute;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  border-radius: 50%;
  top: 18%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(91, 192, 235, 0.28) 0%, rgba(217, 85, 24, 0.12) 42%, transparent 70%);
  animation: nile-error-404-pulse 6s ease-in-out infinite;
}

.nile-error-404__waves {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.nile-error-404__wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 140%;
  opacity: 0.22;
  background:
    radial-gradient(120% 80% at 20% 100%, transparent 42%, rgba(91, 192, 235, 0.45) 43%, transparent 44%),
    radial-gradient(120% 80% at 55% 100%, transparent 40%, rgba(255, 255, 255, 0.22) 41%, transparent 42%),
    radial-gradient(120% 80% at 85% 100%, transparent 38%, rgba(217, 85, 24, 0.28) 39%, transparent 40%);
  animation: nile-error-404-wave 10s linear infinite;
}

.nile-error-404__wave--1 { bottom: -35%; animation-duration: 11s; }
.nile-error-404__wave--2 { bottom: -48%; opacity: 0.16; animation-duration: 15s; animation-direction: reverse; }
.nile-error-404__wave--3 { bottom: -62%; opacity: 0.12; animation-duration: 19s; }

.nile-error-404__inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  text-align: center;
}

.nile-error-404__brand {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  animation: nile-error-404-rise 0.8s ease both;
}

.nile-error-404__code {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.08em;
  margin: 0 0 0.35rem;
  font-size: clamp(5.5rem, 18vw, 9.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: nile-error-404-float 5.5s ease-in-out infinite;
}

.nile-error-404__code span {
  display: inline-block;
}

.nile-error-404__code-mid {
  color: var(--nile-brand-orange);
  transform: translateY(-0.06em);
}

.nile-error-404__title {
  margin: 0.35rem 0 0.85rem;
  color: #fff !important;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  animation: nile-error-404-rise 0.9s ease 0.12s both;
}

.nile-error-404__text {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  animation: nile-error-404-rise 0.95s ease 0.2s both;
}

.nile-error-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.9rem;
  animation: nile-error-404-rise 1s ease 0.28s both;
}

.nile-error-404__btn {
  min-width: 11.5rem;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  border-radius: 0.55rem;
}

.nile-error-404__btn--ghost {
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.nile-error-404__btn--ghost:hover,
.nile-error-404__btn--ghost:focus {
  background: #fff !important;
  color: var(--nile-brand-blue-dark) !important;
  border-color: #fff !important;
}

@keyframes nile-error-404-kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

@keyframes nile-error-404-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes nile-error-404-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, 0) scale(1); }
  50% { opacity: 1; transform: translate(-50%, 4%) scale(1.08); }
}

@keyframes nile-error-404-wave {
  from { transform: translateX(0); }
  to { transform: translateX(-8%); }
}

@keyframes nile-error-404-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .nile-error-404 {
    min-height: calc(100vh - 4rem);
    padding: 6.25rem 0 3.5rem;
  }

  .nile-error-404__btn {
    min-width: 100%;
  }

  .nile-error-404__actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nile-error-404__bg,
  .nile-error-404__glow,
  .nile-error-404__wave,
  .nile-error-404__code,
  .nile-error-404__brand,
  .nile-error-404__title,
  .nile-error-404__text,
  .nile-error-404__actions {
    animation: none !important;
  }

  .nile-error-404__bg {
    transform: none;
  }
}

/* —— Mobile navigation polish —— */
.header-eight {
  margin-top: 8px;
}

.header-eight .header-nav .main-menu-wrapper {
  padding: 3px 16px !important;
  min-height: 64px !important;
  align-items: center;
}

.header-eight .header-logo .nile-brand-logo,
header.header-eight .logo-white .nile-brand-logo,
header.header-eight.fixed .logo-white .nile-brand-logo,
header.header-eight.is-scrolled .logo-white .nile-brand-logo {
  width: auto !important;
  max-width: 220px !important;
  height: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
}

.header-eight .header-nav .main-menu-wrapper .main-nav > li > a {
  padding: 4px 12px !important;
  font-size: 0.9rem;
  line-height: 1.2;
}

.header-eight .header-btn .btn,
.header-eight .header-btn .nile-nav-hot-deals {
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
  font-size: 0.85rem;
  line-height: 1.2;
}

.header-eight .header__hamburger .sidebar-menu {
  font-size: 22px;
  line-height: 1;
  padding: 4px;
}

@media (max-width: 1199.98px) {
  .header-eight {
    margin-top: 6px;
  }

  .header-eight .header-nav .main-menu-wrapper {
    padding: 2px 12px !important;
    min-height: 56px !important;
  }

  .header-eight .header-logo .nile-brand-logo,
  header.header-eight .logo-white .nile-brand-logo,
  header.header-eight.fixed .logo-white .nile-brand-logo,
  header.header-eight.is-scrolled .logo-white .nile-brand-logo {
    width: auto !important;
    max-width: 170px !important;
    height: 48px !important;
    max-height: 48px !important;
  }
}

/* Keep meanmenu links visible — only hide the default mean reveal button */
.mean-container .mean-bar {
  background: transparent !important;
  min-height: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav {
  float: none !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  background: var(--nile-brand-blue-dark) !important;
  border-radius: 12px;
  overflow: hidden;
}

.mean-container .mean-nav > ul {
  display: block !important;
  float: none !important;
  width: 100% !important;
}

.mean-container .mean-nav ul li {
  float: none !important;
  width: 100% !important;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.mean-container .mean-nav ul li:last-child {
  border-bottom: 0 !important;
}

.mean-container .mean-nav > ul > li > a {
  float: none !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  padding: 14px 52px 14px 16px !important;
  border: 0 !important;
  text-shadow: none !important;
  position: relative !important;
  z-index: 1 !important;
}

.mean-container .mean-nav ul li.active > a {
  color: #ffb08a !important;
}

.mean-container .mean-nav ul li li a,
.mean-container .mean-nav ul li .submenu li a {
  float: none !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(0, 0, 0, 0.18) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  padding: 12px 16px 12px 24px !important;
  border: 0 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.mean-container .mean-nav ul li a.mean-expand {
  float: none !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 52px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 0 !important;
  z-index: 40 !important;
  font-size: 16px !important;
  pointer-events: auto !important;
  text-indent: 0 !important;
  overflow: visible !important;
}

.mean-container .mean-nav ul li a.mean-expand i {
  font-size: 16px;
  line-height: 1;
}

.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand,
.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  background: rgba(217, 85, 24, 0.9) !important;
}

[dir="rtl"] .mean-container .mean-nav > ul > li > a {
  padding: 14px 16px 14px 52px !important;
}

[dir="rtl"] .mean-container .mean-nav ul li a.mean-expand {
  right: auto !important;
  left: 0 !important;
}

.offcanvas-info {
  width: min(100vw - 2rem, 340px);
}

.offcanvas-wrap {
  padding: 16px !important;
}

.offcanvas-info .mobile-menu {
  margin-bottom: 1rem !important;
}

/* ── Cruise offer cards (competitor-style clear facts + gallery) ── */
.nile-offer-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  overflow: hidden;
  color: var(--nile-heading-color, #0b1f3f);
}

.nile-offer-card__media,
.nile-offer-card .nile-card-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e5e7eb;
}

.nile-offer-card__single-img {
  display: block;
  width: 100%;
  height: 100%;
}

.nile-offer-card__media img,
.nile-offer-card .nile-card-gallery img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.nile-card-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nile-card-gallery__track::-webkit-scrollbar {
  display: none;
}

.nile-card-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.nile-card-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nile-heading-color, #0b1f3f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nile-offer-card__media:hover .nile-card-gallery__nav,
.nile-card-gallery:focus-within .nile-card-gallery__nav {
  opacity: 1;
}

.nile-card-gallery__nav--prev {
  left: 10px;
}

.nile-card-gallery__nav--next {
  right: 10px;
}

[dir="rtl"] .nile-card-gallery__nav--prev {
  left: auto;
  right: 10px;
}

[dir="rtl"] .nile-card-gallery__nav--next {
  right: auto;
  left: 10px;
}

.nile-card-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.nile-card-gallery__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.nile-card-gallery__dot.is-active {
  background: #fff;
  width: 18px;
}

.nile-offer-card__media-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.nile-offer-card__media-top > * {
  pointer-events: auto;
}

.nile-offer-card__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 48px);
  pointer-events: none;
}

.nile-offer-card__badges .nile-badge-trending {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.38rem 0.7rem;
  border-radius: 6px;
  line-height: 1.15;
  box-shadow: 0 6px 14px rgba(11, 31, 63, 0.28);
}

.nile-offer-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1.15rem 1.25rem;
}

.nile-offer-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--nile-heading-color, #0b1f3f);
}

.nile-offer-card__title a {
  color: inherit;
  text-decoration: none;
}

.nile-offer-card__title a:hover {
  color: var(--nile-brand-orange, #d95518);
}

.nile-offer-card__price {
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.nile-offer-card__price-label {
  color: #6b7c93;
  font-size: 0.92rem;
}

.nile-offer-card__price-was {
  color: #9aa8ba;
  font-size: 0.9rem;
  text-decoration: line-through;
}

.nile-offer-card__price-value {
  color: var(--nile-brand-orange, #d95518);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.nile-offer-card__facts {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.nile-offer-card__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  color: #31445e;
  font-size: 0.92rem;
  line-height: 1.4;
}

.nile-offer-card__facts i {
  color: var(--nile-brand-orange, #d95518);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.nile-offer-card__excerpt {
  margin: 0 0 1rem;
  color: #6b7c93;
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nile-offer-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--nile-brand-orange, #d95518);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.nile-offer-card__cta:hover {
  background: var(--nile-brand-orange-dark, #b84712);
  color: #fff !important;
}

.trending-list .nile-offer-card,
.recommended-sec .nile-offer-card,
.cruise-listing-page .nile-offer-card,
.cruise-category-page .nile-offer-card {
  height: 100%;
}


/* ===== Services / Book with Confidence / Why Book ===== */
.nile-services-intro__eyebrow,
.nile-trust-awards__eyebrow,
.nile-trust-feedback__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(11, 31, 63, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b6b82;
  margin-bottom: 0.85rem;
  background: #fff;
}

.nile-services-intro__text,
.nile-confidence-intro__text,
.nile-trust-awards__text {
  color: #5b6b82;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.nile-services-intro__cards {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.nile-services-intro__stack {
  flex: 1;
  min-height: 160px;
}

.nile-services-intro__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(30, 90, 168, 0.18);
  box-shadow: 0 10px 30px rgba(11, 31, 63, 0.06);
}

.nile-services-intro__card.is-active {
  border-color: var(--nile-brand-blue-light, #5bc0eb);
}

.nile-services-intro__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 90, 168, 0.25);
  color: var(--nile-brand-blue, #1e5aa8);
  flex-shrink: 0;
}

.nile-services-intro__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nile-brand-blue, #1e5aa8);
  margin-bottom: 0.35rem;
}

.nile-services-intro__card p {
  margin: 0;
  color: #5b6b82;
  font-size: 0.92rem;
}

.nile-services-intro__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

.nile-circle-btn,
.nile-services-intro__nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 63, 0.15);
  background: #fff;
  color: #0b1f3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nile-circle-btn.is-primary,
.nile-services-intro__nav-btn.is-primary {
  background: var(--nile-brand-blue, #1e5aa8);
  border-color: var(--nile-brand-blue, #1e5aa8);
  color: #fff;
}

.nile-service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 63, 0.08);
  box-shadow: 0 12px 28px rgba(11, 31, 63, 0.06);
}

.nile-service-card__media {
  aspect-ratio: 16 / 11;
  background: #e8eef6;
}

.nile-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nile-service-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.nile-service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nile-heading-color, #0b1f3f);
  margin: 0;
}

.nile-service-card__excerpt {
  color: #5b6b82;
  margin: 0;
  flex: 1;
}

.nile-service-card__link {
  color: var(--nile-brand-blue, #1e5aa8);
  font-weight: 700;
  text-decoration: none;
}

.nile-confidence-highlight {
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: #f5f8fc;
  border: 1px solid rgba(30, 90, 168, 0.1);
}

.nile-confidence-highlight__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--nile-brand-blue, #1e5aa8);
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(11, 31, 63, 0.08);
}

.nile-confidence-highlight h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nile-confidence-highlight p {
  margin: 0;
  color: #5b6b82;
}

.nile-why-book-circle {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(91,192,235,.16), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(240,199,94,.12), transparent 30%),
    linear-gradient(145deg, #0b3d5c 0%, #0a4f6e 42%, #0d6e78 100%);
  color: #fff;
  padding: 4.75rem 0 5rem;
}
.nile-why-book-circle__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.05), transparent 30%);
  pointer-events: none;
}
.nile-why-book-circle__header {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  background: transparent;
  box-shadow: none;
  width: auto;
  left: auto;
  top: auto;
}
.nile-why-book-circle__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: .42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.2;
}
.nile-why-book-circle__title {
  margin: 0 0 .85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.02em;
}
.nile-why-book-circle__subtitle {
  margin: 0 auto;
  max-width: 34rem;
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
}
.nile-why-book-circle__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px) 1fr;
  gap: 1.35rem 1.5rem;
  align-items: center;
}
.nile-why-book-circle__point {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease, background .2s ease, border-color .2s ease;
}
.nile-why-book-circle__point.is-inview {
  opacity: 1;
  transform: none;
}
.nile-why-book-circle__point:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.nile-why-book-circle__col--left .nile-why-book-circle__point {
  flex-direction: row-reverse;
  text-align: right;
}
.nile-why-book-circle__num {
  flex-shrink: 0;
  min-width: 2.1rem;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  color: #f0c75e;
  letter-spacing: -.02em;
}
.nile-why-book-circle__copy h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  color: #fff;
}
.nile-why-book-circle__copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.55;
}
.nile-why-book-circle__media {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .6s ease, transform .6s ease;
}
.nile-why-book-circle__media.is-inview {
  opacity: 1;
  transform: none;
}
.nile-why-book-circle__stage {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.nile-why-book-circle__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.nile-why-book-circle__ring--outer {
  inset: -4%;
  border-color: rgba(240,199,94,.35);
  animation: nileWhyOrbPulse 4.8s ease-in-out infinite;
}
.nile-why-book-circle__ring--inner {
  inset: 3%;
  border-color: rgba(255,255,255,.28);
}
.nile-why-book-circle__orb {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.42);
  box-shadow:
    0 0 0 10px rgba(255,255,255,.06),
    0 24px 56px rgba(0,0,0,.32);
}
.nile-why-book-circle__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes nileWhyOrbPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.035); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nile-why-book-circle__ring--outer { animation: none; }
  .nile-why-book-circle__point,
  .nile-why-book-circle__media {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.nile-why-book-banner {
  padding: 1.5rem 0 0;
}

.nile-why-book-banner--nested {
  padding: 1.75rem 0 0;
}

.nile-why-book-banner__shell {
  background: linear-gradient(135deg, #0f3d7a 0%, #123f6d 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px rgba(11, 31, 63, 0.22);
}

.nile-why-book-banner__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.nile-why-book-banner__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.45rem;
}

.nile-why-book-banner__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  margin: 0;
}

.nile-why-book-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.nile-why-book-banner__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.nile-why-book-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #f0c75e;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.nile-why-book-banner__item-title {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.nile-why-book-banner__item-text {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.nile-trust-awards {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(30,90,168,.08), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(240,199,94,.08), transparent 26%),
    linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
  padding: 4.5rem 0;
}
.nile-trust-awards__intro {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.nile-trust-awards__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(11,31,63,.14);
  border-radius: 999px;
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6b82;
  line-height: 1.2;
}
.nile-trust-awards__heading {
  margin: 0 0 .75rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0b1f3f;
  letter-spacing: -.02em;
}
.nile-trust-awards__lead {
  margin: 0;
  color: #5b6b82;
  line-height: 1.65;
  font-size: 1.02rem;
}
.nile-trust-awards__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.nile-trust-awards__count {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  color: #7a8699;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nile-trust-awards__nav {
  display: flex;
  gap: .55rem;
}
.nile-trust-awards__track {
  overflow: hidden;
}
.nile-trust-awards__row {
  display: flex;
  gap: 1.25rem;
  transition: transform .45s ease;
  will-change: transform;
}
.nile-trust-awards__card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(15,61,122,.07);
  box-shadow: 0 16px 36px rgba(11,31,63,.09);
  display: flex;
  flex-direction: column;
}
.nile-trust-awards__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0b1f3f;
}
.nile-trust-awards__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .5s ease;
}
.nile-trust-awards__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 1.5rem;
  background: linear-gradient(165deg, #fff 0%, #f5f8fc 100%);
}
.nile-trust-awards__card:hover .nile-trust-awards__media-img {
  transform: scale(1.08);
}
.nile-trust-awards__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,31,63,.45) 100%);
  pointer-events: none;
}
.nile-trust-awards__card:has(.nile-trust-awards__logo-img) .nile-trust-awards__media-shade {
  display: none;
}
.nile-trust-awards__chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0c75e 0%, #d4a017 100%);
  color: #0b1f3f;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(0,0,0,.2);
}
.nile-trust-awards__body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nile-trust-awards__body h3 {
  margin: 0 0 .55rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b1f3f;
  line-height: 1.3;
}
.nile-trust-awards__body p {
  margin: 0;
  color: #5b6b82;
  line-height: 1.6;
  font-size: .95rem;
  flex: 1;
}
.nile-trust-awards__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--nile-brand-blue, #1e5aa8);
  font-weight: 700;
  text-decoration: none;
}
.nile-trust-awards__dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.25rem;
}
.nile-trust-awards__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(15,61,122,.2);
  transition: background .2s ease, transform .2s ease;
}
.nile-trust-awards__dot.is-active {
  background: var(--nile-brand-blue, #1e5aa8);
  transform: scale(1.2);
}
@media (max-width: 1099.98px) {
  .nile-trust-awards__card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 991.98px) {
  .nile-trust-awards {
    padding: 3.25rem 0;
  }
}
@media (max-width: 767.98px) {
  .nile-trust-awards__card {
    flex: 0 0 88%;
  }
}

.nile-trust-feedback__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin: 0 0 1.35rem;
  padding: .85rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,61,122,.08);
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px rgba(11,31,63,.07);
}
.nile-trust-feedback__rail--on-wall {
  background: rgba(255,255,255,.94);
}
.nile-reviews-wall .nile-trust-feedback__rail--on-wall {
  max-width: 100%;
}
.nile-trust-feedback__rail-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  padding: .55rem .7rem;
  border-radius: .9rem;
  text-decoration: none;
  color: inherit;
  background: #f7fafc;
  transition: background .2s ease, transform .2s ease;
}
a.nile-trust-feedback__rail-item:hover {
  background: #eef4ff;
  transform: translateY(-1px);
}
.nile-trust-feedback__rail-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 6px 14px rgba(11,31,63,.08);
  font-weight: 800;
}
.nile-trust-feedback__rail-item--tripadvisor .nile-trust-feedback__rail-mark {
  background: #0a3d2e;
  color: #34e0a1;
}
.nile-trust-feedback__rail-item--tripadvisor .nile-trust-feedback__rail-mark svg {
  width: 18px;
  height: 18px;
}
.nile-trust-feedback__rail-item--google .nile-trust-feedback__rail-mark svg {
  width: 18px;
  height: 18px;
}
.nile-trust-feedback__rail-item--trustpilot .nile-trust-feedback__rail-mark {
  background: #00b67a;
  color: #fff;
}
.nile-trust-feedback__rail-item--wetravel .nile-trust-feedback__rail-mark {
  background: #0d9488;
  color: #fff;
}
.nile-trust-feedback__rail-copy {
  min-width: 0;
  display: grid;
  gap: .05rem;
}
.nile-trust-feedback__rail-copy strong {
  font-size: .9rem;
  font-weight: 800;
  color: #0b1f3f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nile-trust-feedback__rail-copy small {
  color: #7a8699;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  .nile-trust-feedback__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .nile-trust-feedback__rail {
    grid-template-columns: 1fr;
  }
}

.nile-trust-feedback {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(30,90,168,.07), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(13,110,120,.08), transparent 28%),
    linear-gradient(180deg, #f5f8fc 0%, #eef3f9 55%, #f7fafc 100%);
  padding: 4.5rem 0;
}
.nile-trust-feedback__intro {
  max-width: 44rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.nile-trust-feedback__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(11,31,63,.14);
  border-radius: 999px;
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6b82;
  line-height: 1.2;
}
.nile-trust-feedback__heading {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0b1f3f;
  letter-spacing: -.02em;
}
.nile-trust-feedback__platforms {
  display: none;
}
.nile-trust-videos {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(240,199,94,.12), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(30,90,168,.1), transparent 30%),
    linear-gradient(165deg, #0b1f3f 0%, #0f3d7a 42%, #0d5a6e 100%);
  color: #fff;
}
.nile-trust-videos__glow {
  position: absolute;
  inset: auto -10% -30% 40%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(91,192,235,.12);
  filter: blur(20px);
  pointer-events: none;
}
.nile-trust-videos__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.nile-trust-videos__eyebrow {
  display: inline-flex;
  margin: 0 0 .85rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.nile-trust-videos__heading {
  margin: 0 0 .65rem;
  max-width: 36rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -.02em;
}
.nile-trust-videos__lead {
  margin: 0;
  max-width: 32rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-size: .98rem;
}
.nile-trust-videos__actions {
  display: flex;
  gap: .6rem;
  align-items: center;
}
.nile-trust-videos__yt {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.nile-trust-videos__yt:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.nile-trust-videos__yt svg {
  width: 18px;
  height: 18px;
}
.nile-trust-videos__rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}
.nile-story-card {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.nile-story-card:disabled {
  cursor: not-allowed;
  opacity: .7;
}
.nile-story-card__stage {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 1.55rem;
  overflow: hidden;
  background: #071225;
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
  outline: 2px solid rgba(240,199,94,.55);
  outline-offset: 3px;
  transition: transform .28s ease, outline-color .28s ease, box-shadow .28s ease;
}
.nile-story-card:nth-child(2) .nile-story-card__stage { outline-color: rgba(91,192,235,.55); }
.nile-story-card:nth-child(3) .nile-story-card__stage { outline-color: rgba(255,255,255,.35); }
.nile-story-card:nth-child(4) .nile-story-card__stage { outline-color: rgba(217,85,24,.45); }
.nile-story-card:hover .nile-story-card__stage,
.nile-story-card:focus-visible .nile-story-card__stage {
  transform: translateY(-6px) scale(1.02);
  outline-color: #f0c75e;
  box-shadow: 0 28px 56px rgba(0,0,0,.34);
}
.nile-story-card__progress {
  position: absolute;
  top: .7rem;
  left: .7rem;
  right: .7rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .28rem;
}
.nile-story-card__progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}
.nile-story-card__progress span:first-child {
  background: linear-gradient(90deg, #f0c75e, #fff);
}
.nile-story-card__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform .55s ease;
}
.nile-story-card:hover .nile-story-card__stage img { transform: scale(1.12); }
.nile-story-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,37,.15) 0%, transparent 28%, transparent 48%, rgba(7,18,37,.88) 100%);
  pointer-events: none;
}
.nile-story-card__play {
  position: absolute;
  inset: 46% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,31,63,.45);
  color: #fff;
  font-size: 1.3rem;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.nile-story-card:hover .nile-story-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(30,90,168,.7);
}
.nile-story-card__meta {
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .95rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nile-story-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f0c75e, #d4a017);
  color: #0b1f3f;
  font-weight: 800;
  font-size: .9rem;
  border: 2px solid rgba(255,255,255,.55);
}
.nile-story-card__meta-copy { min-width: 0; display: grid; gap: .1rem; }
.nile-story-card__caption {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nile-story-card__title {
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nile-story-card__index {
  position: absolute;
  top: 1.35rem;
  right: .85rem;
  z-index: 2;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.nile-story-modal[hidden] { display: none !important; }
.nile-story-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.nile-story-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(240,199,94,.12), transparent 42%),
    rgba(4, 10, 22, .82);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .28s ease;
}
.nile-story-modal.is-open .nile-story-modal__backdrop { opacity: 1; }
.nile-story-modal__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  transform: translateY(18px) scale(.96);
  opacity: 0;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}
.nile-story-modal.is-open .nile-story-modal__shell {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.nile-story-modal__phone {
  position: relative;
  background:
    linear-gradient(165deg, rgba(255,255,255,.08), transparent 40%),
    #071225;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(240,199,94,.28),
    0 0 0 8px rgba(11,31,63,.45),
    0 32px 72px rgba(0,0,0,.45);
}
.nile-story-modal__notch {
  position: absolute;
  top: .55rem;
  left: 50%;
  z-index: 4;
  width: 38%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.nile-story-modal__close {
  position: absolute;
  top: -.35rem;
  right: -.35rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c75e, #d4a84a);
  color: #0b1f3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.nile-story-modal__close:hover { transform: scale(1.05); }
.nile-story-modal__close svg { width: 16px; height: 16px; }
.nile-story-modal__progress {
  position: absolute;
  top: 1.55rem;
  left: .95rem;
  right: .95rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .28rem;
}
.nile-story-modal__progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  overflow: hidden;
}
.nile-story-modal__progress span.is-active {
  background: rgba(255,255,255,.22);
}
.nile-story-modal__progress span.is-active::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0c75e, #fff);
  transform-origin: left center;
  animation: nile-story-progress 4.5s linear forwards;
}
.nile-story-modal__frame {
  position: relative;
  aspect-ratio: 9 / 14;
  background: #000;
  overflow: hidden;
}
.nile-story-modal__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(.72);
  transform: scale(1.04);
  transition: opacity .35s ease;
}
.nile-story-modal__frame.is-ready .nile-story-modal__poster { opacity: 0; }
.nile-story-modal__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .85rem;
  background: linear-gradient(180deg, rgba(7,18,37,.25), rgba(7,18,37,.55));
  color: #fff;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nile-story-modal__loader[hidden] {
  display: none !important;
}
.nile-story-modal__spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.22);
  border-top-color: #f0c75e;
  border-right-color: rgba(240,199,94,.55);
  animation: nile-story-spin .85s linear infinite;
  box-shadow: 0 0 0 8px rgba(240,199,94,.08);
}
.nile-story-modal__loader-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.nile-story-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity .35s ease;
  background: #000;
}
.nile-story-modal__frame iframe.is-visible { opacity: 1; }
.nile-story-modal__footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: center;
  padding: 1rem 1.1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(11,31,63,.92), #071225 70%),
    #071225;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nile-story-modal__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0c75e, #c9963a);
  color: #0b1f3f;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(240,199,94,.18);
}
.nile-story-modal__copy { min-width: 0; }
.nile-story-modal__kicker {
  margin: 0 0 .2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,199,94,.92);
}
.nile-story-modal__caption {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
body.nile-story-modal-open { overflow: hidden; }
@keyframes nile-story-spin {
  to { transform: rotate(360deg); }
}
@keyframes nile-story-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (max-width: 575.98px) {
  .nile-story-modal { padding: .85rem; }
  .nile-story-modal__shell { width: min(100%, 340px); }
  .nile-story-modal__close {
    top: .55rem;
    right: .55rem;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 991.98px) {
  .nile-trust-videos { padding: 3.4rem 0 3.75rem; }
  .nile-trust-videos__rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: .25rem .15rem 0.65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .nile-story-card {
    flex: 0 0 min(70vw, 240px);
    scroll-snap-align: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nile-story-card__stage,
  .nile-story-card__stage img,
  .nile-story-card__play { transition: none; }
}
.nile-trust-faqs {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(30,90,168,.07), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(240,199,94,.08), transparent 26%),
    linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
}
.nile-trust-faqs__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}
.nile-trust-faqs__intro {
  position: sticky;
  top: 6.5rem;
}
.nile-trust-faqs__eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(11,31,63,.14);
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6b82;
}
.nile-trust-faqs__heading {
  margin: 0 0 .85rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0b1f3f;
  letter-spacing: -.02em;
}
.nile-trust-faqs__lead {
  margin: 0 0 1.5rem;
  color: #5b6b82;
  line-height: 1.65;
  font-size: 1.02rem;
}
.nile-trust-faqs__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.nile-trust-faqs__stats > div {
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(15,61,122,.08);
  box-shadow: 0 12px 28px rgba(11,31,63,.06);
}
.nile-trust-faqs__stats strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0b1f3f;
  line-height: 1.1;
}
.nile-trust-faqs__stats span {
  color: #7a8699;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nile-trust-faqs__panel {
  display: grid;
  gap: 1.25rem;
}
.nile-trust-faqs__list {
  max-width: none;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.nile-trust-faqs__item {
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,61,122,.08);
  box-shadow: 0 14px 32px rgba(11,31,63,.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.nile-trust-faqs__item.is-open {
  box-shadow: 0 18px 40px rgba(11,31,63,.12);
  transform: translateY(-1px);
}
.nile-trust-faqs__question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .9rem;
  align-items: center;
  text-align: left;
  background: transparent;
  color: #0b1f3f;
  border: 0;
  border-radius: 0;
  padding: 1.05rem 1.15rem;
  font-weight: 700;
}
.nile-trust-faqs__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: var(--nile-brand-blue, #1e5aa8);
  font-weight: 800;
  font-size: .9rem;
}
.nile-trust-faqs__item.is-open .nile-trust-faqs__num {
  background: linear-gradient(145deg, #0f3d7a, #1e5aa8);
  color: #fff;
}
.nile-trust-faqs__q {
  font-size: 1.02rem;
  line-height: 1.35;
}
.nile-trust-faqs__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f7fb;
  color: #0f3d7a;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.nile-trust-faqs__item.is-open .nile-trust-faqs__icon {
  background: #0f3d7a;
  color: #fff;
  transform: rotate(90deg);
}
.nile-trust-faqs__answer {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border: 0;
  border-top: 1px solid rgba(15,61,122,.08);
  border-radius: 0;
  padding: 0 1.15rem 1.15rem 4.45rem;
  color: #5b6b82;
  margin-top: 0;
}
.nile-trust-faqs__answer p {
  margin: 0;
  line-height: 1.65;
}
.nile-trust-faqs__item.is-open .nile-trust-faqs__question {
  border-radius: 0;
}
.nile-trust-faqs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .nile-trust-faqs {
    padding: 3.4rem 0;
  }
  .nile-trust-faqs__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .nile-trust-faqs__intro {
    position: static;
  }
  .nile-trust-faqs__answer {
    padding-left: 1.15rem;
  }
}

@media (max-width: 991.98px) {
  .nile-why-book-circle {
    padding: 3.5rem 0 3.75rem;
  }

  .nile-why-book-circle__header {
    margin-bottom: 2rem;
  }

  .nile-why-book-circle__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nile-why-book-circle__media {
    order: -1;
    margin-bottom: .5rem;
  }

  .nile-why-book-circle__stage {
    width: min(100%, 280px);
  }

  .nile-why-book-circle__col--left .nile-why-book-circle__point {
    flex-direction: row;
    text-align: left;
  }

  .nile-why-book-banner__grid,
  .nile-trust-feedback__card {
    grid-template-columns: 1fr;
  }

  .nile-trust-feedback__platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nile-trust-feedback__toolbar {
    grid-template-columns: 1fr;
  }

  .nile-trust-feedback__actions {
    justify-content: flex-start;
  }

  .nile-trust-feedback__card {
    flex: 0 0 calc((100% - 1rem) / 2);
  }

  .nile-trust-videos__card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 767.98px) {
  .nile-why-book-banner__grid {
    grid-template-columns: 1fr;
  }

  .nile-trust-feedback__platforms {
    grid-template-columns: 1fr;
    padding: .75rem;
  }

  .nile-trust-feedback__card {
    flex: 0 0 88%;
  }

  .nile-trust-videos__card {
    flex-basis: 85%;
  }
}
/* Compact nav after Services / Confidence links */
header .header-nav .main-menu-wrapper {
  flex-wrap: nowrap !important;
  align-items: center;
}

header .header-nav .main-menu-wrapper #mobile-menu {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

header .header-nav .main-menu-wrapper .main-nav {
  flex-wrap: nowrap;
}

@media (min-width: 1200px) {
  header .main-menu-wrapper .main-nav > li {
    margin-right: 12px !important;
  }

  header .header-nav .main-menu-wrapper .main-nav > li {
    padding: 12px 0;
  }

  header .header-nav .main-menu-wrapper .main-nav > li > a {
    font-size: 0.86rem;
    padding: 6px 8px;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  header .main-menu-wrapper .main-nav > li {
    margin-right: 6px !important;
  }

  header .header-nav .main-menu-wrapper .main-nav > li > a {
    font-size: 0.8rem;
    padding: 5px 6px;
  }

  .nile-brand-logo {
    max-width: 170px;
    height: 46px;
    max-height: 46px;
  }

  header.header-eight .header-nav .main-menu-wrapper {
    gap: 0.5rem;
    padding: 3px 10px;
  }
}

.nile-header-actions {
  flex-wrap: nowrap;
  max-width: 100%;
}

.nile-nav-confidence {
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 0.4rem 0.85rem;
  white-space: nowrap;
}

header.header-eight .nile-nav-confidence {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55);
}

header.header-eight .nile-nav-confidence:hover,
header.header-eight .nile-nav-confidence.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

header:not(.header-eight) .nile-nav-confidence {
  padding: 0.4rem 0.9rem;
}

header:not(.header-eight) .header-btn .btn,
header:not(.header-eight) .header-btn .nile-nav-hot-deals,
header:not(.header-eight) .header-btn .nile-nav-confidence {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
}

body.nile-inner-page header:not(.header-eight) .header-btn {
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin-left: auto;
}

body.nile-inner-page header:not(.header-eight) .nile-nav-hot-deals {
  margin-right: 0;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nile-header-login,
  header.header-eight .nile-header-social {
    display: none !important;
  }

  .nile-nav-confidence {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* ===== Creative Services + Confidence redesign ===== */
.nile-pill{
  display:inline-flex;
  align-items:center;
  padding:.35rem .9rem;
  border-radius:999px;
  border:1px solid rgba(15,61,122,.14);
  background:#fff;
  color:#5b6b82;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:.85rem;
}
.nile-lead-text{
  color:#5b6b82;
  line-height:1.75;
  font-size:1.02rem;
  margin-bottom:1rem;
}
.nile-creative-hero{
  padding:1.5rem 0 0;
}
.nile-creative-hero__frame{
  position:relative;
  min-height:340px;
  border-radius:1.75rem;
  overflow:hidden;
  background:#0b1f3f center/cover no-repeat;
  background-image:var(--hero-image);
  box-shadow:0 24px 50px rgba(11,31,63,.18);
}
.nile-creative-hero__veil{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(11,31,63,.15) 0%,rgba(11,31,63,.72) 100%);
}
.nile-creative-hero__content{
  position:relative;
  z-index:1;
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:2rem 2rem 2.25rem;
  color:#fff;
}
.nile-creative-hero__crumbs{
  display:flex;
  gap:.5rem;
  align-items:center;
  font-size:.88rem;
  opacity:.9;
  margin-bottom:.75rem;
}
.nile-creative-hero__crumbs a{color:#fff;text-decoration:none}
.nile-creative-hero__content h1{
  font-size:clamp(1.9rem,4vw,3rem);
  font-weight:800;
  margin:0 0 .5rem;
}
.nile-creative-hero__content p{
  margin:0;
  max-width:42rem;
  color:rgba(255,255,255,.88);
  font-size:1.05rem;
}
.nile-intro-orbit{
  display:flex;
  gap:1rem;
  align-items:stretch;
}
.nile-intro-orbit__stage{flex:1}
.nile-intro-orbit__card{
  background:linear-gradient(160deg,#fff 0%,#f3f8ff 100%);
  border:1px solid rgba(30,90,168,.12);
  border-radius:1.5rem;
  padding:1.75rem;
  min-height:210px;
  box-shadow:0 18px 40px rgba(11,31,63,.08);
}
.nile-intro-orbit__icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--nile-brand-blue,#1e5aa8);
  color:#fff;
  font-size:1.55rem;
  margin-bottom:1rem;
  box-shadow:0 12px 24px rgba(30,90,168,.28);
}
.nile-intro-orbit__card h3{
  font-size:1.25rem;
  font-weight:800;
  color:var(--nile-heading-color,#0b1f3f);
  margin-bottom:.55rem;
}
.nile-intro-orbit__card p{margin:0;color:#5b6b82;line-height:1.65}
.nile-intro-orbit__nav{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:.65rem;
}
.nile-service-stories{padding:1rem 0 3rem}
.nile-service-story{
  max-width:880px;
  margin:0 auto 3.5rem;
  text-align:center;
}
.nile-service-story--alt{
  padding:2.5rem 1.5rem;
  border-radius:1.75rem;
  background:#f4f8fc;
}
.nile-service-story__icon{
  width:72px;
  height:72px;
  margin:0 auto 1rem;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(30,90,168,.08);
  color:var(--nile-brand-blue,#1e5aa8);
  font-size:1.8rem;
}
.nile-service-story__title{
  font-size:clamp(1.5rem,2.5vw,2rem);
  font-weight:800;
  color:var(--nile-heading-color,#0b1f3f);
  margin-bottom:1.25rem;
}
.nile-service-story__media{
  border-radius:1.35rem;
  overflow:hidden;
  margin-bottom:1.25rem;
  box-shadow:0 20px 44px rgba(11,31,63,.14);
}
.nile-service-story__media img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}
.nile-service-story__excerpt{
  font-size:1.08rem;
  color:#334155;
  font-weight:600;
  margin-bottom:.75rem;
}
.nile-service-story__body{
  color:#5b6b82;
  line-height:1.7;
  margin-bottom:1.1rem;
}
.nile-service-story__cta{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-weight:700;
  color:var(--nile-brand-blue,#1e5aa8);
  text-decoration:none;
}
.nile-empty-panel{
  padding:3rem 1rem;
  color:#5b6b82;
}
.nile-empty-panel i{
  font-size:2.5rem;
  color:var(--nile-brand-blue,#1e5aa8);
  display:block;
  margin-bottom:.75rem;
}
.nile-confidence-stack{display:grid;gap:1rem}
.nile-confidence-stack__card{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  padding:1.2rem 1.3rem;
  border-radius:1.25rem;
  background:#fff;
  border:1px solid rgba(30,90,168,.12);
  box-shadow:0 14px 30px rgba(11,31,63,.06);
}
.nile-confidence-stack__icon{
  width:52px;
  height:52px;
  border-radius:1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg,#1e5aa8,#0f3d7a);
  color:#fff;
  font-size:1.3rem;
  flex-shrink:0;
}
.nile-confidence-stack__card h3{
  font-size:1.05rem;
  font-weight:800;
  margin:0 0 .35rem;
  color:var(--nile-heading-color,#0b1f3f);
}
.nile-confidence-stack__card p{margin:0;color:#5b6b82;line-height:1.55}
.nile-story-band--soft{background:#f3f7fb}
.nile-story-band__media{
  position:relative;
  border-radius:1.5rem;
  overflow:hidden;
  box-shadow:0 22px 46px rgba(11,31,63,.14);
}
.nile-story-band__media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}
.nile-story-band__badge{
  position:absolute;
  left:1rem;
  bottom:1rem;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#fff;
  color:var(--nile-brand-blue,#1e5aa8);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  box-shadow:0 10px 24px rgba(11,31,63,.18);
}
.nile-confidence-form{
  background:#fff;
  border-radius:1.75rem;
  padding:2rem;
  border:1px solid rgba(15,61,122,.08);
  box-shadow:0 24px 50px rgba(11,31,63,.08);
}
.nile-confidence-form__intro{margin-bottom:1.5rem;max-width:40rem}
.nile-confidence-form__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem 1.25rem;
}
.nile-confidence-form__full{grid-column:1 / -1}
.nile-confidence-form label{
  display:block;
  font-weight:600;
  margin-bottom:.4rem;
  color:#0b1f3f;
}
.nile-confidence-form .form-control{
  border-radius:.9rem;
  min-height:48px;
  border-color:rgba(15,61,122,.14);
}
.nile-confidence-form__submit{
  min-height:52px;
  border-radius:999px;
  padding:0 1.75rem;
  font-weight:700;
}
.nile-award-tile{
  height:100%;
  padding:1.75rem 1.5rem;
  border-radius:1.5rem;
  background:#fff;
  border:1px solid rgba(15,61,122,.08);
  box-shadow:0 16px 36px rgba(11,31,63,.07);
  text-align:center;
}
.nile-award-tile__visual{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
}
.nile-award-tile__icon{
  width:78px;
  height:78px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg,#e8f1ff,#d7e8fb);
  color:var(--nile-brand-blue,#1e5aa8);
  font-size:2rem;
}
.nile-award-tile h3{
  font-size:1.15rem;
  font-weight:800;
  margin-bottom:.55rem;
}
.nile-award-tile p{color:#5b6b82;margin-bottom:1rem}
.nile-award-tile__link{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-weight:700;
  color:var(--nile-brand-blue,#1e5aa8);
  text-decoration:none;
}
.nile-review-tile{
  height:100%;
  background:#fff;
  border-radius:1.35rem;
  padding:1.35rem;
  border:1px solid rgba(15,61,122,.08);
  box-shadow:0 14px 32px rgba(11,31,63,.06);
}
.nile-review-tile__top{
  display:flex;
  gap:.85rem;
  align-items:flex-start;
  margin-bottom:1rem;
}
.nile-review-tile__avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#0f3d7a;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  flex-shrink:0;
}
.nile-review-tile__top strong{display:block;color:#0b1f3f}
.nile-review-tile__top span{display:block;color:#7a8699;font-size:.85rem}
.nile-review-tile__stars{display:flex;gap:.15rem;margin-top:.25rem}
.nile-review-tile__stars svg{width:14px;height:14px;color:#f0b429}
.nile-review-tile__source{
  margin-left:auto;
  font-size:.72rem;
  font-weight:800;
  color:var(--nile-brand-blue,#1e5aa8);
  text-transform:uppercase;
}
.nile-review-tile p{margin:0;color:#5b6b82;line-height:1.65}
.nile-video-tile{
  position:relative;
  display:block;
  border-radius:1.25rem;
  overflow:hidden;
  aspect-ratio:9/16;
  color:#fff;
  text-decoration:none;
  box-shadow:0 18px 36px rgba(11,31,63,.16);
}
.nile-video-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.nile-video-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(11,31,63,.05),rgba(11,31,63,.78));
}
.nile-video-tile__play{
  position:absolute;
  z-index:2;
  inset:42% auto auto 50%;
  transform:translate(-50%,-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(5px);
}
.nile-video-tile__copy{
  position:absolute;
  z-index:2;
  left:1rem;
  right:1rem;
  bottom:1rem;
}
.nile-video-tile__copy p{
  margin:0 0 .35rem;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  opacity:.9;
}
.nile-video-tile__copy strong{font-size:.95rem}
.nile-why-book-banner__shell{
  background:linear-gradient(135deg,#0f3d7a 0%,#123f6d 100%);
  color:#fff;
  border-radius:1.5rem;
  padding:2rem 1.75rem;
  box-shadow:0 18px 40px rgba(11,31,63,.22);
}
.nile-why-book-banner__header{text-align:center;margin-bottom:1.5rem}
.nile-why-book-banner__eyebrow{
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.75rem;
  opacity:.8;
  margin-bottom:.45rem;
}
.nile-why-book-banner__title{
  font-size:clamp(1.35rem,2.2vw,1.75rem);
  font-weight:800;
  margin:0;
}
.nile-why-book-banner__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem 1.5rem;
}
.nile-why-book-banner__item{display:flex;gap:.9rem;align-items:flex-start}
.nile-why-book-banner__icon{
  width:48px;
  height:48px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  color:#f0c75e;
  flex-shrink:0;
  font-size:1.25rem;
}
.nile-why-book-banner__item-title{font-weight:700;margin:0 0 .25rem}
.nile-why-book-banner__item-text{margin:0;color:rgba(255,255,255,.82);font-size:.92rem;line-height:1.5}
.nile-circle-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(11,31,63,.15);
  background:#fff;
  color:#0b1f3f;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.nile-circle-btn.is-primary{
  background:var(--nile-brand-blue,#1e5aa8);
  border-color:var(--nile-brand-blue,#1e5aa8);
  color:#fff;
}
@media (max-width:991.98px){
  .nile-why-book-circle__layout{grid-template-columns:1fr}
  .nile-why-book-circle__media{order:-1}
  .nile-why-book-circle__col--left .nile-why-book-circle__point{
    flex-direction:row;
    text-align:left;
  }
  .nile-confidence-form__grid{grid-template-columns:1fr}
  .nile-why-book-banner__grid{grid-template-columns:1fr}
}
/* Why Book banner + Confidence nav + embed tailor form */
.nile-why-book-banner{padding:1.75rem 0 0}
.nile-why-book-banner--nested{padding:1.75rem 0 0}
.nile-why-book-banner__shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(91,192,235,.18), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(240,199,94,.12), transparent 28%),
    linear-gradient(145deg,#0b2d5c 0%,#0f3d7a 48%,#123f6d 100%);
  color:#fff;
  border-radius:1.75rem;
  padding:2.35rem 2rem 2.1rem;
  box-shadow:0 22px 48px rgba(11,31,63,.24);
  border:1px solid rgba(255,255,255,.08);
}
.nile-why-book-banner__glow{
  position:absolute;
  inset:auto -10% -40% auto;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(91,192,235,.12);
  filter:blur(10px);
  pointer-events:none;
}
.nile-why-book-banner__header{
  position:relative;
  text-align:center;
  margin-bottom:1.75rem;
}
.nile-why-book-banner__eyebrow{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.74rem;
  font-weight:700;
  color:rgba(210,228,245,.88);
  margin-bottom:.55rem;
}
.nile-why-book-banner__title{
  font-size:clamp(1.45rem,2.4vw,1.95rem);
  font-weight:800;
  margin:0;
  color:#fff;
}
.nile-why-book-banner__rule{
  display:block;
  width:64px;
  height:3px;
  margin:0.85rem auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#f0c75e,#5bc0eb);
}
.nile-why-book-banner__grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.35rem 1.75rem;
}
.nile-why-book-banner__item{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  padding:1rem 1.05rem;
  border-radius:1.15rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .2s ease, background .2s ease;
}
.nile-why-book-banner__item:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.1);
}
.nile-why-book-banner__icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.1);
  color:#f0c75e;
  flex-shrink:0;
  font-size:1.35rem;
  box-shadow:inset 0 0 0 1px rgba(240,199,94,.25);
}
.nile-why-book-banner__item-title{
  font-weight:800;
  margin:0 0 .3rem;
  color:#fff;
  font-size:1.02rem;
}
.nile-why-book-banner__item-text{
  margin:0;
  color:rgba(220,232,245,.88);
  font-size:.92rem;
  line-height:1.55;
}
.nile-nav-confidence{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  border-radius:999px;
  font-weight:700;
  font-size:.82rem;
  line-height:1.1;
  padding:.42rem .95rem;
  white-space:nowrap;
  text-decoration:none !important;
  border:1px solid transparent;
  transition:background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nile-nav-confidence i{font-size:.95rem}
.nile-nav-confidence--home{
  color:#fff !important;
  background:rgba(15,61,122,.35);
  border-color:rgba(255,255,255,.45);
  backdrop-filter:blur(6px);
}
.nile-nav-confidence--home:hover,
.nile-nav-confidence--home.active{
  background:#fff;
  color:#0f3d7a !important;
  border-color:#fff;
}
header.header-eight.fixed .nile-nav-confidence--home{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.35);
  color:#fff !important;
}
header.header-eight.fixed .nile-nav-confidence--home:hover,
header.header-eight.fixed .nile-nav-confidence--home.active{
  background:#fff;
  color:#0f3d7a !important;
}
.nile-nav-confidence--inner{
  color:#fff !important;
  background:var(--nile-brand-blue,#1e5aa8);
  border-color:var(--nile-brand-blue,#1e5aa8);
  box-shadow:0 8px 18px rgba(30,90,168,.22);
}
.nile-nav-confidence--inner:hover,
.nile-nav-confidence--inner.active{
  background:var(--nile-brand-blue-dark,#0f3d7a);
  border-color:var(--nile-brand-blue-dark,#0f3d7a);
  color:#fff !important;
}
.nile-embed-tailor-form{
  padding-top:1rem;
  padding-bottom:3.5rem;
  background:linear-gradient(180deg,#f5f8fc 0%,#fff 100%);
}
.nile-embed-tailor-form__wrap{
  background:#fff;
  border-radius:1.5rem;
  padding:2rem 1.5rem;
  border:1px solid rgba(15,61,122,.08);
  box-shadow:0 20px 44px rgba(11,31,63,.08);
}
@media (max-width:767.98px){
  .nile-why-book-banner__grid{grid-template-columns:1fr}
  .nile-why-book-banner__shell{padding:1.75rem 1.15rem}
  .nile-embed-tailor-form__wrap{padding:1.35rem 1rem}
}
/* Services page — match site hero + creative intro */
.nile-services-hero__title{
  color:#fff;
  font-size:clamp(1.75rem,3vw,2.5rem);
  font-weight:700;
  margin-bottom:.5rem;
}
.nile-services-hero__subtitle{
  color:rgba(255,255,255,.92);
  max-width:720px;
  margin-bottom:0;
  font-size:1.05rem;
}
.nile-services-intro{
  padding-top:3rem;
  padding-bottom:2.5rem;
}
.nile-services-intro__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:.35rem .85rem;
  border-radius:999px;
  border:1px solid rgba(15,61,122,.14);
  background:#fff;
  color:#5b6b82;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:.85rem;
}
.nile-services-intro__text{
  color:#5b6b82;
  line-height:1.75;
  margin-bottom:1rem;
  font-size:1.02rem;
}
.nile-services-highlights{
  display:flex;
  gap:1rem;
  align-items:stretch;
}
.nile-services-highlights__list{
  flex:1;
  display:grid;
  gap:.85rem;
  min-height:19.5rem;
}
.nile-services-highlights__card{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  padding:1.15rem 1.2rem;
  border-radius:1.15rem;
  background:#fff;
  border:1px solid rgba(15,61,122,.1);
  box-shadow:0 10px 28px rgba(11,31,63,.05);
  cursor:pointer;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
  text-align:left;
}
.nile-services-highlights__card.is-off{
  display:none;
}
.nile-services-highlights__card.is-active{
  border-color:rgba(30,90,168,.45);
  box-shadow:0 14px 32px rgba(30,90,168,.12);
  transform:translateY(-1px);
}
.nile-services-highlights__icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:#0f3d7a;
  font-size:1.35rem;
  flex-shrink:0;
}
.nile-services-highlights__card.is-active .nile-services-highlights__icon{
  background:var(--nile-brand-blue,#1e5aa8);
  color:#fff;
}
.nile-services-highlights__card h3{
  font-size:1.05rem;
  font-weight:800;
  color:#0b1f3f;
  margin:0 0 .3rem;
}
.nile-services-highlights__card p{
  margin:0;
  color:#5b6b82;
  font-size:.92rem;
  line-height:1.55;
}
.nile-services-highlights__nav{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:.55rem;
}
.nile-services-showcase{
  padding-top:2.5rem;
  padding-bottom:2.5rem;
  background:linear-gradient(180deg,#f7f9fc 0%,#fff 42%,#f4f7fb 100%);
  overflow:visible;
}
.nile-services-showcase__header{
  max-width:40rem;
  margin:0 auto 2.5rem;
  padding:0 .5rem;
  text-align:center;
  position:relative;
  z-index:1;
  background:transparent;
  box-shadow:none;
  width:auto;
  left:auto;
  top:auto;
}
.nile-services-showcase__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 .9rem;
  padding:.4rem 1rem;
  border:1px solid rgba(15,61,122,.16);
  border-radius:999px;
  background:#fff;
  color:#5b6b82;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.2;
}
.nile-services-showcase__header .nile-section-h2{
  margin-bottom:0;
}
.nile-service-panel{
  padding:1.1rem 0;
  opacity:0;
  transform:translateY(28px);
  transition:opacity .55s ease, transform .55s ease;
}
.nile-service-panel.is-inview{
  opacity:1;
  transform:none;
}
.nile-service-panel__shell{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  min-height:min(28rem,70vh);
  border-radius:1.5rem;
  overflow:hidden;
  background:#0b1f3f;
  box-shadow:0 22px 48px rgba(11,31,63,.16);
}
.nile-service-panel--flip .nile-service-panel__shell{
  grid-template-columns:.85fr 1.15fr;
}
.nile-service-panel--flip .nile-service-panel__media{order:2}
.nile-service-panel--flip .nile-service-panel__content{order:1}
.nile-service-panel__media{
  position:relative;
  min-height:18rem;
  overflow:hidden;
}
.nile-service-panel__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .7s ease;
}
.nile-service-panel.is-inview .nile-service-panel__media img,
.nile-service-panel.is-open .nile-service-panel__media img{
  transform:scale(1);
}
.nile-service-panel__shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(11,31,63,.18) 0%,rgba(11,31,63,.05) 55%,rgba(11,31,63,.35) 100%);
  pointer-events:none;
}
.nile-service-panel--flip .nile-service-panel__shade{
  background:linear-gradient(270deg,rgba(11,31,63,.18) 0%,rgba(11,31,63,.05) 55%,rgba(11,31,63,.35) 100%);
}
.nile-service-panel__index{
  position:absolute;
  left:1.25rem;
  bottom:1rem;
  font-size:clamp(3.5rem,8vw,5.5rem);
  font-weight:800;
  line-height:.85;
  color:rgba(255,255,255,.22);
  letter-spacing:-.04em;
  pointer-events:none;
  user-select:none;
}
.nile-service-panel--flip .nile-service-panel__index{left:auto;right:1.25rem}
.nile-service-panel__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(1.5rem,3vw,2.6rem);
  background:linear-gradient(165deg,#0d274d 0%,#12345f 48%,#0b1f3f 100%);
  color:#fff;
}
.nile-service-panel__icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:1.35rem;
  margin-bottom:1rem;
}
.nile-service-panel__step{
  margin:0 0 .45rem;
  color:rgba(255,255,255,.62);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.nile-service-panel__title{
  margin:0 0 .85rem;
  font-size:clamp(1.45rem,2.4vw,2rem);
  font-weight:800;
  line-height:1.2;
  color:#fff;
}
.nile-service-panel__excerpt{
  margin:0 0 1rem;
  color:rgba(255,255,255,.82);
  font-size:1.02rem;
  font-weight:600;
  line-height:1.55;
}
.nile-service-panel__preview p,
.nile-service-panel__body{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.7;
  font-size:.95rem;
}
.nile-service-panel__body{
  margin-top:.15rem;
}
.nile-service-panel__body p{margin-bottom:.75rem}
.nile-service-panel__body p:last-child{margin-bottom:0}
.nile-service-panel__actions{
  margin-top:1.25rem;
}
.nile-service-panel__btn{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.7rem 1.2rem;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#0b1f3f;
  font-weight:800;
  font-size:.92rem;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.nile-service-panel__btn:hover{
  background:#e8f0ff;
  color:var(--nile-brand-blue,#1e5aa8);
}
.nile-service-panel__btn--ghost{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.nile-service-panel__btn--ghost:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
}
.nile-service-panel.is-open .nile-service-panel__shell{
  box-shadow:0 28px 56px rgba(11,31,63,.22);
}
@media (prefers-reduced-motion: reduce){
  .nile-service-panel,
  .nile-service-panel__media img{
    transition:none;
  }
  .nile-service-panel{
    opacity:1;
    transform:none;
  }
}
@media (max-width:991.98px){
  .nile-services-highlights{flex-direction:column}
  .nile-services-highlights__nav{flex-direction:row}
  .nile-service-panel__shell,
  .nile-service-panel--flip .nile-service-panel__shell{
    grid-template-columns:1fr;
    min-height:0;
  }
  .nile-service-panel__media,
  .nile-service-panel--flip .nile-service-panel__media{order:0;min-height:0}
  .nile-service-panel__content,
  .nile-service-panel--flip .nile-service-panel__content{order:1}
  .nile-service-panel__media{aspect-ratio:16/10}
  .nile-service-panel__shade{
    background:linear-gradient(180deg,rgba(11,31,63,.05) 0%,rgba(11,31,63,.45) 100%);
  }
  .nile-service-panel__index{
    left:1rem;
    right:auto;
    bottom:.65rem;
    font-size:3.25rem;
  }
  .nile-service-panel__content{padding:1.35rem 1.25rem 1.5rem}
}
