/* ========================================
   NUEVA PÁGINA DE TOURS - ESTILOS MODERNOS
   ======================================== */

/* Variables del sistema (heredadas de Webflow) */
:root {
  --color-primary: #042e4d;
  --color-secondary: #2563eb;
  --color-accent: #f59e0b;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset y Base */
.nt-tours-main {
  position: relative;
  z-index: 10;
  background-color: var(--color-bg);
  min-height: 100vh;
  padding-top: 88px; /* Altura del navbar */
}


/* ========================================
   HERO SECTION
   ======================================== */

/* ========================================
   FILTERS SECTION
   ======================================== */
.nt-filters-section {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg);
  position: relative; /* Cambio de sticky a relative */
  z-index: 10;
}

.nt-filters-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.nt-filter-chip {
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

.nt-filter-chip:hover {
  border-color: var(--color-secondary);
  background: #eff6ff;
  color: var(--color-secondary);
  transform: translateY(-1px);
}

.nt-filter-chip.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nt-filter-clear {
  padding: 0;
  width: 40px;
  height: 40px;
  min-width: 40px; /* Prevent squashing on mobile */
  flex-shrink: 0; /* Prevent flex shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-border); /* Match standard chip */
  color: var(--color-text-light); /* Subtle icon color */
}

.nt-filter-clear:hover {
  background: #eff6ff; /* Match standard hover (Blue) */
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-1px) rotate(0deg);
}

.nt-filter-clear svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px; /* Make it slightly bolder like text */
}

.nt-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0; /* Init hidden for GSAP */
  will-change: transform, opacity;
}

.lang-dropdown.open .lang-options,
.lang-dropdown.show .lang-options,
.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Force close override to beat hover state */
.lang-options.force-close {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
  pointer-events: none !important;
}  
.nt-select-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  color: var(--color-text-light);
  width: 16px;
  height: 16px;
}

.nt-duration-filter {
  padding: 0.625rem 2.5rem 0.625rem 2.75rem; /* Right padding for chevron, Left for icon */
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 160px; /* Reduced slightly */
  appearance: none; /* Remove default arrow for custom styling */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.nt-duration-filter:hover {
  border-color: var(--color-secondary);
}

.nt-duration-filter:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========================================
   TOURS GRID SECTION
   ======================================== */
.nt-tours-grid-section {
  padding: var(--spacing-3xl) 0 0 0; /* No bottom padding, handled by footer spacer */
}

.nt-tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Exactamente 2 columnas */
  gap: 4rem 2rem; /* Aumentada la separación vertical (+32px) para dar más aire */
}

/* Loading State */
.nt-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--spacing-3xl) 0;
  color: var(--color-text-light);
}

/* ========================================
   TOUR CARD - Nuevo diseño basado en imagen
   ======================================== */
.nt-tour-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--spacing-md);
  will-change: transform, opacity;
}

.nt-tour-card:hover {
  transform: translateY(-4px);
}

/* Image Container */
/* Image Container Wrapper for Shadow */
.nt-card-image-shadow-box {
  position: relative;
  width: 100%;
  border-radius: 6px;
  /* Tighter, more defined premium shadow */
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.12), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff; /* Ensure base for shadow */
}

.nt-tour-card:hover .nt-card-image-shadow-box {
  /* Defined lift shadow without excessive spread */
  box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.18), 0 8px 12px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px); /* More noticeable lift */
}

/* Inner Image Container (Clipping) */
.nt-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio similar a la imagen */
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 6px;
  /* Shadow removed from here to avoid clipping */
}

.nt-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nt-tour-card:hover .nt-card-image {
  transform: scale(1.03);
}

/* Badge "Por definir" en esquina inferior izquierda */
/* Badge Container */
.nt-card-badges {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: auto;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px; /* Consistent gap between chips */
  z-index: 2;
  pointer-events: none; /* Let clicks pass through to card */
}

/* Generic Badge Base */
.nt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px; /* Increased vertical padding (+3px top/bottom) */
  border-radius: 50px; /* Pill shape */
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400; /* Regular weight */
  color: white;
  line-height: 1;
  white-space: nowrap;
}

.nt-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 2;
}

/* 1. Date Chip (Red/Pink) */
.nt-badge--date {
  background-color: #be185d; /* Pink-700 similar to reference */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nt-badge--date svg {
  stroke: white; /* Line icon */
}

/* 2. Info Chip (Heavy Blur / Glass Style) */
.nt-badge--info {
  background-color: rgba(0, 0, 0, 0.25); /* Transparent dark background */
  border: 1px solid rgba(255, 255, 255, 0.25); /* Crisp thin border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle depth */
  backdrop-filter: blur(16px); /* "Un montón de blur" */
  -webkit-backdrop-filter: blur(16px);
  color: white;
}

.nt-badge--info svg {
  color: white;
}

/* Arrow en esquina superior derecha */
.nt-card-arrow {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.nt-card-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  transition: transform 0.3s ease;
}

