/* ═══════════════════════════════════════════════════════════════
   PEDAL PASSAGE — Shared Stylesheet
   Elevated Nordic luxury · crystal white, ice blue, deep navy, gold
   ═══════════════════════════════════════════════════════════════ */

:root {
  --white:       #ffffff;
  --snow:        #f7f9fc;
  --ice:         #eef4fb;
  --sky:         #daeaf8;
  --azure:       #a8cce8;
  --ocean:       #4a8fc0;
  --deep:        #1a3a5c;
  --navy:        #0d2137;
  --gold:        #c9a84c;
  --gold-lt:     #e8c97a;
  --gold-pale:   #fdf5e0;
  --slate:       #4a5568;
  --mist:        #8fa3b8;
  --text:        #1a2a3a;
  --text-lt:     #546070;
  --glass:       rgba(255,255,255,0.65);
  --glass-bd:    rgba(255,255,255,0.3);
  --shadow-sm:   0 4px 20px rgba(26,58,92,0.08);
  --shadow-md:   0 12px 40px rgba(26,58,92,0.14);
  --shadow-lg:   0 24px 64px rgba(26,58,92,0.2);
  --blur:        blur(20px);
  --radius:      16px;
  --radius-sm:   8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ice); }
::-webkit-scrollbar-thumb { background: var(--azure); border-radius: 3px; }

/* ════════════════════════════ NAVIGATION ════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

/* On sub-pages we always want the white/frosted nav from the start */
nav.always-solid,
nav.scrolled {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 1px 0 var(--glass-bd), var(--shadow-sm);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

nav.always-solid .nav-logo,
nav.scrolled .nav-logo { color: var(--deep); }
.nav-logo span { color: var(--gold-lt); }
nav.always-solid .nav-logo span,
nav.scrolled .nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}

nav.always-solid .nav-links a,
nav.scrolled .nav-links a { color: var(--slate); }
.nav-links a:hover,
nav.scrolled .nav-links a:hover,
nav.always-solid .nav-links a:hover { color: var(--ocean); }

/* Active page indicator */
.nav-links a.active { color: var(--ocean) !important; font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: all 0.25s ease !important;
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4) !important;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

nav.always-solid .hamburger span,
nav.scrolled .hamburger span { background: var(--deep); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════ PAGE HEADER (sub-pages) ════════════════════════════ */
.page-header {
  padding: 150px 5% 80px;
  background:
    linear-gradient(135deg, rgba(13,33,55,0.88) 0%, rgba(26,58,92,0.6) 55%, rgba(13,33,55,0.75) 100%),
    url('images/hero-cycling.svg') center/cover no-repeat;
  position: relative;
  color: var(--white);
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: var(--snow);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}

.page-header-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold-lt); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1;
}

.page-header h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════ HERO (Homepage) ════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5% 100px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-cycling.svg') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,33,55,0.88) 0%, rgba(26,58,92,0.6) 55%, rgba(13,33,55,0.75) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 100px;
  background: var(--snow);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
  z-index: 5;
}

.hero-content { position: relative; z-index: 10; max-width: 900px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideInUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-lt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideInUp 0.9s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideInUp 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  animation: slideInUp 0.9s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideInUp 0.9s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Secondary dark-on-light button for sub-pages */
.btn-dark {
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  color: var(--white);
  padding: 15px 34px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(26,58,92,0.25);
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,58,92,0.35);
}

.scroll-indicator {
  position: absolute;
  bottom: 130px;
  right: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════ STATS BAR ════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  padding: 0 5%;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat:last-child::after { display: none; }
.stat:hover { transform: translateY(-3px); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mist);
  margin-top: 6px;
  display: block;
}

/* ════════════════════════════ SECTION BASICS ════════════════════════════ */
section { padding: 100px 5%; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ocean);
  background: rgba(74,143,192,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-lt);
  max-width: 580px;
  margin-bottom: 56px;
}

