@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
a:hover {
  color: #004c99;
}
a:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, .h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.25rem;
  }
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.875rem;
  }
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 1.25rem;
  }
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
p.lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  p.lead {
    font-size: 1.25rem;
  }
}
p.small {
  font-size: 0.875rem;
}

.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--uppercase {
  text-transform: uppercase;
}
.text--lowercase {
  text-transform: lowercase;
}
.text--capitalize {
  text-transform: capitalize;
}
.text--bold {
  font-weight: 700;
}
.text--semibold {
  font-weight: 600;
}
.text--medium {
  font-weight: 500;
}
.text--light {
  font-weight: 300;
}
.text--primary {
  color: #0066cc;
}
.text--secondary {
  color: #666666;
}
.text--light-gray {
  color: #999999;
}
.text--white {
  color: #ffffff;
}

a.link--underline {
  text-decoration: underline;
}
a.link--underline:hover {
  text-decoration: none;
}
a.link--no-underline {
  text-decoration: none;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul.list--unstyled, ol.list--unstyled {
  list-style: none;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: disc;
}
ul.list--styled {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}
ol.list--styled {
  list-style: decimal;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  border-left: 4px solid #0066cc;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #666666;
}

hr {
  border: 0;
  border-top: 1px solid #dee2e6;
  margin: 2rem 0;
}

mark {
  background-color: #ffd700;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  background-color: #f8f9fa;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  color: #dc3545;
}

pre {
  font-family: "Courier New", Courier, monospace;
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--fluid {
  max-width: 100%;
}
.container--narrow {
  max-width: 800px;
}
.container--wide {
  max-width: 1400px;
}

.grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}
.grid--1 {
  grid-template-columns: 1fr;
}
.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--gap-sm {
  gap: 1rem;
}
.grid--gap-md {
  gap: 1.5rem;
}
.grid--gap-lg {
  gap: 2rem;
}
.grid--gap-xl {
  gap: 3rem;
}
.grid--center {
  align-items: center;
  justify-items: center;
}
.grid--start {
  align-items: start;
}
.grid--end {
  align-items: end;
}

.flex {
  display: flex;
}
.flex--column {
  flex-direction: column;
}
.flex--row {
  flex-direction: row;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--nowrap {
  flex-wrap: nowrap;
}
.flex--justify-start {
  justify-content: flex-start;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--justify-between {
  justify-content: space-between;
}
.flex--justify-around {
  justify-content: space-around;
}
.flex--align-start {
  align-items: flex-start;
}
.flex--align-center {
  align-items: center;
}
.flex--align-end {
  align-items: flex-end;
}
.flex--align-stretch {
  align-items: stretch;
}
.flex--gap-xs {
  gap: 0.25rem;
}
.flex--gap-sm {
  gap: 0.5rem;
}
.flex--gap-md {
  gap: 1rem;
}
.flex--gap-lg {
  gap: 1.5rem;
}
.flex--gap-xl {
  gap: 2rem;
}

.section {
  padding: 4rem 0;
}
.section--small {
  padding: 3rem 0;
}
.section--large {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section--large {
    padding: 6rem 0;
  }
}
.section--no-padding-top {
  padding-top: 0;
}
.section--no-padding-bottom {
  padding-bottom: 0;
}
.section--background {
  background-color: #f8f9fa;
}
.section--dark {
  background-color: #333333;
  color: #ffffff;
}
.section--primary {
  background-color: #0066cc;
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header__subtitle {
  color: #0066cc;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.section-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header__title {
    font-size: 2.25rem;
  }
}
.section-header__description {
  font-size: 1.125rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header--left {
  text-align: left;
}
.section-header--left .section-header__description {
  margin: 0;
}

.m-0 {
  margin: 0 !important;
}
.m-auto {
  margin: auto !important;
}
.m-xs {
  margin: 0.25rem;
}
.m-sm {
  margin: 0.5rem;
}
.m-md {
  margin: 1rem;
}
.m-lg {
  margin: 1.5rem;
}
.m-xl {
  margin: 2rem;
}
.m-2xl {
  margin: 3rem;
}
.m-3xl {
  margin: 4rem;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mt-xs {
  margin-top: 0.25rem;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt-md {
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 1.5rem;
}
.mt-xl {
  margin-top: 2rem;
}
.mt-2xl {
  margin-top: 3rem;
}
.mt-3xl {
  margin-top: 4rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.mb-xs {
  margin-bottom: 0.25rem;
}
.mb-sm {
  margin-bottom: 0.5rem;
}
.mb-md {
  margin-bottom: 1rem;
}
.mb-lg {
  margin-bottom: 1.5rem;
}
.mb-xl {
  margin-bottom: 2rem;
}
.mb-2xl {
  margin-bottom: 3rem;
}
.mb-3xl {
  margin-bottom: 4rem;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-auto {
  margin-left: auto !important;
}
.ml-xs {
  margin-left: 0.25rem;
}
.ml-sm {
  margin-left: 0.5rem;
}
.ml-md {
  margin-left: 1rem;
}
.ml-lg {
  margin-left: 1.5rem;
}
.ml-xl {
  margin-left: 2rem;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mr-xs {
  margin-right: 0.25rem;
}
.mr-sm {
  margin-right: 0.5rem;
}
.mr-md {
  margin-right: 1rem;
}
.mr-lg {
  margin-right: 1.5rem;
}
.mr-xl {
  margin-right: 2rem;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx-xs {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-sm {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-md {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-lg {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.my-xs {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-sm {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-md {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-lg {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-xl {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-2xl {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-3xl {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.p-0 {
  padding: 0 !important;
}
.p-xs {
  padding: 0.25rem;
}
.p-sm {
  padding: 0.5rem;
}
.p-md {
  padding: 1rem;
}
.p-lg {
  padding: 1.5rem;
}
.p-xl {
  padding: 2rem;
}
.p-2xl {
  padding: 3rem;
}
.p-3xl {
  padding: 4rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-xs {
  padding-top: 0.25rem;
}
.pt-sm {
  padding-top: 0.5rem;
}
.pt-md {
  padding-top: 1rem;
}
.pt-lg {
  padding-top: 1.5rem;
}
.pt-xl {
  padding-top: 2rem;
}
.pt-2xl {
  padding-top: 3rem;
}
.pt-3xl {
  padding-top: 4rem;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-xs {
  padding-bottom: 0.25rem;
}
.pb-sm {
  padding-bottom: 0.5rem;
}
.pb-md {
  padding-bottom: 1rem;
}
.pb-lg {
  padding-bottom: 1.5rem;
}
.pb-xl {
  padding-bottom: 2rem;
}
.pb-2xl {
  padding-bottom: 3rem;
}
.pb-3xl {
  padding-bottom: 4rem;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-xs {
  padding-left: 0.25rem;
}
.pl-sm {
  padding-left: 0.5rem;
}
.pl-md {
  padding-left: 1rem;
}
.pl-lg {
  padding-left: 1.5rem;
}
.pl-xl {
  padding-left: 2rem;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-xs {
  padding-right: 0.25rem;
}
.pr-sm {
  padding-right: 0.5rem;
}
.pr-md {
  padding-right: 1rem;
}
.pr-lg {
  padding-right: 1.5rem;
}
.pr-xl {
  padding-right: 2rem;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-xs {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-xl {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-2xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-3xl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.w-screen {
  width: 100vw;
}
.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}

.h-full {
  height: 100%;
}
.h-auto {
  height: auto;
}
.h-screen {
  height: 100vh;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-grid {
  display: grid;
}

.hidden {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile-only {
    display: none !important;
  }
}
.visible-desktop-only {
  display: none !important;
}
@media (min-width: 768px) {
  .visible-desktop-only {
    display: block !important;
  }
}

.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  width: 100%;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  max-width: none;
  width: 100%;
}
@media (min-width: 768px) {
  .header__container {
    padding: 2rem 2rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 150ms ease-in-out;
}
.header__logo:hover {
  opacity: 0.9;
}
.header__logo img {
  height: 80px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 110px;
  }
}
.header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .header__brand-name {
    font-size: 1.5rem;
  }
}
.header__brand-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .header__brand-tagline {
    font-size: 1rem;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 0.25rem;
  transition: all 150ms ease-in-out;
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .nav__list {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}
.nav__item {
  position: relative;
}
.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 150ms ease-in-out;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 150ms ease-in-out;
  transform: translateX(-50%);
}
.nav__link:hover, .nav__link.active {
  color: #ffffff;
  opacity: 0.8;
}
.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}
@media (min-width: 768px) {
  .nav__link {
    padding: 0.5rem;
  }
}
.nav--mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 2rem 1rem;
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out;
  z-index: 1030;
  overflow-y: auto;
}
.nav--mobile.active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav--mobile {
    display: none;
  }
}
.nav--mobile .nav__list {
  gap: 1rem;
}
.nav--mobile .nav__link {
  font-size: 1.125rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.nav--mobile .nav__link:hover, .nav--mobile .nav__link.active {
  background-color: #f8f9fa;
}

/* Mobile Menu Link Colors - Fix white-on-white */
.nav--mobile .nav__link {
  color: #1a1a1a !important;
}

.nav--mobile .nav__link:hover,
.nav--mobile .nav__link.active {
  color: #0066cc !important;
}

/* Mobile Dropdown Links */
.nav--mobile .nav__dropdown li a {
  color: #333333 !important;
}

.nav--mobile .nav__dropdown li a:hover {
  color: #0066cc !important;
}

.nav__item--dropdown {
  position: relative;
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}
.nav__dropdown li {
  margin: 0;
}
.nav__dropdown li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown li a:hover, .nav__dropdown li a.active {
  background-color: #0066cc;
  color: #ffffff;
}

.nav--mobile .nav__item--dropdown > .nav__link {
  pointer-events: all;
}
.nav--mobile .nav__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  padding-left: 1.5rem;
  margin-top: 0.25rem;
  background-color: transparent;
}
.nav--mobile .nav__dropdown li a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.nav--mobile .nav__dropdown li a:hover, .nav--mobile .nav__dropdown li a.active {
  background-color: rgba(0, 102, 204, 0.1);
  color: #0066cc;
}

@media (max-width: 1024px) {
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 0;
    visibility: hidden;
  }
}
.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__section li {
  margin-bottom: 0.5rem;
}
.footer__section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 150ms ease-in-out;
}
.footer__section a:hover {
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer__section--brand {
    grid-column: span 1;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.footer__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.footer__brand-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 150ms ease-in-out;
}
.footer__social a:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-bottom: 0;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background-color: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
}
.btn--primary:hover {
  background-color: #004c99;
  border-color: #004c99;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  background-color: #ff6b35;
  color: #ffffff;
  border-color: #ff6b35;
}
.btn--secondary:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary:active {
  transform: translateY(0);
}
.btn--outline {
  background-color: transparent;
  color: #0066cc;
  border-color: #0066cc;
}
.btn--outline:hover {
  background-color: #0066cc;
  color: #ffffff;
}
.btn--ghost {
  background-color: transparent;
  color: #0066cc;
  border-color: transparent;
}
.btn--ghost:hover {
  background-color: rgba(0, 102, 204, 0.1);
}
.btn--white {
  background-color: #ffffff;
  color: #0066cc;
  border-color: #ffffff;
}
.btn--white:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn--full {
  width: 100%;
}
.btn__icon {
  display: inline-flex;
  font-size: 1.2em;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-group--center {
  justify-content: center;
}
.btn-group--right {
  justify-content: flex-end;
}
.btn-group--stack {
  flex-direction: column;
  align-items: stretch;
}
.btn-group--stack .btn {
  width: 100%;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}
.card__image {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.card__image:hover img {
  transform: scale(1.05);
}
.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}
.card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__category {
  color: #0066cc;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333333;
}
.card__title a {
  color: inherit;
  transition: color 150ms ease-in-out;
}
.card__title a:hover {
  color: #0066cc;
}
.card__description {
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
  font-size: 0.875rem;
  color: #999999;
}
.card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.card__footer {
  padding: 1rem 1.5rem;
  background-color: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.card__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.card__price-label {
  font-size: 0.75rem;
  color: #999999;
  text-transform: uppercase;
}
.card__price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066cc;
}
@media (min-width: 768px) {
  .card--horizontal {
    flex-direction: row;
  }
  .card--horizontal .card__image {
    width: 40%;
    padding-top: 0;
    min-height: 300px;
  }
  .card--horizontal .card__content {
    width: 60%;
  }
}
.card--small .card__content {
  padding: 1rem;
}
.card--small .card__title {
  font-size: 1.125rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .card-grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.form {
  width: 100%;
}
.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.form__label--required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.25rem;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  transition: all 150ms ease-in-out;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #999999;
}
.form__input:disabled, .form__textarea:disabled, .form__select:disabled {
  background-color: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.6;
}
.form__input--error, .form__textarea--error, .form__select--error {
  border-color: #dc3545;
}
.form__input--error:focus, .form__textarea--error:focus, .form__select--error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form__input--success, .form__textarea--success, .form__select--success {
  border-color: #28a745;
}
.form__input--success:focus, .form__textarea--success:focus, .form__select--success:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 4rem;
  cursor: pointer;
}
.form__help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #999999;
}
.form__error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #dc3545;
}
.form__success {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #28a745;
}
.form__checkbox, .form__radio {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio], .form__radio input[type=checkbox],
.form__radio input[type=radio] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.form__checkbox label, .form__radio label {
  cursor: pointer;
  font-weight: 400;
}
.form--inline {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
.form--inline .form__group {
  flex: 1;
  margin-bottom: 0;
}
.form--inline .btn {
  flex-shrink: 0;
}
.form--search {
  position: relative;
}
.form--search .form__input {
  padding-left: 4rem;
}
.form--search::before {
  content: "🔍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.125rem;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .form-row--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  overflow-y: auto;
  padding: 1.5rem;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  animation: fadeIn 300ms ease-in-out;
}
.modal__container {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.75rem;
  max-width: 600px;
  width: 100%;
  z-index: 1050;
  animation: slideUp 300ms ease-in-out;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .modal__container {
    max-width: 800px;
  }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f1f3f5;
}
.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: #999999;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.modal__close:hover {
  background-color: #f8f9fa;
  color: #333333;
}
.modal__body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}
.modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #f1f3f5;
}
.modal--small .modal__container {
  max-width: 400px;
}
.modal--large .modal__container {
  max-width: 1000px;
}
.modal--fullscreen {
  padding: 0;
}
.modal--fullscreen .modal__container {
  max-width: 100%;
  height: 100vh;
  border-radius: 0;
}
.modal--fullscreen .modal__body {
  max-height: calc(100vh - 140px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.modal-open {
  overflow: hidden;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.slider__container {
  position: relative;
  width: 100%;
}
.slider__wrapper {
  display: flex;
  transition: transform 500ms ease-in-out;
}
.slider__slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.slider__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
}
@media (min-width: 768px) {
  .slider__content {
    padding: 4rem 3rem;
  }
}
.slider__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .slider__title {
    font-size: 2.25rem;
  }
}
.slider__description {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
@media (min-width: 768px) {
  .slider__description {
    font-size: 1.125rem;
  }
}
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.slider__nav:hover {
  background-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}
.slider__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider__nav:disabled:hover {
  transform: translateY(-50%);
}
.slider__nav--prev {
  left: 1rem;
}
@media (min-width: 768px) {
  .slider__nav--prev {
    left: 2rem;
  }
}
.slider__nav--prev::before {
  content: "←";
  font-size: 1.25rem;
  color: #333333;
}
.slider__nav--next {
  right: 1rem;
}
@media (min-width: 768px) {
  .slider__nav--next {
    right: 2rem;
  }
}
.slider__nav--next::before {
  content: "→";
  font-size: 1.25rem;
  color: #333333;
}
.slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.slider__dot.active {
  background-color: #ffffff;
  width: 32px;
}
.slider--thumbnails .slider__thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.slider--thumbnails .slider__thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 150ms ease-in-out;
  border: 2px solid transparent;
}
.slider--thumbnails .slider__thumbnail:hover {
  opacity: 0.8;
}
.slider--thumbnails .slider__thumbnail.active {
  opacity: 1;
  border-color: #0066cc;
}
.slider--thumbnails .slider__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}
.stats-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
}
@media (min-width: 768px) {
  .stats-header__title {
    font-size: 2.25rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.stat-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}
.stat-card__icon svg {
  width: 48px;
  height: 48px;
}
.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-card__number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
}
@media (min-width: 768px) {
  .stat-card__number {
    font-size: 2.25rem;
  }
}
.stat-card__label {
  font-size: 16px;
  color: #666666;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 4rem 0;
  }
  .stats-header {
    margin-bottom: 3rem;
  }
  .stats-header__title {
    font-size: 1.5rem;
  }
  .stat-card {
    padding: 2rem;
  }
  .stat-card__icon {
    width: 64px;
    height: 64px;
  }
  .stat-card__icon svg {
    width: 36px;
    height: 36px;
  }
  .stat-card__number {
    font-size: 1.5rem;
  }
  .stat-card__label {
    font-size: 0.875rem;
  }
}
.expedition-vessels-section {
  background-color: #ffffff;
  padding: 6rem 0;
}

.expedition-vessels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .expedition-vessels {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.expedition-vessels__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.expedition-vessels__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.expedition-vessels__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.expedition-stat {
  flex: 1;
  padding: 1.5rem 2rem;
  text-align: center;
  background-color: #ffffff;
}
.expedition-stat:first-child {
  border-right: 1px solid #dee2e6;
}
.expedition-stat__number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .expedition-stat__number {
    font-size: 2.25rem;
  }
}
.expedition-stat__label {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.25;
}

.expedition-vessels__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expedition-vessels__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background-color: #10b981;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  width: fit-content;
}

.expedition-vessels__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .expedition-vessels__title {
    font-size: 2.25rem;
  }
}

.expedition-vessels__description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.75;
  margin: 0;
}

.expedition-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .expedition-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.expedition-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.expedition-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.expedition-feature__icon svg {
  width: 24px;
  height: 24px;
}
.expedition-feature__content {
  flex: 1;
}
.expedition-feature__title {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}
.expedition-feature__text {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .expedition-vessels-section {
    padding: 4rem 0;
  }
  .expedition-vessels__image {
    order: -1;
  }
}
@media (max-width: 768px) {
  .expedition-vessels__title {
    font-size: 1.5rem;
  }
  .expedition-vessels__description {
    font-size: 16px;
  }
  .expedition-stat {
    padding: 1rem 1.5rem;
  }
  .expedition-stat__number {
    font-size: 1.5rem;
  }
  .expedition-features {
    gap: 1rem;
  }
  .expedition-feature__icon {
    width: 40px;
    height: 40px;
  }
  .expedition-feature__icon svg {
    width: 20px;
    height: 20px;
  }
}
.wildlife-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .wildlife-section {
    padding: 4rem 0;
  }
}

.wildlife-header {
  text-align: center;
  margin-bottom: 4rem;
}
.wildlife-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .wildlife-header__title {
    font-size: 2.25rem;
  }
}
.wildlife-header__subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

.wildlife-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.wildlife-tabs__btn {
  flex: 1;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #666666;
  background-color: transparent;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}
.wildlife-tabs__btn:hover {
  color: #0066cc;
}
.wildlife-tabs__btn--active {
  background-color: #1e3a8a;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.wildlife-tabs__btn--active:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .wildlife-tabs__btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.wildlife-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: fadeIn 300ms ease-in-out;
}
@media (min-width: 576px) {
  .wildlife-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .wildlife-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wildlife-cards--hidden {
  display: none;
}

.wildlife-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
.wildlife-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}
.wildlife-card__image {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background-color: #f8f9fa;
}
.wildlife-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.wildlife-card__image:hover img {
  transform: scale(1.08);
}
.wildlife-card__content {
  padding: 2rem;
}
@media (max-width: 576px) {
  .wildlife-card__content {
    padding: 1.5rem;
  }
}
.wildlife-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.wildlife-card__info {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.wildlife-card__peak {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 500;
}
.wildlife-card__icon {
  flex-shrink: 0;
  color: #10b981;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.journey-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
  overflow: hidden;
}

.journey-header {
  text-align: center;
  margin-bottom: 6rem;
}
.journey-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-style: italic;
}
@media (min-width: 768px) {
  .journey-header__title {
    font-size: 2.25rem;
  }
}
.journey-header__subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

.journey-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #3b82f6 0%, #10b981 100%);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .journey-timeline::before {
    left: 30px;
  }
}

.journey-step {
  position: relative;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.journey-step.is-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.journey-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.journey-step:nth-child(1).is-visible {
  transition-delay: 0s;
}
.journey-step:nth-child(2).is-visible {
  transition-delay: 0.15s;
}
.journey-step:nth-child(3).is-visible {
  transition-delay: 0.3s;
}
.journey-step:nth-child(4).is-visible {
  transition-delay: 0.45s;
}
.journey-step:nth-child(5).is-visible {
  transition-delay: 0.6s;
}
.journey-step:nth-child(6).is-visible {
  transition-delay: 0.75s;
}
@media (max-width: 768px) {
  .journey-step {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
}
.journey-step__number {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3), 0 2px 4px -1px rgba(249, 115, 22, 0.2);
  z-index: 2;
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
  flex-shrink: 0;
}
.journey-step__number:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px -1px rgba(249, 115, 22, 0.4), 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}
@media (max-width: 768px) {
  .journey-step__number {
    grid-column: 1;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
.journey-step__content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
  max-width: 380px;
}
.journey-step__content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .journey-step__content {
    grid-column: 2;
    grid-row: 1;
    max-width: 100%;
    padding: 1.5rem;
  }
}
.journey-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .journey-step__title {
    font-size: 1.125rem;
  }
}
.journey-step__description {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .journey-step__description {
    font-size: 0.875rem;
  }
}
.journey-step__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  max-width: 300px;
}
.journey-step__image img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.journey-step__image:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.journey-step__image:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .journey-step__image {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
  }
  .journey-step__image img {
    height: 160px;
  }
}
.journey-step--left .journey-step__content {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}
@media (max-width: 768px) {
  .journey-step--left .journey-step__content {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}
.journey-step--left .journey-step__image {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}
@media (max-width: 768px) {
  .journey-step--left .journey-step__image {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
  }
}
.journey-step--right .journey-step__content {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  text-align: left;
}
@media (max-width: 768px) {
  .journey-step--right .journey-step__content {
    grid-column: 2;
  }
}
.journey-step--right .journey-step__image {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
@media (max-width: 768px) {
  .journey-step--right .journey-step__image {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .journey-section {
    padding: 4rem 0;
  }
  .journey-header {
    margin-bottom: 4rem;
  }
  .journey-header__title {
    font-size: 1.5rem;
  }
  .journey-header__subtitle {
    font-size: 16px;
  }
  .journey-step {
    margin-bottom: 4rem;
  }
}
.no-js .journey-step {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.testimonials-header__subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3b82f6;
}
.testimonial-card__author-info {
  flex: 1;
}
.testimonial-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}
.testimonial-card__cruise {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.25;
}
.testimonial-card__text {
  font-size: 16px;
  color: #333333;
  line-height: 1.75;
  flex: 1;
}
.testimonial-card__rating {
  display: flex;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.testimonial-card__star {
  flex-shrink: 0;
}

.testimonials-rating {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.testimonials-rating__score {
  font-size: 48px;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonials-rating__text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 2rem;
}
.testimonials-rating__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.testimonials-rating__badge {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 300ms ease-in-out;
}
.testimonials-rating__badge:hover {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-section {
  background-color: #ffffff;
  padding: 6rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.faq-header__subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.faq-item:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 150ms ease-in-out;
}
.faq-item__question:hover {
  background-color: #f8f9fa;
}
.faq-item__question:focus {
  outline: 2px solid #0066cc;
  outline-offset: -2px;
}
.faq-item__question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.25;
  flex: 1;
}
.faq-item__icon {
  flex-shrink: 0;
  color: #0066cc;
  transition: transform 300ms ease-in-out;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out ease-out, padding 300ms ease-in-out ease-out;
  padding: 0 2rem;
}
.faq-item__answer p {
  color: #666666;
  line-height: 1.75;
  font-size: 16px;
}
.faq-item.active {
  border-color: #0066cc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.faq-item.active .faq-item__question {
  background-color: #f8f9fa;
}
.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__answer {
  max-height: 1000px;
  padding: 0 2rem 2rem 2rem;
  transition: max-height 300ms ease-in-out ease-in, padding 300ms ease-in-out ease-in;
}

@media (max-width: 768px) {
  .faq-item__question {
    padding: 1rem 1.5rem;
  }
  .faq-item__question-text {
    font-size: 16px;
  }
  .faq-item__answer {
    padding: 0 1.5rem;
  }
  .faq-item.active .faq-item__answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
.category-tabs {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 80px;
  z-index: 1010;
}
@media (max-width: 768px) {
  .category-tabs {
    top: 60px;
  }
}
.category-tabs__wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 0.25rem;
}
@media (max-width: 576px) {
  .category-tabs__wrapper {
    padding: 0;
  }
}
.category-tabs__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .category-tabs__tab {
    padding: 1rem 0.5rem;
    font-size: 0.875rem;
    gap: 0.25rem;
  }
}
.category-tabs__tab:hover:not(.category-tabs__tab--active) {
  color: #0066cc;
  background-color: rgba(0, 102, 204, 0.05);
}
.category-tabs__tab--active {
  color: #0066cc;
  border-bottom-color: #0066cc;
  font-weight: 600;
}
.category-tabs__icon {
  font-size: 1.25rem;
  line-height: 1;
}
@media (max-width: 576px) {
  .category-tabs__icon {
    font-size: 1.125rem;
  }
}
@media (max-width: 400px) {
  .category-tabs__label {
    display: none;
  }
}

.range-inputs__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.range-inputs__separator {
  color: #999999;
  font-size: 0.875rem;
}
.range-inputs__unit {
  color: #999999;
  font-size: 0.875rem;
  white-space: nowrap;
}

.form__input--small {
  width: 70px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.price-slider {
  padding: 0.5rem 0;
}
.price-slider__track {
  position: relative;
  height: 6px;
  background-color: #dee2e6;
  border-radius: 9999px;
  margin: 1rem 0;
}
.price-slider__range {
  position: absolute;
  height: 100%;
  background-color: #0066cc;
  border-radius: 9999px;
  pointer-events: none;
}
.price-slider__input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  top: 0;
  left: 0;
}
.price-slider__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
  position: relative;
  z-index: 2;
}
.price-slider__input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.price-slider__input::-webkit-slider-thumb:active {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}
.price-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.price-slider__input--min {
  z-index: 3;
}
.price-slider__input--max {
  z-index: 2;
}
.price-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.price-slider__value {
  background-color: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}

.range-slider {
  padding: 0.5rem 0;
}
.range-slider__track {
  position: relative;
  height: 6px;
  background-color: #dee2e6;
  border-radius: 9999px;
  margin: 1.5rem 0;
}
.range-slider__range {
  position: absolute;
  height: 100%;
  background-color: #0066cc;
  border-radius: 9999px;
}
.range-slider__inputs {
  position: relative;
  height: 6px;
}
.range-slider__input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  top: -1.5rem;
}
.range-slider__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.range-slider__input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.range-slider__input::-webkit-slider-thumb:active {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}
.range-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.range-slider__values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666666;
}
.range-slider__value {
  background-color: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  color: #333333;
  min-width: 80px;
  text-align: center;
}
.range-slider__separator {
  color: #999999;
  font-weight: 500;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .highlight-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f3f5;
  transition: all 300ms ease-in-out;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #3385d6;
}
.highlight-card:hover .highlight-card__icon {
  transform: scale(1.1);
  color: #004c99;
}
.highlight-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: #0066cc;
  transition: all 300ms ease-in-out;
}
.highlight-card__icon svg {
  width: 100%;
  height: 100%;
}
.highlight-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.5rem 0;
}
.highlight-card__desc {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 576px) {
  .highlight-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .highlight-card {
    padding: 1.5rem;
  }
  .highlight-card__icon {
    width: 48px;
    height: 48px;
  }
  .highlight-card__title {
    font-size: 16px;
  }
}
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mobile Hero Spacing Fixes */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: 0;
    padding-top: 80px;
  }
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6)
    );
  }
  .hero__image {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 2.5rem 1rem 2rem;
    max-width: 100%;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 576px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__item {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
}
.features__item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.features__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0066cc;
}
.features__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333333;
}
.features__description {
  color: #666666;
  line-height: 1.75;
}