.nt-tour-card:hover .nt-card-arrow {
  background: white;
  transform: scale(1.1);
}

.nt-tour-card:hover .nt-card-arrow svg {
  transform: translateX(2px);
}

/* Card Content - debajo de la imagen */
.nt-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex-grow: 1;
  background: transparent;
}

.nt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.nt-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.nt-card-price {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.nt-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
  flex-grow: 1;
  font-style: italic;
  text-align: right;
}

.nt-card-footer {
  display: none; /* Ocultar el footer con el botón */
}

.nt-card-cta {
  display: none; /* Ocultar el CTA */
}

/* ========================================
   MOBILE MENU - Arreglar para que se oculte por defecto
   ======================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  max-width: 400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

.mobile-menu-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close-btn:hover {
  background: var(--color-bg-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: var(--color-bg-light);
  color: var(--color-secondary);
}

.nav-icon {
  font-size: 1.25rem;
}

.nav-separator {
  height: 1px;
  background: var(--color-border);
  margin: var(--spacing-xs) 0;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-secondary);
  color: white;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--spacing-md);
  transition: all 0.2s ease;
}

.mobile-menu-cta:hover {
  background: #1d4ed8;
  transform: scale(1.02);
}

.mobile-menu-cta svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* CSS Entrance animations removed to prevent scroll lag */
.nt-tour-card {
  contain: content; /* Significant rendering performance boost */
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
  .nt-container {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
  
  .nt-tours-hero {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
  }
  
  .nt-tours-grid {
    grid-template-columns: repeat(2, 1fr); /* Mantener 2 columnas en tablet */
    gap: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .nt-container {
    /* Styles moved to hero-common.css */
  }

  .nt-tours-main {
    padding-top: 72px;
  }
  
  
  .nt-filters-wrapper {
    justify-content: flex-start;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scroll */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
    padding-bottom: var(--spacing-sm); /* Increased padding for shadow visibility */
    padding-left: 16px; /* Inner padding for scroll start */
    padding-right: 16px; /* Inner padding for scroll end */
    margin-left: -16px; /* Negative margin to span full width */
    margin-right: -16px; /* Negative margin to span full width */
    gap: 12px;
  }
  
  .nt-filters-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  
  /* Ensure first/last items have spacing when scrolling */
  .nt-filters-wrapper::after {
    content: "";
    flex: 0 0 16px;
  }
  
  .nt-tours-grid-section {
    padding-top: var(--spacing-lg);
  }

  .nt-tours-grid {
    grid-template-columns: 1fr; /* 1 columna en móvil */
    gap: calc(var(--spacing-md) + 20px);
  }
  
  .nt-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nt-filters-section {
    padding: var(--spacing-md) 0;
  }
  
  /* Mobile Card Adjustments */
  .nt-card-description {
    text-align: left; /* Align description to left */
  }

  .nt-card-badges {
    bottom: 12px;
    left: 12px;
    right: 12px; /* Forced right margin to ensure wrapping */
    gap: 6px; /* Reduced gap */
  }

  .nt-card-arrow {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .nt-card-arrow svg {
    width: 16px;
    height: 16px;
  }

  .nt-badge {
    padding: 6px 10px; /* Reduced padding */
    font-size: 0.7rem; /* Smaller text */
  }
  
  .nt-badge svg {
    width: 12px;
    height: 12px;
  }
}

/* ========================================
   NAVBAR STYLES (Heredados)
   ======================================== */
#navbar-exclusion {
  position: fixed !important;
  top: 0;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  width: calc(100% - 10em) !important;
  z-index: 2147483647 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
  border-radius: 0 !important;
  pointer-events: auto;
  align-items: center;
  height: 88px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#navbar-exclusion.navbar-fixed.scrolled {
  top: 1em !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 84% !important;
  max-width: 84% !important;
  margin: 0 !important;
  border-radius: 1000px !important;
  padding: 0 5em !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(15px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15) !important;
}

#navbar-exclusion .navbar-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 2em !important;
}

#navbar-exclusion {
  display: flex !important;
  align-items: center !important;
}

/* Dark text colors */
#navbar-exclusion .navbar-title,
#navbar-exclusion .nav-link-exclusion,
#navbar-exclusion .lang-btn,
#navbar-exclusion .header-contact-btn span {
  color: #042e4d !important;
  mix-blend-mode: normal !important;
}

#navbar-exclusion .navbar-logo {
  filter: none !important;
  mix-blend-mode: normal !important;
}

#navbar-exclusion .nav-link-exclusion::after {
  background-color: #2563eb !important;
}

#navbar-exclusion .lang-btn svg {
  stroke: #042e4d !important;
  color: #042e4d !important;
}

#navbar-exclusion .header-contact-btn:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
  transform: scale(1.05);
}

#navbar-exclusion .header-contact-btn:hover svg {
  fill: #ffffff !important;
}

#navbar-exclusion .header-contact-btn:hover span {
  color: #ffffff !important;
}

