[x-cloak] {
  display: none !important;
}

@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/2a37af55a999bc0f86aa20597c1fb573.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/2a37af55a999bc0f86aa20597c1fb573.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/b2993d987b5c093b8e2f484b40d7cf58.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/b2993d987b5c093b8e2f484b40d7cf58.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/43b27bb39d30a1c5e6a45769a5f9f692.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/43b27bb39d30a1c5e6a45769a5f9f692.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --navy: #1b2e4a;
  --navy-dark: #12233d;
  --gold: #e8b731;
  --gold-dark: #d4a320;
  --cream: #fef9e7;
  --bg-light: #edf1f5;
  --bg-white: #ffffff;
  --text-dark: #1b2e4a;
  --text-body: #3a4a5e;
  --text-muted: #7a8a9e;
  --green: #a8d86e;
  --font-main: "Marine", "DM Sans", -apple-system, sans-serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --tr: .3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.2;
}

#mainNav {
  padding: 1rem 0;
  transition: all var(--tr);
  z-index: 1050;
}
#mainNav .container {
  max-width: 96%;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: auto;
  transition: all var(--tr);
}

#mainNav.scrolled .brand-logo {
  height: 42px;
}

.navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.9rem;
  transition: color var(--tr);
}
.navbar-nav .nav-link:hover {
  color: var(--gold);
}

#mainNav.scrolled .nav-link {
  color: var(--text-body);
}

#mainNav.scrolled .nav-link:hover {
  color: var(--gold-dark);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27,46,74,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-community-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 50px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  text-decoration: none;
  transition: all var(--tr);
}

.btn-community-white {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--navy);
}
.btn-community-white:hover {
  background: #f5f5f5;
  color: var(--navy);
}

#mainNav.scrolled .btn-community-white {
  background: var(--bg-light);
  border-color: #dde3ea;
}

.community-avatars-nav {
  display: flex;
}

.c-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -8px;
}
.c-av:first-child {
  margin-left: 0;
}

.community-nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.community-nav-text small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.community-nav-text strong {
  font-size: 0.75rem;
  color: var(--navy);
}

.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-section .carousel-item {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 46, 74, 0.4) 0%, rgba(27, 46, 74, 0.25) 35%, rgba(27, 46, 74, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.3rem;
  letter-spacing: -1px;
}

.hero-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0;
}
.hero-subtitle strong {
  font-weight: 700;
  font-style: italic;
}
.hero-subtitle:empty {
  display: none;
}

.hero-wave-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  z-index: 2;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
}

.hero-wave--back {
  height: 100%;
}

.hero-wave--mid {
  height: 85%;
}

.hero-wave--front {
  height: 70%;
}

.hero-search-area {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  width: 92%;
  max-width: 720px;
}

.hero-search-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.search-type-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.search-type-tabs .tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.search-type-tabs .tab-btn.active {
  background: #fff;
  color: var(--navy);
}

.search-bar-wrapper {
  position: relative;
}

.hero-search-bar {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 0.35rem 0.35rem 0.35rem 0.4rem;
  align-items: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 10;
}

.search-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  border-radius: 40px;
  transition: background var(--tr);
  position: relative;
}
.search-field:hover {
  background: var(--bg-light);
}
.search-field.active {
  background: var(--bg-light);
}
.search-field--dove {
  flex: 1.5;
}
.search-field--quando {
  flex: 1;
}
.search-field--ospiti {
  flex: 1;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: #dde3ea;
  flex-shrink: 0;
}

.search-field-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}

.search-field-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.search-poi-select {
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  max-width: 120px;
}

.btn-search {
  background: var(--gold);
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  transition: all var(--tr);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.btn-search:hover {
  background: var(--gold-dark);
  color: #fff;
}
.btn-search i {
  font-size: 0.9rem;
}
.btn-search:disabled {
  opacity: 0.7;
}

.search-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  max-width: 95vw;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.22);
  padding: 1.8rem;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.search-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.search-dropdown-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.2rem;
  text-align: center;
}

