/* =============================================
   ROYAL CRUISE LINE — STYLES
   ============================================= */

/* ---- VARIABLES ---- */
:root {
  --primary: #1a6b6a;
  --primary-dark: #145554;
  --primary-light: #2a8d8c;
  --accent: #e8913a;
  --accent-dark: #c97a2e;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #e5e7eb;
  --text-dark: #1f2937;
  --text-mid: #4b5563;
  --text-light: #6b7280;
  --gradient-primary: linear-gradient(135deg, #1a6b6a 0%, #2a8d8c 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  --transition: all 0.25s ease;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 0;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta-mobile {
  display: none;
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 22px;
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE OVERLAY ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
}

.mobile-overlay.open .mobile-menu {
  transform: translateX(0);
}

.mobile-close {
  color: var(--text-light);
  font-size: 22px;
  padding: 0;
  margin-bottom: 20px;
  align-self: flex-end;
  transition: var(--transition);
}

.mobile-close:hover {
  color: var(--text-dark);
}

.mobile-link {
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mobile-cta {
  display: block;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  margin-top: 20px;
  transition: var(--transition);
}

.mobile-cta:hover {
  background: var(--primary-dark);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1920&q=85') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(26, 107, 106, 0.55) 50%,
      rgba(15, 23, 42, 0.7) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: none;
  /* Hidden for cleaner look */
}

.particle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0 auto 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge i {
  font-size: 14px;
  color: var(--accent);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: inline;
}

.hero-title em::after {
  display: none;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  display: none;
}

.btn-primary-hero:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 145, 58, 0.3);
}

.btn-icon {
  font-size: 20px;
}