.cta {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: #ffffff;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 1rem;
  margin: 6rem 0;
}
.cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.25rem;
  }
}
.cta__description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .cta__description {
    font-size: 1.25rem;
  }
}

.page-header {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .page-header {
    padding: 6rem 0;
  }
}
.page-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 2.25rem;
  }
}
.page-header__description {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Mobile Page Header Spacing Fix */
@media (max-width: 768px) {
  .page-header {
    padding-top: calc(4rem + 128px); /* Original padding + header height */
  }
}

.cruises-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .cruises-layout {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .cruises-layout {
    grid-template-columns: 320px 1fr;
  }
}

.filters {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .filters--sidebar {
    position: sticky;
    top: 160px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
  }
}
.filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #f1f3f5;
}
.filters__header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filters__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .filters__toggle {
    display: none;
  }
}
.filters__toggle svg {
  transition: transform 150ms ease-in-out;
}
.filters__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.filters__content {
  padding: 1.5rem;
}
@media (max-width: 1023px) {
  .filters__content {
    display: none;
  }
  .filters__content.is-open {
    display: block;
  }
}
.filters__group {
  margin-bottom: 2rem;
}
.filters__group:last-child {
  margin-bottom: 0;
}
.filters__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filters__select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 150ms ease-in-out;
}
.filters__select:focus {
  outline: none;
  border-color: #0066cc;
}
.filters__actions {
  padding: 1.5rem;
  padding-top: 0;
}
.filters__clear {
  width: 100%;
  padding: 1rem;
  background-color: transparent;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  color: #666666;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  display: none;
}
.filters__clear:hover {
  border-color: #dc3545;
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.cruises-results {
  min-height: 400px;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}
@media (max-width: 576px) {
  .results-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.results-bar__count {
  font-size: 1rem;
  color: #666666;
}
.results-bar__count strong {
  color: #333333;
  font-weight: 600;
}
.results-bar__sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.results-bar__sort label {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}
.results-bar__sort select {
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  background-color: #ffffff;
  cursor: pointer;
}
.results-bar__sort select:focus {
  outline: none;
  border-color: #0066cc;
}

.card.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.card.is-entering {
  opacity: 1;
  transform: translateY(0);
  animation: cardEnter 300ms ease-out forwards;
}
.card__destination-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.no-results {
  text-align: center;
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
}
.no-results[hidden] {
  display: none;
}
.no-results__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.no-results__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
}
.no-results__text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.no-results__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 150ms ease-in-out;
}
.no-results__action:hover {
  background-color: #004c99;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem;
  gap: 1.5rem;
}
.loading-state[hidden] {
  display: none;
}
.loading-state__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #dee2e6;
  border-top-color: #0066cc;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.loading-state__text {
  color: #666666;
  font-size: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.pagination__item:hover:not(.pagination__item--disabled):not(.pagination__item--active) {
  border-color: #0066cc;
  color: #0066cc;
  background-color: rgba(0, 102, 204, 0.05);
}
.pagination__item--active {
  background-color: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
  cursor: default;
}
.pagination__item--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination__dots {
  padding: 0 0.5rem;
  color: #999999;
}

