/*
Theme Name: Four Ways Expeditions
Description: Estilos Base - Identidad Visual v1.0 (Final Corregido)
*/

/* ==========================================================================
   1. VARIABLES, RESET & GLOBAL UTILITIES
   ========================================================================== */
:root {
  --color-primary: #ff3e00;
  --color-secondary: #1f2937;
  --color-hover: #cc3200;
  --color-bg-light: #f9fafb;
  --color-text: #1f2937;
  --color-white: #ffffff;
  --color-whatsapp: #25d366;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --container-width: 1280px;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition: all 0.3s var(--ease-out-expo);
}

html {
  scroll-padding-top: 140px;
}
html,
body {
  overflow-x: clip;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-top: 0 !important;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea,
optgroup {
  font-family: inherit;
  font-size: 100%;
}
::placeholder {
  font-family: var(--font-body);
  opacity: 0.7;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s var(--ease-out-expo),
    box-shadow 0.2s var(--ease-out-expo),
    background-color 0.3s;
  background-color: var(--color-secondary);
  color: var(--color-white);
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  color: var(--color-white);
}
.button:active {
  transform: scale(0.98);
}

/* ==========================================================================
   2. HEADER & NAVEGACIÓN (DESKTOP)
   ========================================================================== */
.header-sticky-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}
body.admin-bar .header-sticky-wrapper {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header-sticky-wrapper {
    top: 46px;
  }
}

/* --- Top Bar --- */
.fw-top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  display: block;
  opacity: 1;
}
.header-sticky-wrapper.is-scrolled .fw-top-bar {
  background-color: var(--color-primary);
  border-bottom: none;
}
.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact,
.top-tools {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-link {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.top-link i,
.top-link .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
  color: inherit;
}
.top-link:hover {
  color: var(--color-secondary);
}

.lang-selector {
  display: flex;
  align-items: center;
}
/* --- Banderas Polylang (Desktop) --- */
.lang-selector img {
    width: 24px !important;
    height: 19px !important;
    margin: 0 4px;
    object-fit: cover; /* Evita que la bandera se distorsione si la proporción original es distinta */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lang-selector img:hover {
    transform: scale(1.15); /* Efecto de interacción */
}
.lang-selector img {
  margin: 0 2px;
  cursor: pointer;
  transition: transform 0.2s;
}
.lang-selector img:hover {
  transform: scale(1.1);
}

.wa-pill-btn {
  background-color: var(--color-whatsapp);
  color: var(--color-white) !important;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8.5rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.wa-pill-btn:hover {
  background-color: var(--color-white);
  color: var(--color-whatsapp) !important;
  transform: translateY(-1px);
}
.wa-pill-btn .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.social-list {
  display: flex;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 15px;
}
.social-list a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-list a:hover {
  color: var(--color-secondary);
  transform: scale(1.1);
}

/* --- Main Header --- */
.fw-site-header {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-branding img,
.custom-logo {
  max-height: 150px;
  width: auto;
  transition: 0.4s;
}
.site-title a {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.5rem;
  transition: 0.4s;
}

/* --- Nav Desktop --- */
.nav-right-area {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.main-navigation ul {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-navigation > ul > li {
  position: relative;
}
.main-navigation > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: var(--color-white);
}
.main-navigation .menu-item-has-children > a::after {
  content: "\f347";
  font-family: "dashicons";
  font-size: 14px;
  margin-top: -2px;
  transition: transform 0.3s ease;
}
.main-navigation .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.header-sticky-wrapper:not(.is-scrolled) .main-navigation > ul > li > a:hover {
  transform: scale(1.1);
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --- Submenus Desktop --- */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: calc(80vh - 100px);
  width: max-content;
  min-width: 260px;
  max-width: 90vw;
  background: var(--color-white);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1100;
}
.main-navigation .sub-menu li {
  width: 260px;
  flex-shrink: 0;
}
.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation .sub-menu a {
  color: var(--color-text) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  padding: 12px 25px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.3s ease;
}
.main-navigation .sub-menu a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-hover) !important;
  padding-left: 30px;
}
.main-navigation .sub-menu a:hover::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

/* --- Tools Header --- */
#search-trigger {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
#search-trigger:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background: var(--color-white);
  width: 30px;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  transition: 0.3s;
}
.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
}
.hamburger-inner::before {
  content: "";
  top: -10px;
  left: 0;
  display: block;
}
.hamburger-inner::after {
  content: "";
  bottom: -10px;
  left: 0;
  display: block;
}

/* --- Header Scrolled --- */
.header-sticky-wrapper.is-scrolled .fw-site-header {
  background: var(--color-secondary);
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}
.header-sticky-wrapper.is-scrolled .site-branding img,
.header-sticky-wrapper.is-scrolled .custom-logo {
  max-height: 140px;
}
.header-sticky-wrapper.is-scrolled .main-navigation > ul > li > a {
  color: var(--color-white);
  padding: 15px 15px;
  font-size: 0.85rem;
}
.header-sticky-wrapper.is-scrolled .main-navigation > ul > li > a:hover {
  color: var(--color-primary);
  transform: none;
}
.header-sticky-wrapper.is-scrolled #search-trigger {
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.header-sticky-wrapper.is-scrolled #search-trigger:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.header-sticky-wrapper.is-scrolled .hamburger-inner,
.header-sticky-wrapper.is-scrolled .hamburger-inner::before,
.header-sticky-wrapper.is-scrolled .hamburger-inner::after {
  background-color: var(--color-white);
}

/* ==========================================================================
   3. OVERLAYS & RESPONSIVE HEADER
   ========================================================================== */
/* --- Search Overlay --- */
.fw-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: scale(1.1);
}
.fw-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.fw-search-overlay .search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
}
.fw-search-overlay input.search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  padding: 20px 0;
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}
.fw-search-overlay input.search-field:focus {
  border-color: var(--color-primary);
}
.fw-search-overlay input.search-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.fw-search-overlay .search-submit {
  display: none;
}
#search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  transition:
    transform 0.3s,
    color 0.3s;
}
#search-close:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

