/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --navy: #0c4a6e;
  --navy-dark: #082f49;
  --navy-mid: #164e63;
  --cyan: #0ea5e9;
  --cyan-light: #38bdf8;
  --cyan-dark: #0891b2;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #64748b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(12, 74, 110, 0.1);
  --shadow-md: 0 8px 24px rgba(12, 74, 110, 0.15);
  --shadow-lg: 0 16px 48px rgba(12, 74, 110, 0.2);
  --shadow-xl: 0 32px 80px rgba(12, 74, 110, 0.25);

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

html { scroll-behavior: smooth; }

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

h2, h3 {
  font-family: 'Syne', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PHOTO PLACEHOLDER ===== */
.photo-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--cyan-dark) 100%);
  z-index: 0;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
  z-index: 1;
}

/* When actual photo is set — overlay becomes semi-transparent */
.photo-placeholder.has-photo::before {
  background: linear-gradient(to bottom, rgba(8,30,58,0.18) 0%, rgba(8,30,58,0.62) 100%);
}
.photo-placeholder.has-photo::after { display: none; }

.dunaj-card-photo.has-photo::before {
  background: linear-gradient(to bottom, rgba(8,30,58,0.15) 0%, rgba(8,30,58,0.65) 100%);
}
.dunaj-card-photo.has-photo::after { display: none; }
.dunaj-card-photo.has-photo i { display: none; }

.plavba-photo.has-photo::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.60) 100%) !important;
}

.prenajom-photo.has-photo {
  background-size: cover;
  background-position: center;
}
.prenajom-photo.has-photo::before {
  background: linear-gradient(to bottom, rgba(8,30,58,0.10) 0%, rgba(8,30,58,0.60) 100%);
}
.prenajom-photo.has-photo::after { display: none; }
.prenajom-photo.has-photo i { display: none; }

.photo-placeholder .placeholder-icon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,0.4);
  gap: 12px;
  padding: 24px;
}

.photo-placeholder .placeholder-icon i { font-size: 3rem; }

.photo-placeholder .placeholder-icon span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.5);
}

/* V hero sekcii na modrom nebi — biely button s navy textom */
.hero .btn-primary {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero .btn-primary:hover {
  background: #f0f9ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

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

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

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-booking {
  background: var(--cyan-light);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.35);
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
  background: #7dd3fc;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 74, 110, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 47, 73, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo svg {
  display: block;
  transition: opacity 0.2s ease;
}

.logo:hover svg { opacity: 0.85; }

/* Logo variants toggle */
.logo-variant { display: none !important; }
.logo-a { display: block !important; }
body.logo-brand .logo-a { display: none !important; }
body.logo-brand .logo-b {
  display: block !important;
  filter: invert(1) brightness(2);
  margin-left: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.78);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg,
    #0369a1 0%,
    #0ea5e9 28%,
    #38bdf8 55%,
    #7dd3fc 78%,
    #bae6fd 100%
  );
}

/* Sun */
.hero-sun {
  position: absolute;
  top: 6%;
  right: 10%;
  width: 110px;
  height: 110px;
  z-index: 1;
  animation: sunPulse 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 22px rgba(253, 224, 71, 0.55));
}

@keyframes sunPulse {
  0%   { filter: drop-shadow(0 0 18px rgba(253,224,71,0.45)); }
  100% { filter: drop-shadow(0 0 42px rgba(253,224,71,0.75)); }
}

.sun-rays {
  animation: raysRotate 28s linear infinite;
  transform-origin: 60px 60px;
}

@keyframes raysRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sailboat */
.hero-boat {
  position: absolute;
  bottom: 18%;
  left: 40%;
  width: 300px;
  z-index: 2;
  animation: boatBob 5s ease-in-out infinite alternate;
  transform-origin: center bottom;
  filter: drop-shadow(2px 6px 12px rgba(0, 0, 0, 0.35));
}

@keyframes boatBob {
  0%   { transform: rotate(-3.5deg) translateY(0px); }
  100% { transform: rotate(3deg)   translateY(-13px); }
}