.cruise-detail__header {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: #ffffff;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .cruise-detail__header {
    padding: 4rem 0;
  }
}
.cruise-detail__breadcrumbs {
  margin-bottom: 1.5rem;
}
.cruise-detail__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cruise-detail__title {
    font-size: 2.25rem;
  }
}
.cruise-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1rem;
  opacity: 0.95;
}
.cruise-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery {
  margin: 3rem 0;
}
.gallery__main {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.gallery__main img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery__thumbnails {
    grid-template-columns: repeat(6, 1fr);
  }
}
.gallery__thumbnail {
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 150ms ease-in-out;
  border: 2px solid transparent;
}
.gallery__thumbnail:hover {
  opacity: 1;
}
.gallery__thumbnail.active {
  opacity: 1;
  border-color: #0066cc;
}
.gallery__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .detail-layout {
    grid-template-columns: 2fr 1fr;
  }
}
.detail-layout__main {
  min-width: 0;
  overflow: visible;
}
@media (min-width: 1024px) {
  .detail-layout__sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

.booking-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f3f5;
}
.booking-card__price {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f3f5;
  margin-bottom: 1.5rem;
}
.booking-card__price-label {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.25rem;
}
.booking-card__price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0066cc;
}
.booking-card__price-note {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 0.25rem;
}
.booking-card__form .form__group {
  margin-bottom: 1rem;
}
.booking-card__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.booking-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #666666;
}
.booking-card__features li::before {
  content: "✓";
  color: #28a745;
  font-weight: 700;
  font-size: 1.125rem;
}