/* --- Mobile Menu Drawer --- */
.mobile-menu-drawer,
.drawer-backdrop {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-only,
  .desktop-only-link,
  .schedule,
  .fw-top-bar,
  .main-navigation {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .fw-site-header {
    padding: 15px 0;
    background: linear-gradient(
      180deg,
      rgba(31, 41, 55, 0.6) 0%,
      rgba(31, 41, 55, 0) 100%
    );
  }
  .header-sticky-wrapper.is-scrolled .fw-site-header {
    background: var(--color-secondary);
    padding: 12px 0;
  }
  .site-branding img,
  .custom-logo {
    max-height: 50px;
  }
  .nav-right-area {
    gap: 15px;
  }
  #search-trigger {
    width: 40px;
    height: 40px;
    font-size: 22px;
    border: none;
  }

  .mobile-menu-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--color-white);
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
  }
  .mobile-menu-drawer.active {
    transform: translateX(0);
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .drawer-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
  }
  .drawer-logo {
    max-height: 40px;
    width: auto;
  }
  .drawer-close {
    background: var(--color-bg-light);
    border: none;
    color: var(--color-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      background 0.3s,
      color 0.3s;
  }
  .drawer-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }

  .drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0;
  }
  .mobile-nav-list li {
    border-bottom: 1px solid #f9f9f9;
    position: relative;
  }
  .mobile-nav-list li a {
    display: block;
    padding: 16px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.2s ease;
  }
  .mobile-nav-list li a:active,
  .mobile-nav-list li a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
  }
  .mobile-nav-list .sub-menu {
    display: none;
    background: var(--color-white);
    border-top: 1px solid #eee;
  }
  .mobile-nav-list .sub-menu a {
    padding-left: 40px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
  }

  .submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    border-left: 1px solid #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .submenu-toggle.open {
    background: var(--color-primary);
    color: var(--color-white);
  }
  .submenu-toggle.open span {
    transform: rotate(180deg);
  }

  .drawer-footer {
    padding: 25px;
    background: var(--color-bg-light);
    border-top: 1px solid #eee;
  }
  .drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-whatsapp);
    color: var(--color-white) !important;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: transform 0.3s;
  }
  .drawer-cta:hover {
    transform: translateY(-2px);
  }

  .drawer-contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .drawer-contact-row a {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 18px;
    transition: all 0.3s ease;
  }
  .drawer-contact-row a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
  }

  .drawer-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .drawer-lang .lang-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
  }
  .drawer-lang img {
    height: 24px;
    margin: 0 5px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .mobile-menu-drawer {
    width: 60%;
    max-width: 480px;
  }
  .drawer-header {
    padding: 10px 20px;
    min-height: 50px;
  }
  .drawer-logo {
    max-height: 30px;
  }
  .drawer-footer {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .drawer-lang {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 0.8rem;
  }
  .drawer-cta {
    margin-bottom: 0;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  .drawer-content {
    padding: 5px 0;
  }
  .mobile-nav-list li a {
    padding: 10px 25px;
  }
}

/* ==========================================================================
   4. FOOTER 
   ========================================================================== */
.footer-tripitika {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  position: relative;
  z-index: 10;
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}
.fw-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.footer-logo img {
  display: block;
  margin-bottom: 20px;
  max-width: 150px;
}
.brand-desc {
  line-height: 1.7;
  margin-bottom: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.info-list .dashicons,
.info-list i {
  color: var(--color-primary);
  font-size: 18px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.info-list .text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  transition: color 0.3s;
}
.hover-line:hover {
  color: var(--color-primary);
}

.footer-arrow-menu li {
  margin-bottom: 12px;
}
.footer-arrow-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-arrow-menu a::before {
  content: "»";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: -2px;
  transition: transform 0.3s;
}
.footer-arrow-menu a:hover {
  color: var(--color-white);
  padding-left: 5px;
}
.footer-arrow-menu a:hover::before {
  transform: translateX(3px);
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}
.middle-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.middle-col .label {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.social-circles {
  display: flex;
  gap: 12px;
}
.social-circles a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s;
}
.social-circles svg,
.social-circles i {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-circles a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.payment-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.payment-icons img {
  height: 30px;
  width: auto;
  opacity: 0.6;
  transition: 0.3s;
  border-radius: 0.5rem;
}
.payment-icons img:hover {
  opacity: 1;
  filter: none;
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.text-center {
  text-align: center;
}
.footer-bottom strong {
  color: var(--color-white);
}
.footer-bottom a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--color-hover);
}

.social-circles a i,
.drawer-contact-row a i {
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-circles a i.fa-facebook-f,
.drawer-contact-row a i.fa-facebook-f {
  margin-top: 1px !important;
}

@media (max-width: 992px) {
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 650px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .middle-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .payment-icons {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   5. COMPONENTES GLOBALES (Search, Hero, Tour Card, Blog Card)
   ========================================================================== */

/* --- Search Form --- */
.search-form {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.search-form label {
  width: 100%;
  display: block;
}
.search-form .search-field {
  width: 100%;
  height: 50px;
  padding: 0 55px 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background-color: var(--color-white);
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.search-form .search-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(255, 62, 0, 0.1);
}
.search-form .search-submit {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.search-form .search-submit:hover {
  background-color: var(--color-hover);
}

/* --- Hero Page & Breadcrumbs --- */
.fw-hero-page {
  position: relative;
  height: 60vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  color: var(--color-white);
  overflow: hidden;
}
.fw-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(31, 41, 55, 0.8)
  );
  z-index: 1;
}
.fw-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.fw-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  margin: 15px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}
.fw-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.fw-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fw-breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fw-breadcrumbs a:hover {
  color: var(--color-primary);
}
.fw-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}
.fw-breadcrumbs .current {
  color: var(--color-white);
  font-weight: 700;
}
.fw-breadcrumbs .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .fw-hero-page {
    height: auto;
    padding: 100px 0 60px 0;
  }
  .fw-hero-title {
    font-size: 2rem;
  }
  .fw-breadcrumbs {
    padding: 6px 15px;
    font-size: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
  }
}

/* --- Tour Card --- */
.tour-card {
  background-color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--color-primary);
}
.tour-card-header {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.tour-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 0.6s;
}
.tour-card:hover .tour-img-bg {
  transform: scale(1.1);
}
.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.badge-offer {
  background-color: var(--color-primary);
}
.tour-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-meta-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #aaa;
}
.tour-meta-top .location {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 65%;
}
.tour-meta-top .rating {
  color: #f1c40f;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}
.tour-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  min-height: 2.6em;
}
.tour-card-title a {
  color: var(--color-white);
  transition: 0.3s;
}
.tour-card-title a:hover {
  color: var(--color-primary);
}
.tour-summary-text {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 15px;
  min-height: 4.5em;
  line-height: 1.5;
}
.tour-specs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #ccc;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.spec-item .dashicons,
.spec-item i {
  font-size: 16px;
  color: var(--color-primary);
}
.tour-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  margin-top: auto;
}
.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-box .label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  display: block;
}
.price-box .value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
}
.btn-card-action {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: 0.3s;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-card-action:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(255, 62, 0, 0.4);
}