/* Clouds */
.hero-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 60px;
  z-index: 1;
}
.hero-cloud::before,
.hero-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 50%;
}

.hero-cloud-1 {
  width: 190px; height: 52px;
  top: 13%; left: -210px;
  animation: cloudDrift 45s linear infinite;
  animation-delay: -10s;
}
.hero-cloud-1::before { width: 95px; height: 72px; top: -40px; left: 28px; }
.hero-cloud-1::after  { width: 68px; height: 56px; top: -30px; left: 100px; }

.hero-cloud-2 {
  width: 140px; height: 42px;
  top: 28%; left: -160px;
  animation: cloudDrift 62s linear infinite;
  animation-delay: -28s;
  opacity: 0.78;
}
.hero-cloud-2::before { width: 72px; height: 58px; top: -32px; left: 18px; }
.hero-cloud-2::after  { width: 52px; height: 44px; top: -24px; left: 72px; }

.hero-cloud-3 {
  width: 230px; height: 58px;
  top: 7%; left: -260px;
  animation: cloudDrift 80s linear infinite;
  animation-delay: -52s;
  opacity: 0.65;
}
.hero-cloud-3::before { width: 115px; height: 85px; top: -48px; left: 38px; }
.hero-cloud-3::after  { width: 82px; height: 66px; top: -38px; left: 125px; }

@keyframes cloudDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 320px)); }
}

.hero-waves-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  pointer-events: none;
  z-index: 1;
}

.hero-waves-bg svg { width: 100%; height: 100%; }

.hero-waves-bg path {
  animation: wavePathAnim 7s linear infinite;
}

.hero-waves-bg path:nth-child(1) {
  fill: rgba(3, 78, 120, 0.95);
  animation-play-state: paused;
}

.hero-waves-bg path:nth-child(2) {
  fill: rgba(5, 100, 150, 0.82);
  animation-delay: 0s;
}

.hero-waves-bg path:nth-child(3) {
  fill: rgba(7, 140, 200, 0.60);
  animation-delay: -2.5s;
}

.hero-waves-bg path:nth-child(4) {
  fill: rgba(14, 165, 233, 0.42);
  animation-delay: -4.5s;
}

@keyframes wavePathAnim {
  0%   { d: path("M0,192 C220,100 440,100 660,192 C880,290 1100,290 1320,192 L1320 500 L0 500"); }
  25%  { d: path("M0,100 C220,100 440,292 660,292 C880,292 1100,100 1320,102 L1320 500 L0 500"); }
  50%  { d: path("M0,192 C220,290 440,290 660,192 C880,100 1100,100 1320,192 L1320 500 L0 500"); }
  75%  { d: path("M0,292 C220,292 440,100 660,100 C880,100 1100,292 1320,192 L1320 500 L0 500"); }
  100% { d: path("M0,192 C220,100 440,100 660,192 C880,290 1100,290 1320,192 L1320 500 L0 500"); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg { display: block; width: 100%; }

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fde047, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.93);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

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

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== HERO OFFER PREVIEW ===== */
.hero-offer-preview {
  background: rgba(4, 38, 62, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

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

.offer-preview-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-preview-label i { color: var(--cyan-light); }

.offer-preview-all {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.offer-preview-all:hover { color: white; }

.offer-slides { position: relative; }

.offer-slide {
  display: none;
  gap: 14px;
  flex-direction: column;
}

.offer-slide.active { display: flex; }

.offer-slide-photo {
  height: 160px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.offer-slide-body { display: flex; flex-direction: column; gap: 4px; }

.offer-slide-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-light);
}

.offer-slide-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.offer-slide-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}

.offer-slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.offer-spots {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.offer-spots i { color: var(--cyan-light); font-size: 0.72rem; }

.offer-price {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}

.offer-price strong {
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.offer-slide-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.offer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.offer-dot.active {
  background: white;
  transform: scale(1.2);
}

/* ===== AKTUÁLNA PONUKA SECTION ===== */
.aktualna-ponuka {
  padding: 72px 0;
  background: var(--white);
}

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

.ponuka-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.ponuka-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-light);
}

.ponuka-photo { height: 220px; }

.ponuka-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cyan);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ponuka-badge--new { background: #059669; }

.ponuka-body { padding: 24px; }

.ponuka-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-dark);
  margin-bottom: 6px;
}