.btn-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-small {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.btn-big {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.btn-ghost-hero {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 13px 24px;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-ghost-hero:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  z-index: 2;
  animation: bounce 2.5s infinite;
}

.scroll-arrow {
  font-size: 18px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ---- CALL STRIP (FIXED BOTTOM) — HIDDEN ---- */
.call-strip {
  display: none !important;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

.trust-icon {
  font-size: 16px;
  color: var(--primary);
}

/* ---- SECTION COMMONS ---- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 107, 106, 0.08);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-title.left {
  text-align: left;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- DESTINATIONS ---- */
.destinations {
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dest-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.dest-img-1 {
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=600&q=80') center/cover;
}

.dest-img-2 {
  background: url('https://images.unsplash.com/photo-1513581166391-887a96ddeafd?w=600&q=80') center/cover;
}

.dest-img-3 {
  background: url('https://images.unsplash.com/photo-1786157744926-2c3e8b23e15c') center/cover;
}

.dest-img-4 {
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=600&q=80') center/cover;
}

.dest-img-5 {
  background: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=600&q=80') center/cover;
}

.dest-img-6 {
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80') center/cover;
}

.dest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.dest-info {
  padding: 20px;
}

.dest-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.dest-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dest-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.dest-meta span {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dest-meta i {
  color: var(--primary);
  font-size: 13px;
}

.dest-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.price-from {
  font-size: 13px;
  color: var(--text-light);
}

.price-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.price-per {
  font-size: 13px;
  color: var(--text-light);
}

.dest-cta {
  display: block;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.dest-cta:hover {
  background: var(--primary-dark);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  display: none;
}

.how-it-works .section-header .section-tag {
  background: rgba(26, 107, 106, 0.08);
  color: var(--primary);
}

.how-it-works .section-title {
  color: var(--text-dark);
}

.how-it-works .section-desc {
  color: var(--text-light);
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(26, 107, 106, 0.08);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.step-icon-wrap {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--primary);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.step-cta:hover {
  background: var(--primary-dark);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--light-gray);
  position: relative;
  flex-shrink: 0;
  align-self: center;
}

.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 16px;
  background: var(--off-white);
  padding: 0 4px;
}

.how-cta-wrap {
  text-align: center;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.btn-primary-lg:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- DEALS ---- */
.deals {
  background: var(--white);
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  position: relative;
  transition: var(--transition);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.deal-featured {
  border: 2px solid var(--primary);
}

.deal-ribbon {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px 7px;
  letter-spacing: 0.8px;
  border-radius: 0 0 6px 6px;
}

.deal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.deal-emoji {
  font-size: 32px;
  flex-shrink: 0;
  color: var(--primary);
}

.deal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.deal-nights {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.deal-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deal-features li {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deal-features i {
  color: var(--primary);
  font-size: 14px;
}

.deal-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
}

.deal-was {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--text-light);
}

.deal-now {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.deal-now small {
  font-size: 13px;
  font-weight: 500;
}

.deal-save {
  background: rgba(26, 107, 106, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.btn-deal {
  display: block;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  margin-bottom: 8px;
}

.btn-deal:hover {
  background: var(--primary-dark);
}

.btn-deal-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-deal-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.deal-expires {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ---- WHY US ---- */
.why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feat-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--transition);
}

.why-feature:hover .why-feat-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.why-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.why-feature p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-ship-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-ship-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.ship-scene {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
  color: var(--white);
  animation: bobShip 4s ease-in-out infinite;
}

@keyframes bobShip {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.ship-info {
  text-align: center;
}

.ship-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.ship-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.ship-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ship-route {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 16px;
}

.ship-passengers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.passenger-avatars {
  display: flex;
  gap: -4px;
  color: rgba(255, 255, 255, 0.5);
}

.why-badge-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badge-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  font-size: 22px;
  color: var(--primary);
}

.badge-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.badge-card div {
  display: flex;
  flex-direction: column;
}

.badge-card strong {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
}

.badge-card span {
  font-size: 11px;
  color: var(--text-light);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=1920&q=80') center/cover no-repeat;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(26, 107, 106, 0.82) 100%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-banner-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-banner-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-banner-features span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
}

.cta-banner-features span i {
  color: var(--accent);
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.phone-ring-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.phone-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.r1 {
  inset: 0;
}

.r2 {
  inset: -8px;
  opacity: 0.4;
}

.r3 {
  inset: -16px;
  opacity: 0.2;
}

/* Remove pulsing animation */
.phone-ring {
  animation: none;
}

.phone-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1;
  color: var(--white);
}

.phone-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.phone-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--accent);
}

.phone-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.btn-call-big {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-call-big::before {
  display: none;
}

.btn-call-big:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 145, 58, 0.3);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-card-featured {
  border-color: var(--primary);
}

.testi-stars {
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--accent);
}

.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ---- FAQ ---- */
.faq {
  background: var(--off-white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open .faq-q {
  color: var(--primary);
}

.faq-q:hover {
  background: var(--off-white);
}

.faq-arrow {
  font-size: 16px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.faq-cta p {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111827;
}

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

.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

.footer-brand .logo-brand {
  color: var(--white);
}

.footer-brand .logo-icon {
  background: var(--primary);
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.footer-phone:hover {
  background: var(--primary-dark);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- FLOATING CALL BUTTON — HIDDEN ---- */
.float-call-btn {
  display: none !important;
}

/* ---- LIVE NOTIFICATION — HIDDEN ---- */
.live-notif {
  display: none !important;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .phone-display {
    justify-content: center;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-cta-mobile {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 120px 24px 60px;
  }

  .dest-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-connector {
    width: 1px;
    height: 32px;
  }

  .why-badge-cards {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .btn-call-big {
    padding: 14px 20px;
    font-size: 14px;
  }

  .btn-primary-lg {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .btn-deal {
    padding: 10px;
    font-size: 13px;
  }
}

/* =============================================
   ENHANCED GOOGLE ADS & CALL-GENERATION STYLES
   ============================================= */

/* Top Disclaimer Bar */
.top-disclaimer-bar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 11.5px;
  line-height: 1.4;
  padding: 7px 0;
  text-align: center;
  position: relative;
  z-index: 1002;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-disclaimer-bar strong {
  color: #fbbf24;
}

/* Sticky Mobile Call Bar */
.sticky-mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  z-index: 9999;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: none;
}

@media (max-width: 992px) {
  .sticky-mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 74px;
  }
}

.sticky-call-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-call-text {
  display: flex;
  flex-direction: column;
}

.sticky-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sticky-phone-preview {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.sticky-call-btn {
  background: linear-gradient(135deg, #1a6b6a 0%, #0d9488 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26, 107, 106, 0.35);
  animation: pulseGlow 2s infinite;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(26, 107, 106, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(26, 107, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 107, 106, 0); }
}

/* Quick Interactive Cruise Finder Widget */
.cruise-finder-wrap {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.finder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.finder-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.finder-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: center;
}

@media (max-width: 860px) {
  .finder-grid {
    grid-template-columns: 1fr;
  }
}

.finder-field {
  display: flex;
  flex-direction: column;
}

.finder-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.finder-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.finder-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 106, 0.15);
}

.finder-btn {
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  height: 42px;
  margin-top: 18px;
  transition: var(--transition);
  text-decoration: none;
}

@media (max-width: 860px) {
  .finder-btn {
    margin-top: 6px;
  }
}

.finder-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 145, 58, 0.35);
}

/* Royal Caribbean Showcase Section */
.rc-showcase {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  padding: 70px 0;
  border-top: 1px solid #ccfbf1;
  border-bottom: 1px solid var(--light-gray);
}

.rc-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0284c7;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .rc-grid {
    grid-template-columns: 1fr;
  }
}

.rc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.rc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #38bdf8;
}

.rc-card-header {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  color: #fff;
  padding: 20px;
  position: relative;
}

.rc-ship-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.rc-ship-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

.rc-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rc-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.rc-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.rc-perks-list li i {
  color: #0284c7;
  font-size: 15px;
}

.rc-card-cta {
  background: #0284c7;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.rc-card-cta:hover {
  background: #0369a1;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* Legal & Compliance Notice Box */
.compliance-footer-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0 16px 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: justify;
}