.tabs {
  margin: 3rem 0;
}
.tabs__nav {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #f1f3f5;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs__nav::-webkit-scrollbar {
  display: none;
}
.tabs__link {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #666666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  white-space: nowrap;
  margin-bottom: -2px;
}
.tabs__link:hover {
  color: #0066cc;
}
.tabs__link.active {
  color: #0066cc;
  border-bottom-color: #0066cc;
}
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
  animation: fadeIn 300ms ease-in-out;
}

.itinerary {
  position: relative;
  padding-left: 80px;
}
.itinerary::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0066cc 0%, #ff6b35 100%);
}
.itinerary__item {
  position: relative;
  margin-bottom: 2rem;
}
.itinerary__item:last-child {
  margin-bottom: 0;
}
.itinerary__day {
  position: absolute;
  left: -80px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #3385d6 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 102, 204, 0.3);
  z-index: 2;
  text-align: center;
  line-height: 1;
  gap: 1px;
}
.itinerary__day-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.itinerary__day-num {
  font-size: 16px;
}
.itinerary__item:nth-child(even) .itinerary__day {
  background: linear-gradient(135deg, #ff6b35 0%, rgb(255, 144.3663366337, 104) 100%);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}
.itinerary__item:last-child .itinerary__day {
  background: linear-gradient(135deg, #004c99 0%, #0066cc 100%);
}
.itinerary__content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
.itinerary__content:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.itinerary__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333333;
}
.itinerary__description {
  color: #666666;
  line-height: 1.75;
  margin: 0;
  font-size: 16px;
}
.itinerary__image {
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.itinerary__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-in-out;
}
.itinerary__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 576px) {
  .itinerary {
    padding-left: 60px;
  }
  .itinerary::before {
    left: 23px;
  }
  .itinerary__day {
    left: -60px;
    width: 46px;
    height: 46px;
  }
  .itinerary__day-label {
    font-size: 7px;
  }
  .itinerary__day-num {
    font-size: 0.875rem;
  }
  .itinerary__content {
    padding: 1.5rem;
  }
  .itinerary__title {
    font-size: 1.125rem;
  }
  .itinerary__description {
    font-size: 0.875rem;
  }
  .itinerary__image img {
    height: 140px;
  }
}
.cruise-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .cruise-hero {
    min-height: 500px;
  }
}
.cruise-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.cruise-hero .container {
  position: relative;
  z-index: 2;
}
.cruise-hero__breadcrumbs {
  margin-bottom: 1.5rem;
}
.cruise-hero__breadcrumbs .breadcrumbs__item,
.cruise-hero__breadcrumbs .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.9);
}
.cruise-hero__breadcrumbs .breadcrumbs__item--active {
  color: #ffffff;
}
.cruise-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .cruise-hero__title {
    font-size: 3rem;
  }
}
.cruise-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 16px;
}
@media (max-width: 576px) {
  .cruise-hero__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.cruise-hero__meta-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
}