.ponuka-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ponuka-body > p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ponuka-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.ponuka-meta li {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ponuka-meta li i { color: var(--cyan); font-size: 0.75rem; width: 14px; flex-shrink: 0; }

.ponuka-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ponuka-price {
  font-size: 0.84rem;
  color: var(--text-light);
}

.ponuka-price strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.ponuka-price span { font-size: 0.76rem; }

/* ===== HERO MINIMAL (Verzia B) ===== */
.hero.hero-minimal {
  background: var(--navy-dark);
}

.hero.hero-minimal .hero-sun,
.hero.hero-minimal .hero-cloud-1,
.hero.hero-minimal .hero-cloud-2,
.hero.hero-minimal .hero-cloud-3 {
  display: none;
}

.hero.hero-minimal .hero-waves-bg path {
  fill: none;
  stroke-width: 1.2;
  animation: wavePathAnim 7s linear infinite;
}

.hero.hero-minimal .hero-waves-bg path:nth-child(1) {
  stroke: rgba(255,255,255,0.12);
  animation-play-state: paused;
}

.hero.hero-minimal .hero-waves-bg path:nth-child(2) {
  stroke: rgba(255,255,255,0.28);
}

.hero.hero-minimal .hero-waves-bg path:nth-child(3) {
  stroke: rgba(255,255,255,0.18);
}

.hero.hero-minimal .hero-waves-bg path:nth-child(4) {
  stroke: rgba(255,255,255,0.10);
}

/* Boat — white outline only */
.hero.hero-minimal .hero-boat path {
  fill: none;
  stroke: rgba(255,255,255,0.75);
  stroke-width: 1.5;
}

.hero.hero-minimal .hero-boat line {
  stroke: rgba(255,255,255,0.75) !important;
}

/* Bottom wave stays white on both versions */

/* ===== VERSION SWITCHER ===== */
.version-switcher {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 9999;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.version-switcher span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.version-switcher a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-light);
  white-space: nowrap;
  transition: var(--transition);
}

.version-switcher a:hover { color: white; }

.vs-sep {
  color: rgba(255,255,255,0.25);
  margin: 0 2px;
}

.vs-logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-light);
  font-family: inherit;
  padding: 0;
  transition: var(--transition);
}

.vs-logo-btn:hover { color: white; }
.vs-logo-btn.active { color: white; text-decoration: underline; }

/* ===== TEAMBUILDING SECTION ===== */
.teambuilding {
  padding: 72px 0;
  background: var(--gray-50);
}

.teambuilding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tb-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.teambuilding-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.teambuilding-text > p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.tb-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.tb-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tb-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--cyan), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.tb-feature-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.tb-feature-text p {
  font-size: 0.84rem;
  color: var(--text-light);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-grid .photo-placeholder:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 420px;
}

.gallery-grid .photo-placeholder:not(:first-child) {
  min-height: 200px;
}

/* Clients logos */
.clients-logos {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}

.clients-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.logo-chip:hover {
  border-color: var(--cyan);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ===== DUNAJ SECTION ===== */
.dunaj {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.dunaj::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.dunaj .section-header h2 { color: var(--white); }
.dunaj .section-header p  { color: rgba(255,255,255,0.82); }
.dunaj .section-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.88);
}

.dunaj-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.dunaj-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.dunaj-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(14, 165, 233, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dunaj-card-photo {
  height: 150px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.dunaj-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--cyan-dark));
}

.dunaj-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14,165,233,0.28), transparent 70%);
}

.dunaj-card-photo i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  color: rgba(255,255,255,0.82);
}

.dunaj-card-body {
  padding: 20px;
}

.dunaj-card-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.dunaj-card-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ===== PLAVBY & SPOLUPLAVBY ===== */
.plavby {
  padding: 72px 0;
  background: var(--white);
}

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

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

.plavba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-light);
}