/* --- Blog Card --- */
.blog-card {
  background-color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
}
.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-cat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-meta .dashicons,
.blog-meta i {
  color: var(--color-primary);
  font-size: 16px;
  width: 16px;
  height: 16px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.blog-title a {
  color: var(--color-white);
  transition: 0.3s;
}
.blog-title a:hover {
  color: var(--color-primary);
}
.blog-excerpt {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
  margin-top: auto;
}
.blog-read-more:hover {
  color: var(--color-hover);
  transform: translateX(5px);
}

/* ==========================================================================
   6. HOME PAGE SECTIONS
   ========================================================================== */

/* --- Hero Slider (Modern Left-Aligned Design) --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-secondary);
}
.hero-slider .splide__track,
.hero-slider .splide__list,
.hero-slider .splide__slide {
  height: 100%;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  /* Efecto de acercamiento un poco más dramático y fluido */
  transition: transform 12s ease-in-out;
}
.splide__slide.is-active .hero-bg {
  transform: scale(1.15);
}

/* Nuevo Overlay: Gradiente horizontal intenso en la izquierda, difuminado a la derecha */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(17, 24, 39, 0.85) 0%,
    rgba(31, 41, 55, 0.5) 50%,
    rgba(31, 41, 55, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Forzamos alineación a la izquierda */
  text-align: left; /* Texto a la izquierda */
}
.hero-text-box {
  max-width: 800px;
  padding-top: 60px;
}

/* Subtítulo con nueva línea decorativa lateral */
.hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.hero-subtitle-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-primary); /* Línea Naranja Vibrante */
}
.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary); /* Subtítulo ahora es Naranja */
  font-weight: 800;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem); /* Título ligeramente más grande */
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
  text-shadow: none; /* Quitamos sombra porque el nuevo fondo oscuro ya resalta el texto */
}

/* Descripción con barra lateral elegante */
.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 0 40px 0;
  line-height: 1.7;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
}

/* Botón rediseñado: Sólido, fuerte y con brillo Naranja */
.btn-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 45px;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(255, 62, 0, 0.3);
}
.btn-hero:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 62, 0, 0.4);
}

/* Nuevas animaciones: Slide desde la izquierda en lugar de abajo hacia arriba */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.splide__slide.is-active .reveal-left {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* Controles Splide rediseñados con efecto cristal */
.hero-slider .splide__arrow {
  background: rgba(255, 255, 255, 0.05);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.hero-slider .splide__arrow svg {
  fill: var(--color-white);
  width: 18px;
  height: 18px;
  transition: fill 0.3s ease;
}
.hero-slider .splide__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

/* Paginación estilo "Líneas/Dashes" alineada a la izquierda */
.hero-slider .splide__pagination {
  bottom: 40px;
  justify-content: flex-start; /* Alineado al texto */
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  left: 0;
  right: 0;
}
.hero-slider .splide__pagination__page {
  background: rgba(255, 255, 255, 0.3);
  width: 30px; /* Convertido en línea */
  height: 4px;
  border-radius: 4px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.hero-slider .splide__pagination__page.is-active {
  background: var(--color-primary);
  width: 50px; /* Se estira al estar activo */
  transform: none; /* Quitamos el scale del diseño anterior */
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .hero-overlay {
    /* En móviles volvemos al gradiente vertical porque el texto ocupa toda la pantalla */
    background: linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.4) 0%,
      rgba(31, 41, 55, 0.95) 100%
    );
  }
  .hero-content {
    justify-content: center;
    text-align: center;
  }
  .hero-subtitle-wrapper {
    justify-content: center;
  }
  .hero-subtitle-line {
    display: none; /* Ocultamos la línea en móvil para centrar bien */
  }
  .hero-desc {
    border-left: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }
  .reveal-left {
    transform: translateY(30px); /* Vuelve a animar desde abajo en móviles */
  }
  .splide__slide.is-active .reveal-left {
    transform: translateY(0);
  }
  .hero-slider .splide__pagination {
    justify-content: center; /* Centramos paginación en móvil */
  }
}

/* --- Sección Intro (Composite Image Style) --- */
.section-intro-tripitika {
  padding: 100px 0;
  background-color: var(--color-bg-light); /* Fondo suave */
  overflow: hidden;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Composición de Imágenes */
.image-composite {
  position: relative;
  width: 100%;
  padding-right: 40px; /* Espacio para la imagen secundaria */
  padding-bottom: 40px; 
}
.image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.1);
  aspect-ratio: 4/5;
  z-index: 1;
}
.image-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid var(--color-bg-light); /* Borde del color del fondo para separar */
  box-shadow: 0 15px 30px rgba(31, 41, 55, 0.15);
  z-index: 2;
}
.intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-main:hover .intro-img,
.image-sub:hover .intro-img {
  transform: scale(1.08);
}