.search-continents {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.continent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem 0.8rem;
  border: 1.5px solid #e8ecf0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
  gap: 0.3rem;
}
.continent-card:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-2px);
}
.continent-card.selected {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(232, 183, 49, 0.2);
}

.continent-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.continent-card strong {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.continent-card small {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.search-popular-section {
  padding-top: 1.2rem;
  border-top: 1px solid #eef1f5;
}

.search-popular-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.popular-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid #e8ecf0;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--tr);
}
.popular-pill:hover {
  border-color: var(--gold);
  background: var(--cream);
  color: var(--text-dark);
}
.popular-pill.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.quando-date-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}
.quando-date-picker > div {
  border-radius: 0.75rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.occupancy-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.occupancy-room {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.occupancy-room:last-of-type {
  border-bottom: none;
}

.occ-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.occ-count {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.formula-section {
  padding-top: 0;
  margin-top: -2px;
}

.formula-banner-wrap {
  position: relative;
  width: 100%;
  height: 100px;
}

.formula-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
}

.formula-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.formula-title {
  font-size: clamp(1.4rem, 3.5vw, 3.4rem);
  color: #fff;
  margin: 0;
  text-align: center;
}

.formula-desc {
  text-align: center;
  max-width: 900px;
  margin: 2.5rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.5;
}

.section-block {
  padding: 80px 0;
}

.section-block .container {
  max-width: 96%;
}

.section-bg-light {
  background: var(--bg-light);
}

.section-bg-cream {
  background: var(--cream);
}

.bg-white {
  background: #fff;
}

.section-title-center {
  font-family: var(--font-main);
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle-center {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.cards-scroll-wrapper {
  overflow-x: auto;
  margin: 0;
  padding: 0 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.cards-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.cards-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.cards-scroll {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.trip-card {
  width: 500px;
  min-width: 500px;
  height: 850px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--tr), box-shadow var(--tr);
  flex-shrink: 0;
  position: relative;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.trip-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.trip-card-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  background: linear-gradient(0deg, rgba(29, 34, 21, 0.85) 55%, rgba(29, 34, 21, 0.55) 80%, transparent 100%);
  z-index: 1;
}

.trip-card-top {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 1.8rem 1.6rem 0;
  text-align: center;
}
.trip-card-top h4 {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.1;
}
.trip-card-top p {
  font-family: var(--font-main);
  font-size: 27px;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

.trip-card-photo {
  display: none;
}

.trip-card-body {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
}

.trip-card-body .trip-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.trip-card-body .trip-detail i {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 2px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.trip-card-body .trip-detail small {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 2px;
}
.trip-card-body .trip-detail strong {
  display: inline;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.detail-date-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.text-muted-sm {
  font-size: 0.8rem;
  color: var(--gold);
  cursor: pointer;
}

.trip-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.trip-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}
.trip-tag small {
  font-weight: 400;
  color: var(--gold);
  font-size: 0.72rem;
  font-style: italic;
}

.trip-community-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  margin-top: 3.2rem;
}
.trip-community-row span {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.3;
}

.trip-community-avatars {
  display: flex;
  flex-shrink: 0;
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.tc-av:first-child {
  margin-left: 0;
}

.trip-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  padding-top: 0.3rem;
}

.trip-price-badge {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
}
.trip-price-badge--green {
  background: var(--green);
  color: var(--navy);
}

.trip-badge-ponte {
  position: relative;
  z-index: 1;
  align-self: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.trip-badge-confirmed {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: var(--green);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

.trip-card--compact {
  height: auto;
}
.trip-card--compact .trip-card-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
}
.trip-card--compact .trip-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 65%);
}
.trip-card--compact .trip-card-header {
  position: relative;
  z-index: 1;
}
.trip-card--compact .trip-card-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
  line-height: 1.1;
}
.trip-card--compact .trip-card-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.trip-card--compact .trip-card-body {
  position: static;
  background: #fff;
  padding: 1.2rem 1.4rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trip-card--compact .trip-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.75rem;
}
.trip-card--compact .trip-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-dark);
}
.trip-card--compact .trip-detail i {
  color: var(--navy);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.trip-card--compact .trip-detail small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.trip-card--compact .trip-detail strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}
.trip-card--compact .trip-price-row {
  color: var(--text-dark);
  border-top: 1px solid #eef1f5;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.88rem;
}

.features-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}

.feature-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
  max-width: 420px;
}