.plavba-photo {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.plavba-photo::before {
  content: '';
  position: absolute;
  inset: 0;
}

.plavba-photo.type-romantic::before  { background: linear-gradient(135deg, #1e1b4b, #4c1d95, #7c3aed); }
.plavba-photo.type-spolu::before     { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid), var(--cyan-dark)); }
.plavba-photo.type-exotic::before    { background: linear-gradient(135deg, #064e3b, #065f46, #059669); }
.plavba-photo.type-kondicne::before  { background: linear-gradient(135deg, #1e3a8a, var(--navy), var(--cyan-dark)); }

.plavba-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.12), transparent 60%);
}

.plavba-photo i {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(255,255,255,0.75);
}

.plavba-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  background: rgba(245, 158, 11, 0.9);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plavba-body {
  padding: 24px;
}

.plavba-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.plavba-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.plavba-features li {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plavba-features li i { color: var(--cyan); font-size: 0.75rem; }

/* ===== KURZY ===== */
.kurzy {
  padding: 72px 0;
  background: var(--gray-50);
}

.kurzy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

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

.kurz-header {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.kurz-header.practical   { background: linear-gradient(135deg, var(--navy), var(--cyan-dark)); }
.kurz-header.theoretical { background: linear-gradient(135deg, var(--navy-mid), #0e7490); }

.kurz-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.80);
  margin-bottom: 8px;
}

.kurz-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.kurz-header p { font-size: 0.88rem; color: rgba(255,255,255,0.85); }

.kurz-header-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
}

.kurz-body { padding: 32px; }

.kurz-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.kurz-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.kurz-item i { color: var(--cyan); font-size: 0.85rem; width: 16px; flex-shrink: 0; }

.kurz-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.kurz-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.kurz-meta-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== PRENAJOM ===== */
.prenajom {
  padding: 72px 0;
  background: var(--white);
}

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

.prenajom-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.prenajom-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prenajom-photo {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.prenajom-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.prenajom-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(14,165,233,0.25), transparent 70%);
}

.prenajom-photo i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.75);
}

.prenajom-body { padding: 16px; }

.prenajom-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.prenajom-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.prenajom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan-dark);
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.prenajom-btn i { font-size: 0.7rem; transition: var(--transition); }

.prenajom-card:hover .prenajom-btn { color: var(--navy); }
.prenajom-card:hover .prenajom-btn i { transform: translateX(3px); }

/* ===== POSADKA (CREW) ===== */
.posadka {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.posadka::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(14,165,233,0.18), transparent 70%);
  pointer-events: none;
}

.posadka .section-header h2 { color: var(--white); }
.posadka .section-header p  { color: rgba(255,255,255,0.82); }
.posadka .section-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.88); }

.posadka-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.posadka-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.posadka-card.featured {
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(245, 158, 11, 0.07);
}

.posadka-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}

.posadka-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.posadka-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.posadka-card.featured .posadka-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
}

.posadka-card:hover .posadka-icon { transform: scale(1.1) rotate(-5deg); }

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

.posadka-card > p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin-bottom: 24px;
}

.posadka-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.posadka-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
}

.posadka-features li i { color: var(--cyan-light); font-size: 0.75rem; flex-shrink: 0; }
.posadka-card.featured .posadka-features li i { color: var(--gold-light); }

/* ===== REFERENCIE ===== */
.referencie {
  padding: 72px 0;
  background: var(--gray-50);
}

.referencie-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.referencie-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.referencie-text > p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.ref-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ref-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.ref-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.ref-stat-label {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 4px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--white);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 28px;
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-info span  { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ref-logo-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  transition: var(--transition);
  min-height: 60px;
}

.ref-logo-box:hover {
  border-color: var(--cyan-light);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(14,165,233,0.15), transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(56,189,248,0.10), transparent 50%);
  pointer-events: none;
}

.contact .section-header h2 { color: var(--white); }
.contact .section-header p  { color: rgba(255,255,255,0.82); }
.contact .section-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-light);
  font-size: 1rem;
}

.contact-highlight h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-highlight p  { font-size: 0.84rem; color: rgba(255,255,255,0.72); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-light);
  font-size: 0.9rem;
}