/* Badge Flotante (Años de experiencia) */
.experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background-color: var(--color-primary); /* Naranja Vibrante */
  color: var(--color-white);
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(255, 62, 0, 0.3);
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: float-badge 4s ease-in-out infinite;
}
.experience-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}
.experience-badge .badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.2;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Textos de Introducción */
.pill-label {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 62, 0, 0.2);
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  background: rgba(255, 62, 0, 0.05);
}
.section-title-large {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-secondary); /* Título en Gris Carbón Fuerte */
  line-height: 1.1;
  margin-bottom: 30px;
}
.highlight-text {
  color: var(--color-primary); /* Acento Naranja */
}
.intro-description {
  color: #4b5563; /* Gris medio cómodo para leer */
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.intro-description p {
  margin-bottom: 15px;
}

/* Área de Acción (Botón + Stats) */
.intro-action-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.btn-intro {
  background-color: var(--color-secondary); /* Botón principal Gris Carbón */
  color: var(--color-white);
  padding: 16px 35px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-intro:hover {
  background-color: var(--color-primary); /* Cambia a Naranja al Hover */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 62, 0, 0.25);
  color: var(--color-white);
}

.intro-stats-mini {
  display: flex;
  gap: 30px;
}
.stat-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-item-mini .dashicons {
  font-size: 32px;
  width: 32px;
  height: 32px;
  color: var(--color-primary); /* Icono Naranja */
  opacity: 0.2; /* Estilo marca de agua sutil */
}
.stat-data {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .section-intro-tripitika {
    padding: 70px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .intro-image-col {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 30px; /* Compensa el badge flotante en móvil */
  }
  .section-title-large {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .image-composite {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .experience-badge {
    left: -15px;
    padding: 15px 20px;
  }
  .experience-badge .badge-num {
    font-size: 1.8rem;
  }
  .intro-action-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .intro-stats-mini {
    width: 100%;
    justify-content: space-between;
  }
}

/* --- Tour Types --- */
.section-tour-types {
  padding: 50px 0;
  background-color: var(--color-white);
  position: relative;
}
.section-header.text-center {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tour-types-carousel {
  padding: 0 10px;
}
.tour-type-card-animated {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.tour-type-card-animated:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 62, 0, 0.15);
}
.card-image-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.tour-type-card-animated:hover .card-image-background {
  transform: scale(1.1);
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(31, 41, 55, 0.9) 0%,
    rgba(31, 41, 55, 0.5) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 2;
}
.card-badge {
  position: absolute;
  bottom: 25px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 4;
  border: 1px solid var(--color-primary);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 62, 0, 0.3);
}
.textBox {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 130px);
  padding: 0;
  z-index: 3;
  text-align: left;
  pointer-events: none;
}
.textBox .head {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  word-wrap: break-word;
}
.card-details {
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-top: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.explore-btn {
  display: none;
}

.tour-types-carousel .splide__arrow {
  background: var(--color-white);
  opacity: 1;
  width: 50px;
  height: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: 0.3s;
}
.tour-types-carousel .splide__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.tour-types-carousel .splide__arrow:hover svg {
  fill: var(--color-white);
}
.tour-types-carousel .splide__pagination {
  bottom: -40px;
}
.tour-types-carousel .splide__pagination__page.is-active {
  background: var(--color-primary);
  transform: scale(1.3);
}
#tour-types-carousel .splide__track {
  padding-top: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-tour-types {
    padding: 60px 0;
  }
  .tour-type-card-animated {
    height: 380px;
  }
  .section-title-large {
    font-size: 2rem;
  }
  #tour-types-carousel .splide__track {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

/* --- Journey Beyond (Dark Immersive Layout) --- */
.section-dark-journey {
  padding: 100px 0 120px 0;
  background-color: #0a0c10; /* Fondo extra oscuro para dar profundidad */
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo */
.section-dark-journey::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 62, 0, 0.05) 0%, rgba(10, 12, 16, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.journey-header-top {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.pill-label-gold {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 62, 0, 0.3);
  color: var(--color-primary); /* Texto Naranja Vibrante */
  background: rgba(255, 62, 0, 0.05);
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-weight: 700;
}
.journey-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.text-gold {
  color: var(--color-primary); /* Texto destacado en Naranja Vibrante */
}
.journey-intro-text {
  color: #9ca3af;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Layout Interactivo (Imagen Izquierda, Tarjetas Superpuestas Derecha) */
.journey-interactive-layout {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Columna Visual (Imagen grande) */
.journey-visual-col {
  width: 55%;
  position: relative;
}
.video-card-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5; /* Formato vertical elegante */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.video-card-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0) 50%, #0a0c10 100%); /* Difumina el borde derecho hacia el fondo */
  pointer-events: none;
}
.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.video-card-wrapper:hover .video-bg {
  transform: scale(1.08);
}

.video-logos-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  z-index: 5;
}
.video-logos-strip img {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7); /* Logos en blanco sutil */
  transition: all 0.4s ease;
}
.video-logos-strip img:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: translateY(-2px);
}

/* Columna de Servicios (Tarjetas flotantes) */
.journey-services-col {
  width: 55%;
  margin-left: -10%; /* Superposición crucial */
  position: relative;
  z-index: 10;
}

.services-list-dark {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.service-card-floating {
  background: rgba(31, 41, 55, 0.6); /* Gris carbón translúcido */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s;
}
.service-card-floating:hover {
  transform: translateX(-15px);
  border-color: rgba(255, 62, 0, 0.3); /* Borde se ilumina naranja al hover */
  background: rgba(31, 41, 55, 0.9);
}

.svc-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-primary); /* Número delineado naranja */
  opacity: 0.8;
  line-height: 1;
}

.svc-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  color: var(--color-white);
}
.svc-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Acción Inferior */
.text-right {
  text-align: right;
  padding-right: 20px;
}
.btn-gold {
  background: var(--color-primary); /* Botón Naranja Vibrante */
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 62, 0, 0.2);
}
.btn-gold:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(255, 62, 0, 0.3);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .journey-interactive-layout {
    flex-direction: column;
  }
  .journey-visual-col {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px auto;
  }
  .video-card-wrapper {
    aspect-ratio: 16/10; /* Vuelve a horizontal en móviles */
  }
  .video-card-wrapper::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, #0a0c10 100%);
  }
  .journey-services-col {
    width: 100%;
    margin-left: 0;
  }
  .service-card-floating:hover {
    transform: translateY(-5px); /* Movimiento vertical en móvil */
  }
  .text-right {
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .video-logos-strip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }
  .service-card-floating {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
}

/* --- CTA Banner (Glassmorphism Style) --- */
.section-cta-banner {
  position: relative;
  height: 80vh; /* Ligeramente más alto para dar respiro al cristal */
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 20s ease; /* Efecto zoom lento */
}
.section-cta-banner:hover .cta-bg-image {
  transform: scale(1.08);
}

/* Overlay más limpio y moderno */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.4); /* Solo oscurece la foto, el cristal hará el resto */
  z-index: 1;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Nuevo: Caja de Cristal (Glassmorphism) */
.cta-glass-box {
  background: rgba(31, 41, 55, 0.75); /* Gris Carbón translúcido */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 50px;
  border-radius: 24px;
  max-width: 850px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  /* Sutil resplandor Naranja en el borde inferior */
  border-bottom: 4px solid var(--color-primary);
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 62, 0, 0.15); /* Fondo suave Naranja */
  color: var(--color-primary); /* Texto Naranja Vibrante */
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 62, 0, 0.3);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.text-highlight {
  color: var(--color-primary); /* Acento Naranja Vibrante */
}

.cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón rediseñado para WhatsApp */
.btn-cta-whatsapp {
  background-color: var(--color-whatsapp); /* Verde WhatsApp */
  color: var(--color-white);
  padding: 18px 45px;
  font-size: 1.05rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-cta-whatsapp i {
  font-size: 1.3rem; /* Icono un poco más grande */
}
.btn-cta-whatsapp:hover {
  background-color: var(--color-white);
  color: var(--color-whatsapp);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Animaciones */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-cta-banner {
    height: auto;
    padding: 100px 15px;
    min-height: auto;
  }
  .cta-glass-box {
    padding: 40px 25px;
    border-radius: 16px;
  }
  .cta-desc {
    font-size: 1.05rem;
  }
  .btn-cta-whatsapp {
    width: 100%; /* Botón ancho completo en móvil */
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

/* --- Tours Tabs --- */
.section-tours-tabs {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}
.tours-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
.tab-pill {
  background: transparent;
  border: 1px solid rgba(255, 62, 0, 0.3);
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-pill:hover {
  border-color: var(--color-primary);
  background: rgba(255, 62, 0, 0.05);
}
.tab-pill.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
  transform: translateY(-2px);
}
.tours-tab-pane {
  display: none;
  animation: fadeInSlide 0.6s ease;
}
.tours-tab-pane.active {
  display: block;
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-splide {
  padding: 0 10px;
}
.tab-splide .splide__track {
  padding-bottom: 50px;
  padding-top: 20px;
  overflow: hidden;
}
.tab-splide .tour-card {
  height: 100%;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 50px;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tours-tabs-nav {
    gap: 10px;
  }
  .tab-pill {
    padding: 10px 20px;
    font-size: 0.8rem;
    flex: 1 1 auto;
    text-align: center;
  }
}

/* --- Top Rated & Reviews --- */
.section-top-rated {
  padding: 100px 0;
  background-color: #0b0d10;
  color: var(--color-white);
}
.top-rated-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.tr-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.tr-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.tr-image-wrapper:hover .tr-bg-img {
  transform: scale(1.05);
}

.glass-offer-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.offer-badge {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.4);
}
.offer-badge .dashicons {
  color: var(--color-white);
  font-size: 24px;
}
.offer-text h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.offer-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
  opacity: 0.9;
}

.reviews-dark-section {
  padding: 0 10px;
}
.review-card-dark {
  background-color: var(--color-secondary);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.review-card-dark:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(255, 62, 0, 0.15);
}
.review-card-dark .stars {
  color: #f59e0b;
  margin-bottom: 20px;
  display: flex;
  gap: 2px;
}
.review-card-dark .stars .dashicons {
  font-size: 18px;
  width: 18px;
}
.review-card-dark .review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 30px;
  min-height: 80px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
}
.author-avatar .dashicons {
  color: var(--color-white);
}
.author-info h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-white);
}
.author-info span {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
}
.quote-mark {
  margin-left: auto;
  font-size: 3rem;
  line-height: 0;
  color: rgba(255, 62, 0, 0.2);
  font-family: serif;
  position: relative;
  top: 10px;
}
#reviews-carousel .splide__track {
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .top-rated-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .tr-image-wrapper {
    aspect-ratio: 16/9;
    margin-bottom: 20px;
  }
  .glass-offer-card {
    padding: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  .tr-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  #reviews-carousel .splide__track {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}

/* --- Home FAQs (Card Accordion Style) --- */
.section-home-faqs {
  padding: 100px 0;
  background-color: var(--color-white);
  /* Sutil fondo para enmarcar la sección */
  background-image: linear-gradient(to bottom, #ffffff 0%, var(--color-bg-light) 100%);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-intro-col .section-title-large {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--color-secondary); /* Titulo principal en Gris Carbón */
}

.faq-intro-col .section-desc {
  color: #4b5563;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Columna del Acordeón (Tarjetas Flotantes) */
.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Separación entre tarjetas */
}

.home-faq-item {
  background-color: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(31, 41, 55, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.home-faq-item:hover {
  border-color: rgba(255, 62, 0, 0.3); /* Borde sutil naranja al hover */
  box-shadow: 0 10px 25px rgba(255, 62, 0, 0.08);
  transform: translateY(-2px);
}

.home-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-q-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  flex-grow: 1;
  transition: color 0.3s;
  line-height: 1.4;
}

/* Icono redondo con flecha */
.faq-icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon-wrapper i {
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Estados Activos (Pregunta Abierta) --- */
.home-faq-item.active {
  border-color: var(--color-primary); /* Borde naranja sólido */
  box-shadow: 0 10px 30px rgba(255, 62, 0, 0.1);
}

.home-faq-item.active .faq-q-text {
  color: var(--color-primary); /* Texto naranja */
}

.home-faq-item.active .faq-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.home-faq-item.active .faq-icon-wrapper i {
  transform: rotate(180deg); /* La flecha gira hacia arriba */
}

/* Contenido de la respuesta */
.home-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-faq-content .inner-text {
  padding: 0 30px 30px 30px; /* Padding bottom, top es manejado por el trigger */
  color: #4b5563;
  line-height: 1.8;
  font-size: 1rem;
}
.home-faq-content .inner-text p {
  margin: 0; /* Evita que el margen del párrafo rompa la animación */
}

/* Responsive */
@media (max-width: 992px) {
  .section-home-faqs {
    padding: 70px 0;
  }
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-intro-col {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .faq-intro-col .section-title-large {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .home-faq-trigger {
    padding: 20px;
  }
  .faq-q-text {
    font-size: 1.05rem;
  }
  .home-faq-content .inner-text {
    padding: 0 20px 20px 20px;
  }
}

/* --- Home Blog --- */
.section-home-blog {
  padding: 50px 0;
  background-color: var(--color-bg-light);
}
.blog-card-home {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(31, 41, 55, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.blog-card-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 62, 0, 0.08);
  border-color: var(--color-primary);
}
.blog-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-home:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

#home-blog-carousel {
  padding: 0 10px;
}
#home-blog-carousel .splide__track {
  padding-top: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}
#home-blog-carousel .splide__arrow {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 50px;
  height: 50px;
  opacity: 1;
  transition: all 0.3s ease;
}
#home-blog-carousel .splide__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
#home-blog-carousel .splide__arrow:hover svg {
  fill: var(--color-white);
}
@media (max-width: 768px) {
  .blog-img-wrapper {
    height: 200px;
  }
  .blog-title {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   7. ARCHIVE & SIDEBAR
   ========================================================================== */
.section-archive {
  background-color: var(--color-bg-light);
  padding-bottom: 80px;
}
.archive-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.archive-sidebar {
  background: var(--color-white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 200px;
  z-index: 90;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.filter-group {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-search-input {
  position: relative;
  width: 100%;
}
.filter-search-input input {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: var(--color-white);
  color: var(--color-text);
  transition: all 0.3s ease;
}
.filter-search-input input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.1);
}
.filter-search-input .dashicons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.fw-checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #4b5563;
  transition: 0.2s;
}
.fw-checkbox-item:hover {
  color: var(--color-secondary);
}
.fw-checkbox-item input {
  display: none;
}
.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}
.fw-checkbox-item input:checked + .checkmark {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.fw-checkbox-item input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.count {
  margin-left: auto;
  font-size: 0.8rem;
  color: #aaa;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 10px;
}

.archive-sidebar .button,
.archive-sidebar .btn-full {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  padding: 12px 15px;
  margin-top: 15px;
}
.btn-reset-filters {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
  text-decoration: underline;
}
.btn-reset-filters:hover {
  color: var(--color-primary);
}

.archive-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.tours-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.tours-grid-layout .tour-card {
  height: 100%;
  margin: 0;
}

.fw-pagination {
  margin-top: 60px;
  width: 100%;
}
.fw-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fw-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid #e5e7eb;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.fw-pagination .page-numbers.current,
.fw-pagination .page-numbers:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(31, 41, 55, 0.3);
}
.fw-pagination .next,
.fw-pagination .prev {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
}

.filters-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.filters-backdrop.active {
  display: block;
  opacity: 1;
}
.mobile-filter-toggle {
  display: none;
}
.sidebar-header-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }
  .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
  }
  .mobile-filter-toggle:active {
    background-color: var(--color-secondary);
    color: var(--color-white);
  }

  .archive-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    max-width: 85vw;
    z-index: 10000;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    visibility: hidden;
  }
  .archive-sidebar.active {
    transform: translateX(0);
    visibility: visible;
  }

  .sidebar-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  .sidebar-header-mobile h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
  }
  .btn-clean {
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
  }
  .btn-clean:hover {
    background-color: #f0f0f0;
    color: var(--color-primary);
  }
}