.cruise-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #dee2e6;
}
.cruise-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cruise-nav__list::-webkit-scrollbar {
  height: 3px;
}
.cruise-nav__list::-webkit-scrollbar-track {
  background: #f8f9fa;
}
.cruise-nav__list::-webkit-scrollbar-thumb {
  background: #0066cc;
  border-radius: 3px;
}
.cruise-nav__item {
  flex: 1;
  min-width: 120px;
}
.cruise-nav__link {
  display: block;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 150ms ease-in-out;
  white-space: nowrap;
}
.cruise-nav__link:hover {
  color: #0066cc;
  background-color: rgba(0, 102, 204, 0.05);
}
.cruise-nav__link.active {
  color: #0066cc;
  border-bottom-color: #0066cc;
}

.content-section {
  padding: 4rem 0;
  scroll-margin-top: 80px;
}
.content-section:not(:last-child) {
  border-bottom: 1px solid #f1f3f5;
}
.content-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}
.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.content-section p.lead {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ship-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.ship-stat {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}
.ship-stat strong {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.ship-stat span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0066cc;
}

.pricing-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
@media (min-width: 576px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-table {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-option {
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 300ms ease-in-out;
}
.pricing-option:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.pricing-option--featured {
  border-color: #0066cc;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}
.pricing-option--featured::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0066cc;
  color: #ffffff;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-option h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 1rem 0;
}
.pricing-option__price {
  font-size: 16px;
  color: #666666;
  margin-bottom: 1.5rem;
}
.pricing-option__price strong {
  display: block;
  font-size: 1.875rem;
  color: #0066cc;
  margin-top: 0.25rem;
}
.pricing-option__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-option__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f5;
  font-size: 0.875rem;
}
.pricing-option__features li:last-child {
  border-bottom: none;
}
.pricing-option__features li::before {
  content: "✓";
  color: #28a745;
  font-weight: 700;
  margin-right: 0.5rem;
}

.pricing-note {
  font-size: 0.875rem;
  color: #999999;
  font-style: italic;
  margin-top: 1.5rem;
}

.content-section .gallery {
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .cruise-hero {
    min-height: 350px;
    padding: 4rem 0;
  }
  .cruise-hero__title {
    font-size: 1.875rem;
  }
  .cruise-hero__meta {
    font-size: 0.875rem;
  }
  .cruise-hero__meta-item {
    padding: 0.25rem 0.5rem;
  }
  .cruise-nav__link {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }
  .content-section {
    padding: 3rem 0;
  }
  .content-section h2 {
    font-size: 1.5rem;
  }
  .content-section h3 {
    font-size: 1.125rem;
  }
  .ship-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.booking-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.booking-card__header {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}
.booking-card__label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
.booking-card__price {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.booking-card__per {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
}
.booking-card__body {
  padding: 2rem;
}
.booking-card__info {
  margin-bottom: 2rem;
}
.booking-card__row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f3f5;
}
.booking-card__row:last-child {
  border-bottom: none;
}
.booking-card__row span {
  color: #666666;
}
.booking-card__row strong {
  color: #333333;
}
.booking-card__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #666666;
}
.booking-card__note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #333333;
}
.highlights-list li svg {
  flex-shrink: 0;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f3f5;
  font-size: 1rem;
  color: #333333;
}
.included-list li:last-child {
  border-bottom: none;
}
.included-list li svg {
  flex-shrink: 0;
}

.itinerary__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f1f3f5;
}
.itinerary__item:last-child {
  border-bottom: none;
}
@media (max-width: 576px) {
  .itinerary__item {
    flex-direction: column;
    gap: 1rem;
  }
}
.itinerary__day {
  flex-shrink: 0;
  width: 80px;
  padding: 0.5rem 1rem;
  background-color: #0066cc;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  height: fit-content;
}
.itinerary__content {
  flex: 1;
}
.itinerary__content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.5rem 0;
}
.itinerary__content p {
  color: #666666;
  line-height: 1.75;
  margin: 0;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 576px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-info__item {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
.contact-info__item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}
.contact-info__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0066cc;
}
.contact-info__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}
.contact-info__value {
  color: #666666;
  line-height: 1.75;
}
.contact-info__value a {
  color: #0066cc;
  text-decoration: none;
}
.contact-info__value a:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-layout__form {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.contact-layout__form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
}
.contact-layout__map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-height: 400px;
}
.contact-layout__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.faq {
  margin-top: 6rem;
}
.faq__item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 150ms ease-in-out;
}
.faq__question:hover {
  background-color: #f8f9fa;
}
.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066cc;
  transition: transform 150ms ease-in-out;
}
.faq__question.active::after {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}
.faq__answer.active {
  max-height: 500px;
}
.faq__answer-content {
  padding: 0 2rem 1.5rem;
  color: #666666;
  line-height: 1.75;
}