.feature-img-wrap {
  width: 130px;
  min-width: 130px;
  height: 130px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-text h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.feature-card-text p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.features-icon-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}

.feature-icon-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  max-width: 420px;
}

.feature-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}

.feature-icon-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}
.feature-icon-card p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.mood-section {
  position: relative;
  padding-top: 5rem;
}

.mood-wave-top {
  position: absolute;
  top: -79px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.mood-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mood-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.mood-tab {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-main);
}
.mood-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mood-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mood-card {
  width: 550px;
  min-width: 550px;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--tr);
}
.mood-card:hover {
  transform: scale(1.02);
}

.mood-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 46, 74, 0.88) 0%, rgba(27, 46, 74, 0.4) 45%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #fff;
}

.mood-card-tag {
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0.25rem 1rem;
  align-self: flex-start;
  margin-bottom: 0.7rem;
  font-style: italic;
}

.mood-card-overlay h4 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  font-style: italic;
}

.mood-card-overlay p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0 0 0.7rem;
}

.mood-card-meta {
  display: flex;
  gap: 1.1rem;
  font-size: 0.98rem;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}
.mood-card-meta i {
  font-size: 0.9rem;
}

.mood-card-price {
  font-size: 1.1rem;
  margin-top: 0.6rem;
  opacity: 0.85;
}

.price-pill {
  background: var(--gold);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  margin-left: 0.3rem;
}

.dest-scroll {
  gap: 1.5rem;
}

.dest-card {
  width: 575px;
  min-width: 575px;
  height: 690px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  color: inherit;
  text-decoration: none;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.dest-card:hover {
  transform: scale(1.02);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 46, 74, 0.15);
}
.dest-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.cta-banner {
  position: relative;
  padding: 100px 0;
  background: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80") center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 46, 74, 0.8);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-cta-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  transition: all var(--tr);
}
.btn-cta-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-3px);
}

.community-member {
  text-align: center;
}

.community-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--bg-light);
}
.community-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-member h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.community-age {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.community-spec {
  display: inline-block;
  font-size: 0.75rem;
  border: 1px solid #cdd5de;
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  color: var(--text-body);
}

.btn-dark-rounded {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all var(--tr);
}
.btn-dark-rounded:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm-round {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

.community-cta-bar {
  background: var(--bg-light);
  padding: 1.5rem 0;
}
.community-cta-bar h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--navy);
}

.community-cta-avatars {
  display: flex;
}
.community-cta-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -10px;
}
.community-cta-avatars img:first-child {
  margin-left: 0;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--tr);
}

.footer-brand:hover .footer-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--tr);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--tr);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-copy {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credits a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--tr);
}
.footer-credits a:hover {
  color: var(--gold-dark);
}