.section-head-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-head-center .section-intro { margin: 0 auto; }

/* ════════════════════════════ ABOUT ════════════════════════════ */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-media { position: relative; perspective: 1000px; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
  background: url('images/about-canal.svg') center/cover no-repeat;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-media:hover .about-img-main {
  transform: rotateY(-5deg) rotateX(2deg) translateZ(10px);
}

.about-float-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  color: var(--white);
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26,58,92,0.35);
  width: 200px;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.about-float-card:hover { transform: rotate(0deg) scale(1.03); }

.about-float-card .big-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.about-float-card p {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-media::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 40px;
  bottom: 40px;
  background: var(--ice);
  border-radius: 24px;
  z-index: -1;
}

.about-text .section-intro { margin-bottom: 28px; }

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), var(--azure));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(74,143,192,0.2);
}

.founder-card {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13,33,55,0.2);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.founder-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 10px;
}

.founder-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ════════════════════════════ GALLERY ════════════════════════════ */
.gallery {
  background: var(--snow);
  padding: 80px 5%;
  overflow: hidden;
}

.gallery-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 16px;
  height: 400px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.95) saturate(1.1);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.2);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(13,33,55,0.8), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ════════════════════════════ ITINERARY ════════════════════════════ */
.itinerary { background: var(--snow); }

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

.day-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.day-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.day-header {
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}

.day-1 .day-header { background: linear-gradient(135deg, var(--navy), var(--deep)); }
.day-2 .day-header { background: linear-gradient(135deg, var(--deep), var(--ocean)); }
.day-3 .day-header { background: linear-gradient(135deg, #1a4a5a, #2a7080); }

.day-num {
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  position: absolute;
  right: 12px;
  top: -10px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.day-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-lt);
  margin-bottom: 8px;
  display: block;
}

.day-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.day-miles {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 14px;
}

.day-body { padding: 24px 28px 28px; }

.day-route {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  margin-bottom: 12px;
}

.day-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.day-meta { display: flex; flex-direction: column; gap: 10px; }

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.meta-icon {
  width: 30px;
  height: 30px;
  background: var(--ice);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.optional-box {
  background: linear-gradient(135deg, var(--ice), var(--sky));
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 20px;
  border: 1px solid var(--azure);
}

.optional-box h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 6px;
}

.optional-box p { font-size: 0.83rem; line-height: 1.6; color: var(--slate); }

.route-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.route-table { width: 100%; border-collapse: collapse; }

.route-table th {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 22px;
  text-align: left;
}

.route-table td {
  padding: 13px 22px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--ice);
  color: var(--text);
}

.route-table tr:nth-child(even) td { background: var(--snow); }
.route-table tr:last-child td {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--gold-lt);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none;
}

/* ════════════════════════════ INCLUDED ════════════════════════════ */
.included {
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep) 60%, #1a4a6a 100%);
  position: relative;
  overflow: hidden;
}

.included::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,143,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.included::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.included .section-title { color: var(--white); }
.included .section-intro { color: var(--azure); }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.included-col {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.included-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(74,143,192,0.2);
}

.included-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.check {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #3a9d6a, #27ae60);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 3px 8px rgba(39,174,96,0.3);
}

.cross {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(74,85,104,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--slate);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ════════════════════════════ PRICING ════════════════════════════ */
.pricing { background: var(--ice); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-side { display: flex; flex-direction: column; gap: 28px; }

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid var(--ice);
}

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

.price-card.featured {
  background: linear-gradient(160deg, var(--navy), var(--deep));
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(13,33,55,0.35);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ocean);
  margin-bottom: 12px;
  display: block;
}

.price-card.featured .price-label { color: var(--azure); }

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.price-desc { font-size: 0.88rem; color: var(--text-lt); margin-bottom: 20px; line-height: 1.55; }
.price-card.featured .price-desc { color: var(--azure); }
.price-note { font-size: 0.78rem; color: var(--mist); font-style: italic; }

