/* =============================================
   SAILCRUISE BOOK — PREMIUM LANDING PAGE CSS
   Brand Primary: #00397C
   ============================================= */

/* ---- VARIABLES ---- */
:root {
  --primary: #00397C;
  --primary-dark: #002a5e;
  --primary-light: #0052b3;
  --accent: #F5A623;
  --accent-dark: #d48a0f;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --light-gray: #e8edf5;
  --text-dark: #0a1628;
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --gradient-primary: linear-gradient(135deg, #00397C 0%, #0052b3 50%, #0070c8 100%);
  --gradient-accent: linear-gradient(135deg, #F5A623 0%, #f7c259 100%);
  --gradient-dark: linear-gradient(135deg, #020c1e 0%, #001435 60%, #00397C 100%);
  --shadow-sm: 0 2px 12px rgba(0, 57, 124, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 57, 124, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 57, 124, 0.2);
  --shadow-xl: 0 30px 80px rgba(0, 57, 124, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(0, 57, 124, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.header-cta-mobile {
  display: none;
  background: var(--accent);
  color: var(--primary-dark);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

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

.logo-icon {
  font-size: 28px;
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

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

.logo-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  background: #ffc04a !important;
}

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

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

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

/* ---- MOBILE OVERLAY ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  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: 300px;
  height: 100%;
  background: var(--gradient-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-close {
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  padding: 0;
  margin-bottom: 24px;
  align-self: flex-end;
  transition: var(--transition);
}

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

.mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

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

.mobile-cta {
  display: block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  transition: var(--transition);
}

.mobile-cta:hover {
  background: #ffc04a;
  transform: scale(1.02);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  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(
    135deg,
    rgba(0, 20, 60, 0.88) 0%,
    rgba(0, 57, 124, 0.75) 50%,
    rgba(0, 30, 80, 0.85) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(245, 166, 35, 0.6);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease forwards;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

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

.btn-primary-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary-hero:hover::before {
  transform: translateX(100%);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.55);
  background: #ffc04a;
}

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

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

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

.btn-big {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.btn-ghost-hero {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

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

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

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

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

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

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

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

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ---- CALL STRIP (FIXED BOTTOM) ---- */
.call-strip {
  background: rgba(0, 57, 124, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  display: none; /* Controlled by JS */
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.call-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pulse-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4CAF50;
  position: relative;
}

.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #4CAF50;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-ring::after { animation-delay: 0.5s; }

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.call-strip-icon { 
  font-size: 20px; 
  color: var(--accent);
}

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

.call-strip-text strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.call-strip-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.call-strip-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  line-height: 1.2;
}

.cta-line {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.cta-number {
  font-size: 18px;
  font-weight: 900;
}

.call-strip-btn:hover {
  background: #ffc04a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

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

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

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

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

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

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

.section-tag {
  display: inline-block;
  background: rgba(0, 57, 124, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

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

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

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

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

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

.dest-img {
  height: 220px;
  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,20,60,0.6) 0%, transparent 60%);
}

.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-1531168486695-3da3f1eb1e59?w=600&q=80') 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: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
}

.dest-info {
  padding: 24px;
}

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

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

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

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

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

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

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

.price-val {
  font-size: 26px;
  font-weight: 900;
  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: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.dest-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 57, 124, 0.3);
}

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

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.how-it-works .section-header .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

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

.how-it-works .section-desc {
  color: rgba(255,255,255,0.75);
}

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

.step-card {
  flex: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.step-num {
  font-size: 60px;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.step-icon-wrap {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.step-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.step-cta:hover {
  background: #ffc04a;
  transform: scale(1.05);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
  flex-shrink: 0;
}

.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  background: transparent;
}

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

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 18px 36px;
  border-radius: var(--radius-xl);
  font-weight: 800;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
}

.btn-primary-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(245, 166, 35, 0.5);
  background: #ffc04a;
}

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

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

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

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

.deal-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #f0f5ff 0%, var(--white) 100%);
}

.deal-ribbon {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px 10px;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

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

.deal-emoji { font-size: 40px; flex-shrink: 0; }

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

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

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

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

.deal-features i {
  color: #2e7d32;
  font-size: 16px;
}

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

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

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

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

.deal-save {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

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

.btn-deal:hover {
  background: var(--primary-light);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,57,124,0.3);
}

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

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

.deal-expires {
  font-size: 12px;
  color: #e53935;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

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

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

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

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

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

.why-feat-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feat-icon {
  background: rgba(0,57,124,0.1);
  transform: scale(1.1);
}

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

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

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

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

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

.ship-scene {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  animation: bobShip 3s ease-in-out infinite;
}

@keyframes bobShip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.ship-route {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

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

.passenger-avatars {
  display: flex;
  gap: -4px;
}

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

.badge-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  font-size: 28px;
}

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

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

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

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

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 96px 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(0,20,60,0.93) 0%, rgba(0,57,124,0.88) 100%);
}

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

.cta-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

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

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

.cta-banner-features span {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}

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

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

.phone-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ringPulse 2s ease-out infinite;
}

.r1 { inset: 0; animation-delay: 0s; }
.r2 { inset: -12px; animation-delay: 0.4s; opacity: 0.6; }
.r3 { inset: -24px; animation-delay: 0.8s; opacity: 0.3; }

@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

.phone-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  z-index: 1;
}

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

.phone-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  transition: var(--transition);
}

.phone-number:hover { color: #ffc04a; }

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

.btn-call-big {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 20px;
  padding: 20px 40px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-call-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.btn-call-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(245, 166, 35, 0.55);
}

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

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

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

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

.testi-card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #f0f5ff 0%, #fff 100%);
}

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

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

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

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

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

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

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

.faq-list {
  max-width: 800px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

.faq-item.open .faq-q {
  background: rgba(0,57,124,0.04);
  color: var(--primary);
}

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

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-a {
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text-dark);
}

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

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

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

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.footer-phone:hover {
  background: var(--primary-light);
  transform: scale(1.03);
}

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

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

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

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

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

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

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

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

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

.footer-legal a:hover { color: var(--accent); }

/* ---- FLOATING CALL BUTTON ---- */
.float-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
  transition: var(--transition);
  text-decoration: none;
}

.float-call-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(245, 166, 35, 0.65);
}

.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 3px solid var(--accent);
  animation: floatPulse 2s ease-out infinite;
}