.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-item a:hover { color: var(--white); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

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

.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 1rem; }

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

.form-error {
  display: none;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: #991b1b;
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0.92;
  transition: var(--transition);
}
.footer-logo:hover { opacity: 1; }

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--cyan); color: var(--white); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--cyan-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  font-size: 0.82rem;
  color: var(--cyan-light);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.60); }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .dunaj-cards      { grid-template-columns: repeat(3, 1fr); }
  .prenajom-grid    { grid-template-columns: repeat(3, 1fr); }
  .logos-grid       { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .hero-container       { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-offer-preview   { display: none; }
  .hero-content         { max-width: 100%; }
  .teambuilding-layout  { grid-template-columns: 1fr; }
  .gallery-grid         { display: none; }
  .contact-grid         { grid-template-columns: 1fr; }
  .plavby-grid          { grid-template-columns: repeat(2, 1fr); }
  .kurzy-grid           { grid-template-columns: 1fr; }
  .posadka-grid         { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .ponuka-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 47, 73, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .hamburger     { display: flex; }
  .nav-actions .btn-booking { display: none; }

  .dunaj-cards     { grid-template-columns: repeat(2, 1fr); }
  .plavby-grid     { grid-template-columns: 1fr; }
  .prenajom-grid   { grid-template-columns: repeat(2, 1fr); }
  .posadka-grid    { grid-template-columns: 1fr; }
  .logos-grid      { grid-template-columns: repeat(3, 1fr); }
  .ref-stats       { grid-template-columns: 1fr 1fr; }
  .hero-stats      { gap: 20px; }
  .hero-buttons    { flex-direction: column; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }

  /* Hero decorations */
  .hero-boat     { width: 130px; left: calc(50% - 65px); bottom: 20%; }
  .hero-sun      { width: 78px; top: 4%; right: 6%; }
  .hero-waves-bg { height: 38%; }

  /* Section vertical padding */
  .teambuilding, .dunaj, .plavby, .kurzy, .aktualna-ponuka,
  .prenajom, .posadka, .kontakt { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .ponuka-grid { grid-template-columns: 1fr; }
  .version-switcher { bottom: 12px; left: 12px; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .dunaj-cards   { grid-template-columns: 1fr; }
  .prenajom-grid { grid-template-columns: 1fr; }
  .logos-grid    { grid-template-columns: repeat(2, 1fr); }
  .ref-stats     { grid-template-columns: 1fr; }

  /* Hero boat smaller on very small screens */
  .hero-boat { width: 110px; left: calc(50% - 55px); }

  /* Stats wrap to 2 columns so they don't overflow */
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; }
  .hero-stat  { flex: 1 1 calc(50% - 12px); min-width: 80px; }

  /* Hero container less top padding */
  .hero-container { padding-top: 80px; padding-bottom: 80px; }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 0;
  height: 52px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, max-width 0.35s ease;
  overflow: hidden;
  max-width: 52px;
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  max-width: 220px;
}

.float-btn-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.float-btn-whatsapp { background: #25d366; }
.float-btn-whatsapp .float-btn-icon { background: #1ebe5d; }

.float-btn-phone { background: var(--navy); }
.float-btn-phone .float-btn-icon { background: var(--navy-dark); }

.float-btn-label {
  padding-right: 4px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  pointer-events: none;
}

.float-btn:hover .float-btn-label { opacity: 1; }

@media (max-width: 480px) {
  .float-btns { right: 14px; bottom: 16px; gap: 10px; }
  .float-btn  { height: 48px; max-width: 48px; padding: 0; }
  .float-btn:hover { max-width: 48px; }
  .float-btn-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .float-btn-label { display: none; }
}

/* ===== FORM CAPTCHA ===== */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.captcha-question {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  background: #f1f5f9;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 9px 16px;
}

.captcha-input {
  width: 80px;
  padding: 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.captcha-input::placeholder { color: #94a3b8; }
.captcha-input:focus { outline: none; border-color: var(--cyan); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.88);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 0.86rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--cyan-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-accept {
  background: var(--navy);
  color: #fff;
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