@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(27, 46, 74, 0.95);
    backdrop-filter: blur(10px);
  }
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
  }
  #mainNav.scrolled .navbar-nav .nav-link {
    color: var(--text-body);
  }
  .btn-community-white {
    margin-top: 0.5rem;
    width: fit-content;
  }
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-card-horizontal {
    max-width: 100%;
  }
  .features-icon-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-icon-card {
    max-width: 100%;
  }
  .hero-wave-wrapper {
    height: 15%;
  }
}
@media (max-width: 767px) {
  .hero-search-bar {
    flex-wrap: wrap;
    border-radius: var(--radius);
    padding: 0.6rem;
  }
  .search-field--dove {
    flex: 1 1 100%;
  }
  .search-divider {
    display: none;
  }
  .search-field--quando {
    flex: 1;
  }
  .btn-search {
    width: 100%;
    margin-top: 0.4rem;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
}
@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .hero-search-area {
    bottom: 12%;
    width: 92%;
  }
  .hero-wave-wrapper {
    height: 12%;
  }
  .search-dropdown {
    padding: 1rem;
    width: 95vw;
  }
  .search-continents {
    grid-template-columns: repeat(3, 1fr);
  }
  .trip-card {
    width: 420px;
    min-width: 420px;
  }
  .mood-card {
    width: 420px;
    min-width: 420px;
    height: 240px;
  }
  .dest-card {
    width: 380px;
    min-width: 380px;
    height: 460px;
  }
  .footer-bottom .row > div {
    text-align: center !important;
  }
  .section-block {
    padding: 50px 0;
  }
  .feature-img-wrap {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
#results-grid {
  transition: opacity 0.25s ease;
}

[data-results-filter]:checked ~ label,
[data-results-filter]:checked + label {
  color: #007BFF;
  font-weight: 600;
}

#sort-select {
  font-size: 0.85rem;
  border-color: #dee2e6;
  color: #0d2d4e;
}
#sort-select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}

#load-more-wrap {
  padding-top: 2rem;
}

.custom-switch {
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 26px;
  background: #dee2e6;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.custom-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.custom-switch.active {
  background: #007BFF;
}
.custom-switch.active span {
  left: 25px;
}

.pick-item {
  display: flex;
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.pick-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.pick-item .item-gallery-col {
  width: 220px;
  flex-shrink: 0;
}
.pick-item .item-gallery {
  position: relative;
  height: 100%;
  min-height: 180px;
}
.pick-item .item-gallery .main-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  min-height: 180px;
}
.pick-item .item-gallery .prev-btn, .pick-item .item-gallery .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  font-size: 0.75rem;
  transition: background 0.15s;
}
.pick-item .item-gallery .prev-btn:hover, .pick-item .item-gallery .next-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}
.pick-item .item-gallery .prev-btn {
  left: 6px;
}
.pick-item .item-gallery .next-btn {
  right: 6px;
}
.pick-item .item-info {
  flex: 1;
  padding: 1.25rem;
  min-width: 0;
}
.pick-item .item-info .item-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0d2d4e;
  margin-bottom: 0.2rem;
}
.pick-item .item-info .item-subtitle {
  font-size: 0.82rem;
  color: #6C757D;
  margin-bottom: 0.6rem;
}
.pick-item .item-info .item-description {
  font-size: 0.85rem;
  color: #6C757D;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-item .price-infos {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #f0f0f0;
  min-width: 90px;
}
.pick-item .price-infos .item-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0d2d4e;
  white-space: nowrap;
  text-align: center;
}
.pick-item .item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-left: 1px solid #f0f0f0;
}
.pick-item .item-actions .action-label {
  font-size: 0.72rem;
  color: #6C757D;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .pick-item {
    flex-direction: column;
  }
  .pick-item .item-gallery-col {
    width: 100%;
    height: 200px;
  }
  .pick-item .item-gallery-col .item-gallery, .pick-item .item-gallery-col .main-image {
    min-height: 200px;
  }
  .pick-item .price-infos, .pick-item .item-actions {
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding: 0.75rem 1.25rem;
  }
  .pick-item .price-infos {
    justify-content: flex-start;
  }
  .pick-item .item-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.extra-pick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #e5e9ef;
  border-radius: 0.5rem;
  margin-bottom: 0.45rem;
  background: #fff;
  font-size: 0.9rem;
}
.extra-pick-item .item-name {
  color: #212529;
  flex-shrink: 0;
}
.extra-pick-item .extra-spacer {
  flex: 1;
}
.extra-pick-item .price-infos .item-price {
  font-weight: 700;
  color: #0d2d4e;
  white-space: nowrap;
  font-size: 0.95rem;
}
.extra-pick-item .extra-item-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.extra-pick-item .extra-item-actions .action-label {
  font-size: 0.72rem;
  color: #6C757D;
}
.extra-pick-item.confirm-pick-item {
  background: #f0f6ff;
  border-color: #c7deff;
}