a.fw-checkbox-item {
  color: #4b5563;
  display: flex;
  width: 100%;
}
a.fw-checkbox-item:hover {
  color: var(--color-secondary);
}
a.fw-checkbox-item input:checked + .checkmark {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.tagcloud-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fw-tag {
  font-size: 0.8rem;
  color: #6b7280;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.2s;
}
.fw-tag:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.fw-filter-form button[type="submit"] {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 12px 15px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.fw-filter-form button[type="submit"]:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.2);
}

/* ==========================================================================
   8. SINGLE BLOG STYLES 
   ========================================================================== */
.section-single-post {
  padding-bottom: 80px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: stretch;
}

.blog-sidebar {
  position: relative;
}
.sidebar-inner-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-sidebar .sidebar-widget {
  margin-bottom: 30px;
  box-shadow: rgba(31, 41, 55, 0.04) 0px 5px 15px;
  background: var(--color-bg-light);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.blog-sidebar .sidebar-widget:hover {
  box-shadow: 0 15px 30px rgba(31, 41, 55, 0.08);
  border-color: #d1d5db;
}
.blog-sidebar .widget-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-list li {
  margin-bottom: 8px;
}
.cat-list li a {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.2s;
  text-decoration: none;
}
.cat-list li a:hover {
  background: rgba(255, 62, 0, 0.05);
  color: var(--color-primary);
  padding-left: 15px;
}
.cat-list .count {
  background: #e5e7eb;
  color: #4b5563;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.mini-post-card {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  align-items: center;
}
.mini-post-card:last-child {
  margin-bottom: 0;
}
.mini-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.mini-post-card:hover .mini-img img {
  transform: scale(1.1);
}
.mini-data h6 {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text);
  font-weight: 700;
  transition: color 0.3s ease;
}
.mini-post-card:hover h6 {
  color: var(--color-primary);
}
.mini-data .date {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-widget {
  background: var(--color-primary) !important;
  color: var(--color-white);
  text-align: center;
  border: none !important;
}
.cta-widget h4 {
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.entry-content {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.8;
}
.entry-content p {
  margin-bottom: 25px;
}
.entry-content h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
  border-left: 4px solid var(--color-secondary);
  padding-left: 20px;
  margin-top: 45px;
  margin-bottom: 25px;
}
.entry-content blockquote {
  background: var(--color-bg-light);
  border-radius: 8px;
  margin: 30px 0;
  padding: 30px 40px;
  font-style: italic;
  font-size: 1.15rem;
  color: #4b5563;
  position: relative;
}
.entry-content blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(31, 41, 55, 0.05);
  position: absolute;
  top: 0;
  left: 10px;
  font-family: serif;
}
.entry-content img {
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-footer {
  margin: 50px 0;
  padding: 25px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.post-tags a {
  background: #f3f4f6;
  color: #4b5563;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-right: 5px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}
.post-tags a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
}
.share-btn:hover {
  transform: translateY(-3px);
}
.share-btn.fb {
  background: #3b5998;
}
.share-btn.tw {
  background: #1da1f2;
}
.share-btn.wa {
  background: var(--color-whatsapp);
}

.post-navigation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px 0;
}
.nav-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.nav-card a:hover {
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(255, 62, 0, 0.08);
  transform: translateY(-5px);
}
.nav-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.nav-next a {
  align-items: flex-end;
  text-align: right;
}
.nav-card a:hover .nav-title {
  color: var(--color-primary);
}
.nav-empty {
  color: #d1d5db;
  font-style: italic;
}

.comments-area {
  margin-top: 80px;
}
.comments-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--color-primary);
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 15px;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-body {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.comment-author .avatar {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 3px solid var(--color-bg-light);
}
.fn {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2px;
  font-style: normal;
}
.comment-metadata {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.comment-metadata a {
  color: #9ca3af;
  text-decoration: none;
}
.comment-metadata a:hover {
  color: var(--color-secondary);
}
.comment-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}
.reply {
  text-align: right;
}
.comment-reply-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 6px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}
.comment-reply-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.comment-list .children {
  list-style: none;
  margin-left: 50px;
  padding-left: 0;
  border-left: 2px solid #e5e7eb;
}
.comment-list .children .comment-body {
  margin-left: 20px;
  background: var(--color-bg-light);
}

