body { font-family: 'Inter', system-ui, sans-serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

.card-hover {
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 36px rgba(6, 78, 59, 0.13),
    0 6px 16px rgba(6, 78, 59, 0.07);
}

.card-media { overflow: hidden; }

.card-media img,
.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-hover:hover .card-media img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
  .card-hover, .card-media img { transition: none; }
  .card-hover:hover { transform: none; box-shadow: none; }
  .card-hover:hover .card-media img { transform: none; }
}

.btn-primary {
  background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #065f46 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

.btn-outline {
  border: 2px solid white;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: white;
  color: #047857;
  transform: translateY(-2px);
}

.btn-ocean {
  background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
  transition: all 0.3s ease;
}
.btn-ocean:hover {
  background: linear-gradient(135deg, #065f46 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.35);
}

.btn-outline-ocean {
  border: 2px solid #047857;
  color: #047857;
  transition: all 0.3s ease;
}
.btn-outline-ocean:hover {
  background: #047857;
  color: white;
  transform: translateY(-2px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #047857;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #047857;
}

.itinerary-dot { background: linear-gradient(135deg, #047857, #0d9488); }
.itinerary-line { background: linear-gradient(180deg, #047857 0%, #0d9488 100%); }

.faq-item { transition: all 0.3s ease; }
.faq-item:hover { background: #ecfdf5; }

.cruise-snapshot {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
  border: 1px solid #a7f3d0;
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.cruise-snapshot__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cruise-snapshot__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cruise-snapshot__grid { grid-template-columns: repeat(3, 1fr); }
}
.cruise-snapshot__item dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #047857;
  margin-bottom: 0.25rem;
}
.cruise-snapshot__item dd {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}
.comparison-table th { background: #ecfdf5; color: #065f46; font-weight: 600; }
.comparison-table tr:hover td { background: #f9fafb; }

.recommendation-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #d1fae5;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recommendation-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.1);
}
.recommendation-card__arrow {
  flex-shrink: 0;
  color: #059669;
  font-size: 1.25rem;
  font-weight: 700;
}

.itinerary-timeline { position: relative; padding-left: 2rem; }
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0.4375rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, #047857, #0d9488);
}
.itinerary-timeline li {
  position: relative;
  padding-bottom: 1.25rem;
  list-style: none;
}
.itinerary-timeline li::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 0.35rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #10b981;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-custom {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.premium-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  overflow: hidden;
}
.premium-icon--emerald { background: linear-gradient(145deg, #064e3b 0%, #047857 52%, #10b981 100%); }
.premium-icon--ocean { background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 52%, #0284c7 100%); }
.premium-icon--teal { background: linear-gradient(145deg, #115e59 0%, #0f766e 52%, #14b8a6 100%); }

nav { backdrop-filter: blur(12px); }

.trust-strip {
  background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
  border-bottom: 1px solid #a7f3d0;
  padding: 0.875rem 0;
}
.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .trust-strip__list { justify-content: space-between; }
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #065f46;
  white-space: nowrap;
}
.trust-strip__check { flex-shrink: 0; color: #10b981; }

.site-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 0;
}
.site-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: left;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.site-hero__wave { width: 100%; height: 2rem; }

@media (min-width: 1024px) {
  .site-hero__inner { padding-top: 1.125rem; padding-bottom: 1.75rem; }
  .site-hero__title { font-size: 3rem !important; line-height: 1.1 !important; }
}

.cta-gradient {
  background: linear-gradient(135deg, #064e3b 0%, #0d9488 50%, #0c4a6e 100%);
}