.on-site-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.12);
  color: #19692c;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.picker-cnt .static-items {
  display: flex;
  flex-direction: column;
}
.picker-cnt .travio-results .pick-group-cnt.not-first {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e9ef;
}
.picker-cnt .travio-results .pick-group-cnt > h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6C757D;
  margin-bottom: 1rem;
}

.travio-history-cnt {
  margin-bottom: 1.5rem;
}
.travio-history-cnt .history-service .history-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6C757D;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #007BFF;
}
.travio-history-cnt .history-service .history-item .pick-item {
  opacity: 0.95;
}
.travio-history-cnt .history-service .history-item .pick-item .item-actions .custom-switch {
  background: #28A745;
  pointer-events: none;
}
.travio-history-cnt .history-service .history-item .pick-item .item-actions .custom-switch span {
  left: 25px;
}

.cart-recap {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 1.5rem;
}
.cart-recap .cart-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d2d4e;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e9ef;
}
.cart-recap .cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-recap .cart-item:last-child {
  border-bottom: none;
}
.cart-recap .cart-item > i.fa-circle-check {
  color: #28A745;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.cart-recap .cart-item .item-info {
  flex: 1;
  min-width: 0;
}
.cart-recap .cart-item .title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #0d2d4e;
}
.cart-recap .cart-item .item-dates {
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.cart-recap .cart-item .hotel-info {
  margin-top: 0.3rem;
}
.cart-recap .cart-item .hotel-info .rating i {
  color: #f6c90e;
  font-size: 0.72rem;
}
.cart-recap .cart-item .hotel-info .geo {
  font-size: 0.78rem;
  color: #6C757D;
}
.cart-recap .cart-item .item-detail {
  margin-top: 0.45rem;
  padding-left: 0.6rem;
  border-left: 2px solid #007BFF;
}
.cart-recap .cart-item .item-detail .title {
  font-size: 0.83rem;
}
.cart-recap .cart-item .item-detail .subtitle {
  font-size: 0.78rem;
  color: #6C757D;
  margin-top: 0.1rem;
}
.cart-recap .cart-item .item-detail .subtitle small {
  margin-left: 0.3rem;
  color: #28A745;
}
.cart-recap .cart-infos {
  padding-top: 0.5rem;
}
.cart-recap .cart-infos .cart-total {
  padding: 0.75rem 0;
}
.cart-recap .cart-infos .cart-total .label {
  display: block;
  font-size: 0.78rem;
  color: #6C757D;
  margin-bottom: 0.2rem;
}
.cart-recap .cart-infos .cart-total .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d2d4e;
  display: block;
}
.cart-recap .cart-infos .cart-total .on-site-prices .price {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6C757D;
}
.cart-recap .cart-infos .cart-adv {
  background: #f0f6ff;
  border-radius: 0.6rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.cart-recap .cart-infos .cart-adv .cart-adv-title {
  display: block;
  font-size: 0.78rem;
  color: #6C757D;
  margin-bottom: 0.4rem;
}
.cart-recap .cart-infos .cart-adv .cart-adv-infos {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.cart-recap .cart-infos .cart-adv .cart-adv-infos .big {
  font-size: 2.2rem;
  font-weight: 800;
  color: #007BFF;
  line-height: 1;
}
.cart-recap .cart-infos .cart-adv .cart-adv-infos .small {
  font-size: 0.72rem;
  color: #6C757D;
  text-align: left;
  line-height: 1.35;
}
.cart-recap .cart-infos .cart-adv > .small {
  font-size: 0.72rem;
  color: #6C757D;
}
.cart-recap .cart-actions {
  display: flex;
  gap: 0.5rem;
}
.cart-recap .cart-actions .btn {
  flex: 1;
  font-size: 0.83rem;
}

.result-card-list__img-col {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .result-card-list__img-col {
    width: 100%;
  }
}
.result-card-list__img-wrap {
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
  overflow: hidden;
}
@media (max-width: 575px) {
  .result-card-list__img-wrap {
    height: 180px;
  }
}
.result-card-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card-list__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
}
.result-card-list__summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}