.comment-form-wrapper {
  background: var(--color-bg-light);
  border: 1px solid #e5e7eb;
  padding: 40px;
  border-radius: 16px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.reply-title-custom {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 800;
}
.reply-desc-custom {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}
.comment-form-wrapper .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.comment-form-wrapper label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comment-form-wrapper input[type="text"],
.comment-form-wrapper input[type="email"],
.comment-form-wrapper textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background: var(--color-white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.comment-form-wrapper input:focus,
.comment-form-wrapper textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.15);
}
.comment-form-cookies-consent {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-submit-comment {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
}
.btn-submit-comment:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 62, 0, 0.4);
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    margin-top: 50px;
  }
  .sidebar-inner-sticky {
    position: static;
  }
}
@media (max-width: 768px) {
  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comment-form-wrapper {
    padding: 25px;
  }
  .post-navigation-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .nav-next a {
    text-align: left;
  }
  .nav-next .nav-label {
    justify-content: flex-start;
  }
  .comment-list .children {
    margin-left: 15px;
    padding-left: 0;
    border-left: none;
  }
  .comment-list .children .comment-body {
    margin-left: 0;
    border-left: 4px solid var(--color-secondary);
  }
}

/* ==========================================================================
   9. PAGE 404 STYLES 
   ========================================================================== */
.section-404-background {
  background-color: var(--color-bg-light);
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-404-wrapper {
  background: var(--color-white);
  max-width: 850px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(31, 41, 55, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card-404-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.huge-404 {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #e5e7eb;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: -5px;
  opacity: 0.6;
}
.message-404 h3 {
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 15px;
  font-weight: 800;
}
.message-404 p {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 550px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.search-404-container {
  max-width: 450px;
  margin: 0 auto;
}
.search-form-404 {
  position: relative;
}
.search-form-404 input {
  width: 100%;
  padding: 18px 60px 18px 25px;
  background: var(--color-bg-light);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  color: var(--color-text);
  transition: 0.3s;
}
.search-form-404 input:focus {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(255, 62, 0, 0.1);
  outline: none;
}
.search-form-404 button {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 45px;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.search-form-404 button:hover {
  transform: scale(1.05);
  background: var(--color-hover);
}
.divider-404 {
  height: 1px;
  background: #e5e7eb;
  margin: 50px 0;
}

.actions-grid-404 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.action-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}
.action-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 62, 0, 0.08);
}
.action-card .icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.2rem;
  transition: 0.3s;
}
.action-card:hover .icon-wrap {
  background: var(--color-primary);
  color: var(--color-white);
}
.action-card .text-wrap {
  flex: 1;
}
.action-card strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  transition: color 0.3s ease;
}
.action-card:hover strong {
  color: var(--color-primary);
}
.action-card span {
  display: block;
  color: #9ca3af;
  font-size: 0.8rem;
}
.action-card .arrow {
  color: #d1d5db;
  font-size: 0.9rem;
  transition: 0.3s;
}
.action-card:hover .arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}
.action-card.highlight {
  background: rgba(255, 62, 0, 0.03);
  border-color: rgba(255, 62, 0, 0.2);
}

.suggestions-404 h4 {
  font-size: 0.9rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.mini-dest-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.pill-dest-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-light);
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
}
.pill-dest-link:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.1);
  transform: translateY(-2px);
}
.pill-dest-link img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.pill-dest-link span {
  color: #4b5563;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.pill-dest-link:hover span {
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .card-404-wrapper {
    padding: 40px 30px;
  }
  .huge-404 {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .actions-grid-404 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .action-card {
    padding: 15px;
  }
  .huge-404 {
    font-size: 5rem;
  }
  .section-404-background {
    padding: 40px 15px;
  }
}

/* ==========================================================================
   10. PAGE DEFAULT STYLES 
   ========================================================================== */
.section-page-sidebar {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: var(--color-bg-light);
}
.page-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: stretch;
}

.page-card-white {
  background: var(--color-white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(31, 41, 55, 0.05);
  border: 1px solid #e5e7eb;
}
.entry-header-internal {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 25px;
  margin-bottom: 35px;
}
.page-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.entry-title-internal {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
  font-weight: 800;
}

.text-formatting {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}
.text-formatting p {
  margin-bottom: 25px;
}
.text-formatting h2 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin: 45px 0 20px 0;
  border-left: 4px solid var(--color-secondary);
  padding-left: 15px;
}
.text-formatting h3 {
  font-size: 1.3rem;
  margin: 35px 0 15px 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.text-formatting ul,
.text-formatting ol {
  margin-bottom: 30px;
  padding-left: 20px;
}
.text-formatting li {
  margin-bottom: 10px;
}
.text-formatting a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.text-formatting a:hover {
  color: var(--color-hover);
}

.entry-footer-date {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: #9ca3af;
  font-style: italic;
}

.page-sidebar-column {
  position: relative;
}
.sidebar-inner-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-widget {
  background: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.03);
}
.widget-title {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f9f9f9;
  font-weight: 800;
  text-transform: uppercase;
}

.help-widget {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--color-white);
  border: none;
  text-align: center;
}
.help-header {
  margin-bottom: 15px;
}
.help-header i,
.help-header .dashicons {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  width: auto;
  height: auto;
}
.help-header h4 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--color-white);
  font-weight: 700;
}
.help-widget p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.5;
}
.btn-whatsapp {
  background: var(--color-white);
  color: #128c7e;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-list-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mini-card-item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e5e7eb;
}
.mini-card-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mini-card-item:hover .mini-img img {
  transform: scale(1.1);
}
.mini-card-item:hover h5 {
  color: var(--color-primary);
}
.mini-img {
  width: 70px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.mini-content h5 {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--color-text);
  font-weight: 700;
  transition: color 0.3s ease;
}
.mini-content .price {
  font-size: 0.8rem;
  color: #6b7280;
}
.link-more {
  display: block;
  margin-top: 15px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
}
.link-more:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