.destination-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .destination-hero {
    min-height: 75vh;
  }
}
.destination-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.destination-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}
.destination-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .destination-hero__title {
    font-size: 3rem;
  }
}
.destination-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .destination-hero__subtitle {
    font-size: 1.25rem;
  }
}

.destination-intro {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-intro {
    padding: 6rem 0;
  }
}
.destination-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.destination-intro__text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 1.5rem;
}
.destination-intro__text--lead {
  font-size: 1.25rem;
  color: #333333;
  font-weight: 500;
}
@media (min-width: 768px) {
  .destination-intro__text--lead {
    font-size: 1.5rem;
  }
}
.destination-intro__text:last-child {
  margin-bottom: 0;
}

.destination-routes {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-routes {
    padding: 6rem 0;
  }
}

.route-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .route-tabs {
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
.route-tabs__btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666666;
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
@media (min-width: 768px) {
  .route-tabs__btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
.route-tabs__btn:hover {
  color: #0066cc;
  border-color: #0066cc;
}
.route-tabs__btn--active {
  background-color: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
}
.route-tabs__btn--active:hover {
  background-color: #004c99;
  border-color: #004c99;
  color: #ffffff;
}

.route-content {
  animation: fadeIn 300ms ease-in-out;
}
.route-content--hidden {
  display: none;
}

.route-slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.route-slider__slide {
  position: relative;
}
.route-slider__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .route-slider__slide img {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .route-slider__slide img {
    height: 600px;
  }
}
.route-slider__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #ffffff;
}
@media (min-width: 768px) {
  .route-slider__caption {
    padding: 3rem;
  }
}
.route-slider__caption-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .route-slider__caption-title {
    font-size: 1.5rem;
  }
}
.route-slider__caption-text {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 700px;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .route-slider__caption-text {
    font-size: 1rem;
  }
}