#navbar-exclusion .header-contact-btn {
  border-color: #042e4d !important;
  color: #042e4d !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 50px;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#navbar-exclusion .header-contact-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* RESPONSIVE NAVBAR */
@media screen and (max-width: 991px) {
  #navbar-exclusion {
    left: 16px !important;
    right: 16px !important;
    transform: none;
    width: calc(100% - 32px) !important;
  }

  #navbar-exclusion.navbar-fixed.scrolled {
    left: 16px !important;
    right: 16px !important;
    transform: none !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    padding: 0 16px !important;
  }

  #navbar-exclusion .navbar-container {
    padding: 0 8px !important;
  }

  #navbar-exclusion .menu-toggle-exclusion {
    color: #042e4d !important;
    mix-blend-mode: normal !important;
  }

  #navbar-exclusion .menu-toggle-exclusion svg {
    stroke: #042e4d !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }
}

@media screen and (max-width: 767px) {
  #navbar-exclusion {
    height: 72px;
  }
  
  .header-contact-btn {
    display: none !important;
  }
}

/* ========================================
   CLEAN FOOTER (Antigravity Style - Blue Theme)
   ======================================== */
.nt-footer-clean {
  background-color: var(--color-primary); /* Blue background */
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: 0;
  border-top: none;
  color: white;
  position: relative;
  z-index: 10;
  min-height: 94vh; /* Height 94vh */
  display: flex;
  flex-direction: column;
  will-change: transform, opacity; /* Performance hint */
}



/* Footer Container Override */
.nt-footer-inner {
  width: 100%;
  max-width: 100%;
  padding: 10vh 5vw; /* Increased vertical padding for more breath */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nt-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0; /* Removed margin to let flex gap handle it, or auto margins */
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.nt-footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 400px;
}

.nt-footer-logo-main {
  height: 64px;
  width: auto;
  align-self: flex-start;
  /* Logo filter removed */
}

.nt-footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 320px;
}

.nt-text-big {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important; /* Semi Bold as requested */
  letter-spacing: -0.02em; /* Tighter for big text */
  font-size: 10vw;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  text-align: left;
}

.nt-footer-nav-wrapper {
  display: flex;
  gap: var(--spacing-3xl);
}

.nt-footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.nt-footer-nav-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-xs);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.nt-footer-nav-col a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nt-footer-nav-col a:hover {
  opacity: 0.7;
  color: white;
}

/* Giant Text */
.nt-footer-giant {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 8vh 0; /* More horizontal breathing room */
  pointer-events: none;
  user-select: none;
  position: relative;
  padding: 6vw 0; /* Consistent symmetric padding inside borders */
  flex-grow: 0;
}

/* Separator Lines */
.nt-footer-separator {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  will-change: transform;
}

.nt-footer-separator--top {
  top: 0;
}

.nt-footer-separator--bottom {
  bottom: 0;
}



/* On extremely wide screens, cap the size */
@media (min-width: 1800px) {
  .nt-text-big {
    font-size: 180px;
  }
}

.nt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0; /* Removed padding to rely on auto margins */
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.nt-footer-logo-small {
  display: none; /* Hidden in bottom row as it is now in top row */
}

.nt-footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.nt-footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nt-footer-social-icons {
  display: flex;
  flex-direction: row; /* Horizontal alignment again */
  gap: 1.5rem;
  margin-top: 1rem;
}

.nt-footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0.6;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nt-footer-social-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nt-footer-social-icons svg {
  width: 24px;
  height: 24px;
}


/* Mobile Footer Responsiveness */
@media (max-width: 991px) {
  .nt-footer-inner {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}

@media (max-width: 767px) {
  .nt-footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nt-footer-top {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .nt-footer-brand-section {
    max-width: 100%;
  }
  
  .nt-footer-nav-wrapper {
    width: 100%;
    justify-content: flex-start;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
  }
  
  .nt-text-big {
    font-size: 13vw; /* Adjusted for mobile */
  }
  
  .nt-footer-giant {
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-lg) 0;
  }
  
  .nt-footer-bottom {
    flex-direction: column-reverse; /* Copyright last on mobile */
    gap: var(--spacing-lg);
    align-items: flex-start;
  }
  
  .nt-footer-legal {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}
/* ========================================
   FOOTER REVEAL (CURTAIN EFFECT)
   ======================================== */
#nt-tours-reveal-wrapper {
  background-color: var(--color-bg); /* Must be opaque to hide footer */
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#nt-tours-footer-reveal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  visibility: hidden; /* JavaScript will make it visible */
}

#nt-footer-spacer {
  display: block;
  width: 100%;
}

/* Fix for mobile where reveal might look jittery */
@media (max-width: 767px) {
  #nt-tours-footer-reveal {
    position: relative;
    visibility: visible;
    z-index: auto;
  }
  #nt-tours-reveal-wrapper {
    margin-bottom: 0 !important;
    box-shadow: none;
  }
  #nt-footer-spacer {
    display: none; /* Hide spacer since footer is relative now */
  }
}