.sidebar-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-text-list li {
  margin-bottom: 15px;
}
.sidebar-text-list li:last-child {
  margin-bottom: 0;
}
.sidebar-text-list a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: flex-start;
}
.blog-date {
  background: var(--color-bg-light);
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.blog-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.4;
  transition: 0.2s;
}
.sidebar-text-list a:hover .blog-text {
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .page-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-card-white {
    padding: 40px;
  }
  .sidebar-inner-sticky {
    position: static;
  }
  .page-sidebar-column {
    order: 2;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .page-card-white {
    padding: 25px;
  }
  .entry-title-internal {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   11. CONTACT PAGE & PREMIUM FORM 
   ========================================================================== */
.section-contact-page {
  padding-top: 80px;
  background-color: var(--color-bg-light);
}
.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.info-intro .sub-title {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.info-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-primary);
}
.info-intro p {
  color: #4b5563;
  margin-bottom: 40px;
}

.contact-details-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-card-item {
  display: flex;
  gap: 20px;
}
.contact-card-item .icon-box {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(31, 41, 55, 0.05);
  flex-shrink: 0;
}
.contact-card-item .text-box h4 {
  margin: 0 0 5px 0;
  font-size: 1.05rem;
  color: var(--color-secondary);
}
.contact-card-item .text-box p,
.contact-card-item .text-box a {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-card-item .text-box a:hover {
  color: var(--color-primary);
}

.contact-socials {
  margin-top: 50px;
}
.contact-socials h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(31, 41, 55, 0.2);
}

.form-wrapper-white {
  background: var(--color-white);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(31, 41, 55, 0.08);
}
.form-wrapper-white h3 {
  margin-bottom: 30px;
  color: var(--color-primary);
}
.bc-premium-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.form-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-col.full-width {
  grid-column: 1 / -1;
}
.form-col label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 2px;
}

.bc-input {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fdfdfd;
  font-size: 1rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  font-family: inherit;
  -webkit-appearance: none;
}
.bc-input:focus {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.15);
  outline: none;
}
textarea.bc-input {
  resize: vertical;
  min-height: 120px;
}

.captcha-section .bc-captcha-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.captcha-img-box {
  background: var(--color-bg-light);
  padding: 5px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}
.captcha-input-box {
  flex: 1;
  min-width: 150px;
}
.captcha-input-box .bc-input {
  padding: 10px;
}

.bc-btn-submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(255, 62, 0, 0.2);
}
.bc-btn-submit:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 62, 0, 0.3);
}
.wpcf7-spinner {
  margin-top: 15px;
}

.contact-map-full {
  height: 450px;
  filter: grayscale(0.1);
  transition: 0.5s;
  display: block;
}
.contact-map-full:hover {
  filter: grayscale(0);
}

@media (max-width: 992px) {
  .contact-split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .form-wrapper-white {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-contact-page {
    padding-top: 40px;
  }
  .info-intro h2 {
    font-size: 1.8rem;
  }
  .captcha-section .bc-captcha-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .captcha-input-box {
    width: 100%;
  }
}

/* ==========================================================================
   12. ABOUT PAGE STYLES
   ========================================================================== */

/* --- Historia --- */
.section-about-story {
  padding: 100px 0;
  background-color: var(--color-white);
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-content .sub-title {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}
.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--color-primary);
  line-height: 1.2;
}
.about-quote {
  margin-top: 30px;
  border-left: 4px solid var(--color-primary);
  padding: 25px;
  font-style: italic;
  color: var(--color-text);
  font-size: 1.1rem;
  background: var(--color-bg-light);
  border-radius: 0 12px 12px 0;
}
.story-image {
  position: relative;
}
.story-image .img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 41, 55, 0.15);
}
.story-image .img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.story-image:hover .img-frame img {
  transform: scale(1.05);
}
.exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 25px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2;
}
.exp-badge .number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
}
.exp-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}

/* --- Misión y Visión --- */
.section-mission-vision {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mv-card {
  background: var(--color-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.1);
}
.mv-card .icon-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.mv-card .icon-header i {
  font-size: 2.2rem;
  color: var(--color-primary);
}
.mv-card .icon-header h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--color-secondary);
  font-weight: 800;
}
.mv-card p {
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}
.mv-card.dark-card {
  background: var(--color-primary);
  border: none;
}
.mv-card.dark-card .icon-header h3,
.mv-card.dark-card p,
.mv-card.dark-card .icon-header i {
  color: var(--color-white);
}
.mv-card.dark-card:hover {
  background: var(--color-hover);
}

/* --- Valores --- */
.section-values {
  padding: 100px 0;
  background: var(--color-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-item {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fdfdfd;
}
.value-item:hover {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 15px 35px rgba(255, 62, 0, 0.08);
}
.val-icon {
  width: 70px;
  height: 70px;
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.value-item:hover .val-icon {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: rotateY(360deg);
}
.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
  font-weight: 700;
}
.value-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* --- CTA Final --- */
.section-about-cta {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  text-align: center;
}
.overlay-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, 0.8),
    rgba(255, 62, 0, 0.4)
  );
}
.content-cta {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.content-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 900;
  line-height: 1.1;
}
.content-cta p {
  font-size: 1.3rem;
  margin-bottom: 45px;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-outline-white {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-image {
    order: -1;
    margin-bottom: 40px;
  }
  .exp-badge {
    left: 20px;
  }
  .content-cta h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .story-content h2,
  .content-cta h2 {
    font-size: 2.2rem;
  }
  .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
  .btn-outline-white {
    width: 100%;
    text-align: center;
  }
  .exp-badge {
    padding: 15px 25px;
  }
}

/* ==========================================================================
   13. FIXES & UTILITIES
   ========================================================================== */

/* --- FIX INPUT PAIS / TELEFONO (Dropdown Color Fix) --- */
select option {
  background-color: var(--color-white) !important;
  color: var(--color-text) !important;
}
.iti__country-list,
.intl-tel-input .country-list {
  background-color: var(--color-white) !important;
  border: 1px solid #d1d5db !important;
  color: var(--color-text) !important;
}
.iti__country-list .iti__country,
.intl-tel-input .country-list .country {
  color: var(--color-text) !important;
}
.iti__country-name,
.intl-tel-input .country-list .country-name {
  color: var(--color-text) !important;
}
.iti__country-list .iti__country:hover,
.iti__country-list .iti__country.iti__highlight,
.intl-tel-input .country-list .country:hover,
.intl-tel-input .country-list .country.highlight {
  background-color: var(--color-bg-light) !important;
  color: var(--color-primary) !important;
}
.booking-form select,
.reservation-form select {
  color: var(--color-text);
  background-color: var(--color-white);
}

/* --- DIFERENCIACIÓN DE NEGRITAS EN EL BLOG --- */
.entry-content strong,
.entry-content b {
  color: var(--color-text);
  font-weight: 700;
}
.entry-content a strong,
.entry-content strong a,
.entry-content a b,
.entry-content b a {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}
.entry-content a strong:hover,
.entry-content strong a:hover {
  color: var(--color-hover);
  text-decoration: none;
}