.destination-reviews {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-reviews {
    padding: 6rem 0;
  }
}

.reviews-slider {
  max-width: 1100px;
  margin: 0 auto;
}

.review-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .review-slide {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem;
  }
}
.review-slide__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  order: -1;
}
@media (min-width: 1024px) {
  .review-slide__image {
    order: 1;
  }
}
.review-slide__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .review-slide__image img {
    height: 400px;
  }
}
.review-slide__content {
  order: 1;
}
@media (min-width: 1024px) {
  .review-slide__content {
    order: -1;
  }
}
.review-slide__quote {
  position: relative;
  margin-bottom: 2rem;
}
.review-slide__quote-icon {
  color: rgba(0, 102, 204, 0.15);
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
}
.review-slide__text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #333333;
  font-style: italic;
  margin: 0;
}
@media (min-width: 768px) {
  .review-slide__text {
    font-size: 1.25rem;
  }
}
.review-slide__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f1f3f5;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .review-slide__author {
    flex-wrap: nowrap;
  }
}
.review-slide__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-slide__author-info {
  flex: 1;
  min-width: 150px;
}
.review-slide__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .review-slide__name {
    font-size: 1.125rem;
  }
}
.review-slide__location {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.25rem;
}
.review-slide__cruise {
  font-size: 0.875rem;
  color: #666666;
}
.review-slide__rating {
  flex-shrink: 0;
}
.review-slide__stars {
  font-size: 1.25rem;
  color: #ffd700;
  letter-spacing: 2px;
}

.destination-highlights {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
@media (min-width: 1024px) {
  .destination-highlights {
    padding: 6rem 0;
  }
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.highlight-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
.highlight-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}
.highlight-card__image {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.highlight-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.highlight-card:hover .highlight-card__image img {
  transform: scale(1.08);
}
.highlight-card__content {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .highlight-card__content {
    padding: 2rem;
  }
}
.highlight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .highlight-card__title {
    font-size: 1.25rem;
  }
}
.highlight-card__text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #666666;
}
@media (min-width: 768px) {
  .highlight-card__text {
    font-size: 16px;
  }
}

.destination-ships {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-ships {
    padding: 6rem 0;
  }
}

.ship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .ship-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.ship-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
}
.ship-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}
.ship-card__image {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.ship-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ship-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #28a745;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ship-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ship-card__content {
    padding: 2rem;
  }
}
.ship-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .ship-card__name {
    font-size: 1.25rem;
  }
}
.ship-card__specs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .ship-card__specs {
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}
.ship-card__spec {
  flex: 1;
  text-align: center;
}
.ship-card__spec-label {
  display: block;
  font-size: 0.75rem;
  color: #999999;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.ship-card__spec-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0066cc;
}
@media (min-width: 768px) {
  .ship-card__spec-value {
    font-size: 1.125rem;
  }
}
.ship-card__description {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 1rem;
  flex: 1;
}
.ship-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
.ship-card__features li {
  font-size: 0.875rem;
  color: #666666;
  padding: 0.25rem 0;
}
.ship-card__footer {
  padding: 0 1.5rem 1.5rem;
}
@media (min-width: 768px) {
  .ship-card__footer {
    padding: 0 2rem 2rem;
  }
}

.destination-usps {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-usps {
    padding: 6rem 0;
  }
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.usp-card {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .usp-card {
    padding: 3rem;
  }
}
.usp-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.usp-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
@media (min-width: 768px) {
  .usp-card__icon {
    width: 80px;
    height: 80px;
  }
}
.usp-card__icon svg {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .usp-card__icon svg {
    width: 40px;
    height: 40px;
  }
}
.usp-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .usp-card__title {
    font-size: 1.25rem;
  }
}
.usp-card__text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #666666;
}
@media (min-width: 768px) {
  .usp-card__text {
    font-size: 16px;
  }
}

.destination-cta {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-cta {
    padding: 6rem 0;
  }
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .lead-form-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.lead-form-content {
  color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .lead-form-content {
    text-align: left;
  }
}
.lead-form-content__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .lead-form-content__title {
    font-size: 1.875rem;
  }
}
.lead-form-content__text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .lead-form-content__text {
    font-size: 1.125rem;
  }
}
.lead-form-content__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.lead-form-content__benefits li {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .lead-form-content__benefits li {
    font-size: 1rem;
  }
}

.lead-form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .lead-form-container {
    padding: 3rem;
  }
}

.lead-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.lead-form .form__group {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .lead-form .form__group {
    margin-bottom: 1.5rem;
  }
}
.lead-form .btn {
  margin-top: 1rem;
}

.section-header {
  text-align: left;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
.section-header--center {
  text-align: center;
}
.section-header__subtitle {
  font-size: 0.875rem;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .section-header__title {
    font-size: 2.25rem;
  }
}
.section-header__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.75;
  max-width: 700px;
}
@media (min-width: 768px) {
  .section-header__description {
    font-size: 1.125rem;
  }
}
.section-header--center .section-header__description {
  margin-left: auto;
  margin-right: auto;
}

.destination-cruises {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .destination-cruises {
    padding: 6rem 0;
  }
}

.destination-slider {
  position: relative;
}
.destination-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 10;
}
@media (min-width: 768px) {
  .destination-slider__nav {
    width: 52px;
    height: 52px;
  }
}
.destination-slider__nav:hover {
  background-color: #0066cc;
  color: #ffffff;
}
.destination-slider__nav--prev {
  left: 1rem;
}
@media (min-width: 1024px) {
  .destination-slider__nav--prev {
    left: -2rem;
  }
}
.destination-slider__nav--next {
  right: 1rem;
}
@media (min-width: 1024px) {
  .destination-slider__nav--next {
    right: -2rem;
  }
}
.destination-slider__nav svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .destination-slider__nav svg {
    width: 24px;
    height: 24px;
  }
}
.destination-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.destination-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dee2e6;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.destination-slider__dot--active, .destination-slider__dot:hover {
  background-color: #0066cc;
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.ship-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ship-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.ship-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}
.ship-hero__company-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
.ship-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .ship-hero__title {
    font-size: 1.875rem;
  }
}
.ship-hero__tagline {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ship-hero__tagline {
    font-size: 1.125rem;
  }
}