.deposit-box {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 28px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.deposit-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}

.deposit-box p { font-size: 0.92rem; line-height: 1.7; color: var(--text-lt); }

.departures-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.departures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.departures-note { font-size: 0.78rem; color: var(--mist); line-height: 1.5; }

.departure-card {
  background: var(--snow);
  border-radius: 12px;
  padding: 18px 12px;
  border-top: 3px solid var(--ocean);
  text-align: center;
  transition: all 0.3s ease;
}

.departure-card:hover { transform: translateY(-3px); background: var(--white); box-shadow: var(--shadow-sm); }

.dep-month {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.dep-year { font-size: 0.72rem; font-weight: 500; color: var(--mist); margin-bottom: 10px; }

.dep-status {
  display: inline-block;
  background: rgba(39,174,96,0.1);
  color: #1a7a40;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(39,174,96,0.2);
}

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

.faq-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.faq-cat h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ice);
}

.faq-item {
  margin-bottom: 4px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ice);
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--azure); }

.faq-q {
  padding: 16px 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--snow);
  transition: background 0.2s;
  user-select: none;
}

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

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-lt);
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--white);
}

.faq-item.open .faq-a { max-height: 400px; padding: 16px 20px; }

/* ════════════════════════════ BOOKING FORM ════════════════════════════ */
.booking {
  background: linear-gradient(160deg, var(--ice) 0%, var(--white) 100%);
  text-align: center;
}

.booking .section-intro { margin: 0 auto 48px; }

.form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ice);
  text-align: left;
}

.form-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  padding: 20px 0 16px;
  border-top: 1px solid var(--ice);
  margin-bottom: 4px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--ice);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--snow);
  outline: none;
  transition: all 0.25s ease;
  appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74,143,192,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.booking-note {
  background: linear-gradient(135deg, var(--ice), var(--sky));
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 8px;
  border-left: 3px solid var(--ocean);
}

.booking-note p { font-size: 0.82rem; line-height: 1.65; color: var(--slate); }
.booking-note a { color: var(--ocean); font-weight: 600; }

.form-submit {
  width: 100%;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  color: var(--white);
  padding: 17px 32px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(26,58,92,0.3);
}

.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26,58,92,0.4); }

.form-disclaimer { text-align: center; font-size: 0.78rem; color: var(--mist); margin-top: 14px; }

#formSuccess { text-align: center; padding: 48px 20px; }

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(26,58,92,0.3);
}

/* ════════════════════════════ CTA BANNER (Between sections) ════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--deep) 60%, #1a4a6a);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--azure);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ════════════════════════════ FOOTER ════════════════════════════ */
footer {
  background: linear-gradient(160deg, var(--navy) 0%, #060f1a 100%);
  color: var(--white);
  padding: 64px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline { font-size: 0.88rem; color: var(--mist); line-height: 1.6; max-width: 260px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--azure);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--mist); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; }

/* ════════════════════════════ ANIMATIONS ════════════════════════════ */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tilt-card { transform-style: preserve-3d; transition: transform 0.1s ease; }

/* ════════════════════════════ RESPONSIVE ════════════════════════════ */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-float-card { right: 16px; bottom: -20px; }
  .days-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .faq-categories { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { height: 220px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 72px 5%; }
  .page-header { padding: 120px 5% 60px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(13,33,55,0.97);
    backdrop-filter: var(--blur);
    padding: 32px 5%;
    gap: 24px;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.2rem; color: var(--white); }
  .nav-links.open a.active { color: var(--gold-lt) !important; }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 12px 28px !important;
  }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .hero-sub { font-size: 0.98rem; }
  .scroll-indicator { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd)::after { display: block; height: 60%; }
  .days-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .departures-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 200px; }
  .form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-float-card { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 5% 80px; }
  .hero h1 { font-size: 2.8rem; }
  .departures-grid { grid-template-columns: 1fr; }
}