@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

.float-icon { font-size: 20px; }
.float-label { font-size: 15px; }

/* ---- LIVE NOTIFICATION ---- */
.live-notif {
  position: fixed;
  bottom: 80px; /* Above fixed call strip */
  left: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  transform: translateX(-150%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 320px;
  border-left: 4px solid var(--accent);
}

.live-notif.show {
  transform: translateX(0);
}

.notif-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.notif-content p {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

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

.notif-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1;
  opacity: 0.6;
  transition: var(--transition);
}

.notif-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .live-notif {
    bottom: 70px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* =================== 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: 560px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ---- CONTENT PAGES (LEGAL/ABOUT) ---- */
.content-page {
  padding: 140px 0 80px;
  background: var(--white);
}

.content-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--primary);
  margin-bottom: 24px;
}

.content-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrap p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrap ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.content-wrap li {
  color: var(--text-mid);
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
}

.btn-submit:hover { 
  background: var(--primary-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-cta-mobile { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step-connector {
    width: 2px;
    height: 30px;
  }
  .step-connector::after { content: '↓'; }
  .why-badge-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .call-strip-inner { flex-direction: row; justify-content: center; gap: 12px; }
  .call-strip-left { display: none; }
  .call-strip-btn { width: auto; font-size: 14px; padding: 10px 20px; }
  .call-strip { padding: 10px 0; }
  .float-label { display: none; }
  .float-call-btn { padding: 16px; border-radius: 50%; aspect-ratio: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .btn-primary-hero { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-ghost-hero { text-align: center; }
  .footer-links { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .btn-primary-lg { font-size: 15px; padding: 16px 24px; }
  .phone-display { flex-direction: column; text-align: center; }
  .cta-banner-features { flex-direction: column; gap: 8px; }
}