/* Mobile Ship Hero Spacing Fix */
@media (max-width: 768px) {
  .ship-hero {
    padding-top: 128px; /* Account for header height */
  }
}

.ship-specs-section {
  background-color: #0066cc;
  padding: 3rem 0;
}

.ship-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .ship-specs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .ship-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.ship-spec {
  text-align: center;
  color: #ffffff;
}
.ship-spec__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.ship-spec__value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .ship-spec__value {
    font-size: 1.25rem;
  }
}
.ship-spec__label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ship-description {
  padding: 6rem 0;
}
.ship-description__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ship-description__content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ship-description__content h2 {
    font-size: 1.5rem;
  }
}
.ship-description__content .lead {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .ship-description__content .lead {
    font-size: 1.125rem;
  }
}
.ship-description__content p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ship-gallery-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.gallery-filter {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.gallery-filter:hover {
  border-color: #0066cc;
  color: #0066cc;
}
.gallery-filter--active {
  background: #0066cc;
  border-color: #0066cc;
  color: #ffffff;
}

.ship-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .ship-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ship-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ship-gallery {
    grid-template-columns: 1fr;
  }
}
.ship-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}
.ship-gallery__item--hidden {
  display: none;
}
.ship-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.ship-gallery__item:hover img {
  transform: scale(1.05);
}
.ship-gallery__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 150ms ease-in-out;
}
.ship-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.ship-cabins {
  padding: 6rem 0;
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .cabin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cabin-grid {
    grid-template-columns: 1fr;
  }
}

.cabin-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.cabin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cabin-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.cabin-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabin-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff6b35;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.cabin-card__content {
  padding: 1.5rem;
  flex: 1;
}
.cabin-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.cabin-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666666;
}
.cabin-card__specs span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cabin-card__description {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cabin-card__amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cabin-card__amenities li {
  font-size: 0.75rem;
  color: #666666;
  background: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.cabin-card__footer {
  padding: 1.5rem;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f3f5;
}
.cabin-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0066cc;
}
.cabin-card__price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999999;
}

.ship-dining {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .dining-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dining-grid {
    grid-template-columns: 1fr;
  }
}

.dining-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.dining-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.dining-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.dining-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dining-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #28a745;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.dining-card__content {
  padding: 1.5rem;
}
.dining-card__type {
  display: inline-block;
  font-size: 0.75rem;
  color: #0066cc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.dining-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.dining-card__description {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.dining-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #999999;
}
.dining-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ship-entertainment {
  padding: 6rem 0;
}

.entertainment-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .entertainment-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .entertainment-categories {
    grid-template-columns: 1fr;
  }
}

.entertainment-category {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.entertainment-category__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #0066cc;
}
.entertainment-category__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entertainment-category__list li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.entertainment-category__list li::before {
  content: "✓";
  color: #28a745;
  font-weight: 700;
}

.ship-decks {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.deck-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.deck-tabs__btn {
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #666666;
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.deck-tabs__btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}
.deck-tabs__btn--active {
  background: #0066cc;
  border-color: #0066cc;
  color: #ffffff;
}

.deck-plan {
  display: none;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.deck-plan--active {
  display: block;
}
.deck-plan img {
  max-width: 100%;
  height: auto;
}
.deck-plan__legend {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.deck-plan__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666666;
}
.deck-plan__legend-item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 0.25rem;
}
.deck-plan__legend-item--suite::before {
  background: #4a90d9;
}
.deck-plan__legend-item--balcony::before {
  background: #5cb85c;
}
.deck-plan__legend-item--oceanview::before {
  background: #f0ad4e;
}
.deck-plan__legend-item--interior::before {
  background: #d9534f;
}
.deck-plan__legend-item--public::before {
  background: #777;
}

.ship-destinations {
  padding: 6rem 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-link {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
}
.destination-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.destination-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.destination-link h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.destination-link:hover img {
  transform: scale(1.1);
}

.ship-cruises {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .cruise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cruise-grid {
    grid-template-columns: 1fr;
  }
}

.cruise-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.cruise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cruise-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cruise-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cruise-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff6b35;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.cruise-card__content {
  padding: 1.5rem;
}
.cruise-card__destination {
  display: inline-block;
  font-size: 0.75rem;
  color: #0066cc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.cruise-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.cruise-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666666;
}
.cruise-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cruise-card__dates {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 1rem;
}
.cruise-card__dates strong {
  color: #666666;
}
.cruise-card__footer {
  padding: 1.5rem;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f3f5;
}
.cruise-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0066cc;
}
.cruise-card__price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999999;
}

.ship-reviews {
  padding: 6rem 0;
}
.ship-reviews .reviews-slider {
  max-width: 800px;
  margin: 0 auto;
}

.ship-faq {
  background-color: #f8f9fa;
  padding: 6rem 0;
}
.ship-faq .faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.ship-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
}
.ship-cta .section-header {
  color: #ffffff;
}
.ship-cta .section-header h2 {
  color: #ffffff;
}
.ship-cta .section-header p {
  color: rgba(255, 255, 255, 0.9);
}
.ship-cta .lead-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 3rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.ship-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ship-section-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ship-section-header__title {
    font-size: 1.5rem;
  }
}
.ship-section-header__subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.breadcrumbs__item:hover {
  color: #ffffff;
}
.breadcrumbs__item--active {
  color: #ffffff;
  font-weight: 600;
}
.breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs--dark .breadcrumbs__item {
  color: #999999;
}
.breadcrumbs--dark .breadcrumbs__item:hover {
  color: #0066cc;
}
.breadcrumbs--dark .breadcrumbs__item--active {
  color: #333333;
}
.breadcrumbs--dark .breadcrumbs__separator {
  color: #999999;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px;
}
.badge--primary {
  background-color: #0066cc;
  color: #ffffff;
}
.badge--secondary {
  background-color: #ff6b35;
  color: #ffffff;
}
.badge--success {
  background-color: #28a745;
  color: #ffffff;
}
.badge--warning {
  background-color: #ffc107;
  color: #333333;
}
.badge--error {
  background-color: #dc3545;
  color: #ffffff;
}
.badge--light {
  background-color: #f8f9fa;
  color: #333333;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.alert__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.alert__content {
  flex: 1;
}
.alert__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.alert__message {
  font-size: 0.875rem;
  line-height: 1.75;
}
.alert--success {
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 4px solid #28a745;
  color: rgb(20.2898550725, 84.7101449275, 35);
}
.alert--warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  color: rgb(109, 81.75, 0);
}
.alert--error {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.alert--info {
  background-color: rgba(23, 162, 184, 0.1);
  border-left: 4px solid #17a2b8;
  color: rgb(11.6666666667, 82.1739130435, 93.3333333333);
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f1f3f5;
  border-top-color: #0066cc;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.spinner--small {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.spinner--large {
  width: 60px;
  height: 60px;
  border-width: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}
.overlay.active {
  display: block;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 150ms ease-in-out;
  z-index: 1020;
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  background-color: #004c99;
  transform: translateY(-3px);
}
.back-to-top::before {
  content: "↑";
  font-size: 1.5rem;
  font-weight: 700;
}
